:root {
  --font-family: "Lato", sans-serif;
  --font-size-base: 19.5px;
  --line-height-base: 1.79;

  --max-w: 1300px;
  --space-x: 1.98rem;
  --space-y: 1.5rem;
  --gap: 1.92rem;

  --radius-xl: 1.34rem;
  --radius-lg: 0.86rem;
  --radius-md: 0.6rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 1px 7px rgba(0,0,0,0.17);
  --shadow-md: 0 10px 26px rgba(0,0,0,0.22);
  --shadow-lg: 0 20px 52px rgba(0,0,0,0.26);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 490ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #1E3A5F;
  --brand-contrast: #FFFFFF;
  --accent: #F59E0B;
  --accent-contrast: #1E1E1E;

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

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

  --bg-alt: #E5E7EB;
  --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: #374151;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #2563EB;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1D4ED8;
  --ring: #2563EB;

  --bg-accent: #F59E0B;
  --fg-on-accent: #1E1E1E;
  --bg-accent-hover: #D97706;

  --link: #2563EB;
  --link-hover: #1D4ED8;

  --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%);
  --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #D97706 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);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--link-hover);
}

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

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-phone {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  white-space: nowrap;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-y) * 0.75) var(--space-x);
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
}

.btn-action:hover,
.btn-action:focus-visible {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-2);
    border-radius: var(--radius-md);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-md);
  }

  .nav-list a {
    display: block;
    padding: calc(var(--space-y) * 0.75) 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

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

  .nav-list a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: #f0a500;
    }
    .footer-contact p {
      margin: 0.3rem 0;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      text-align: center;
      font-size: 0.85rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        align-items: center;
      }
    }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

    .wp-lang-switcher-v2__btn {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: calc(10px + var(--local-random) * 2px) calc(16px + var(--local-random) * 2px);
        border-radius: calc(var(--radius-lg) + var(--local-random) * 4px);
        cursor: pointer;
        display: flex;
        gap: 10px;
        align-items: center;
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v2__btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);

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

    .wp-lang-switcher-v2__btn:hover {
        transform: translateY(calc(-2px - var(--local-random) * 1px));
        box-shadow: 0 12px 32px rgba(59, 130, 246, calc(0.3 + var(--local-random) * 0.1));
    }

    .wp-lang-switcher-v2__btn:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v2__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        animation: rotate calc(18s + var(--local-random) * 4s) linear infinite;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    .wp-lang-switcher-v2__label {
        font-weight: 600;
        font-size: 14px;
        letter-spacing: calc(0.3px + var(--local-random) * 0.2px);
    }

    .wp-lang-switcher-v2__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 12px);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        min-width: calc(190px + var(--local-random) * 10px);

        transform: translateY(10px);
        transition: all var(--anim-duration) var(--anim-ease);
    }

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

    .wp-lang-switcher-v2__panel button,
    .wp-lang-switcher-v2__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 2px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;

        font-size: 15px;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        text-decoration: none;
    }

    .wp-lang-switcher-v2__panel button::before,
    .wp-lang-switcher-v2__panel a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: calc(2px + var(--local-random) * 1px);
        background: var(--bg-primary);
        transform: scaleY(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel button:hover,
    .wp-lang-switcher-v2__panel a:hover {
        background: var(--bg-alt);
        padding-left: calc(18px + var(--local-random) * 4px);
    }

    .wp-lang-switcher-v2__panel button:hover::before,
    .wp-lang-switcher-v2__panel a:hover::before {
        transform: scaleY(1);
    }

    .wp-lang-switcher-v2__flag {
        font-size: 20px;
    }

.intro-cinema-c1 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: radial-gradient(circle at 100% 0, rgba(255, 255, 255, .16), transparent 28%), var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .intro-cinema-c1__frame {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1.25rem;
        align-items: stretch;
    }

    .intro-cinema-c1__copy, .intro-cinema-c1__stamp {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(17, 24, 39, .18);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-cinema-c1__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .75);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .intro-cinema-c1__copy h1 {
        margin: .65rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.9rem);
        line-height: 1;
    }

    .intro-cinema-c1__copy span {
        display: block;
        margin-top: 1rem;
        max-width: 38rem;

    }

    .intro-cinema-c1__links {
        margin-top: 1.2rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

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

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

    .intro-cinema-c1__stamp {
        display: grid;
        align-content: end;
        gap: .7rem;
        text-align: right;
    }

    .intro-cinema-c1__stamp strong {
        color: rgba(255, 255, 255, .78);
    }

    .intro-cinema-c1__stamp div {
        font-size: clamp(2.8rem, 5vw, 4.2rem);
        font-weight: 700;
    }

    .intro-cinema-c1__stamp p {
        margin: 0;
        color: rgba(255, 255, 255, .82);
    }

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

    .intro-cinema-c1 {
        overflow: hidden;
    }

    .intro-cinema-c1__frame {
        background-image: linear-gradient(rgba(17, 24, 39, .84), rgba(17, 24, 39, .28)), url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
    }

.next-ux21 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .next-ux21__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

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

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

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

    .next-ux21__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-ux21__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        text-decoration: none;
        color: var(--neutral-900);
        box-shadow: var(--shadow-sm);
    }

    .next-ux21__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .next-ux21 {
        overflow: hidden;
    }

    .next-ux21__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/1181671/pexels-photo-1181671.jpeg?auto=compress&cs=tinysrgb&w=800');
        color: var(--neutral-900);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--gap);
        box-shadow: var(--shadow-sm)
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.recommendations-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .recommendations-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .recommendations-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .recommendations-u1 .sub{margin:.35rem 0 0;opacity:.9;} .recommendations-u1 article,.recommendations-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .recommendations-u1 p{margin:0} .recommendations-u1 a{text-decoration:none;color:inherit;font-weight:700} .recommendations-u1 .rail{display:flex;gap:.55rem;overflow:auto} .recommendations-u1 .rail article{min-width:240px} @media (max-width:860px){.recommendations-u1 .split,.recommendations-u1 .media,.recommendations-u1 .grid,.recommendations-u1 .cards,.recommendations-u1 .bento,.recommendations-u1 .foot{grid-template-columns:1fr}}

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

    .touch-column .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .touch-column .head {
        margin-bottom: 14px;
    }

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

    .touch-column .head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .touch-column .cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .touch-column .left,
    .touch-column .right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

    .touch-column .list-title {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .touch-column article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .touch-column article:last-child {
        border-bottom: 0;
    }

    .touch-column h3 {
        margin: 0 0 6px;
    }

    .touch-column article p {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

    .touch-column article a {
        color: var(--link);
        text-decoration: none;
    }

    .touch-column .right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .touch-column .right a {
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 860px) {
        .touch-column .cols {
            grid-template-columns: 1fr;
        }
    }

.two-column-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

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

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: start;
}

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--link-hover);
}

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

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-phone {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  white-space: nowrap;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-y) * 0.75) var(--space-x);
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
}

.btn-action:hover,
.btn-action:focus-visible {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-2);
    border-radius: var(--radius-md);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-md);
  }

  .nav-list a {
    display: block;
    padding: calc(var(--space-y) * 0.75) 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

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

  .nav-list a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: #f0a500;
    }
    .footer-contact p {
      margin: 0.3rem 0;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      text-align: center;
      font-size: 0.85rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        align-items: center;
      }
    }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

    .identity-ux22__head {
        margin-bottom: 16px;
    }

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

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

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

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

    .identity-ux22__grid article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .identity-ux22__grid i {
        display: inline-block;
        font-style: normal;
        color: var(--link);
        margin-bottom: 6px;
    }

    .identity-ux22__grid h3 {
        margin: 0;
        color: var(--neutral-900);
    }

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

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

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

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

    .team-fresh-v5 .cards {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: .8rem;
    }

    .team-fresh-v5 article {
        display: grid;
        grid-template-columns:110px 1fr;
        gap: .8rem;
        padding: .8rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

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

    .team-fresh-v5 h3 {
        margin: 0 0 .2rem;
    }

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

    .team-fresh-v5 .bio {
        margin: .3rem 0 0;
        opacity: .88;
    }

    @media (max-width: 840px) {
        .team-fresh-v5 .cards {
            grid-template-columns:1fr;
        }
    }

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.mis-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.mis-lx4 .mis-wrap{max-width:var(--max-w);margin:0 auto;display:grid;gap:.8rem}
.mis-lx4 h2{margin:0;font-size:clamp(1.75rem,3vw,2.4rem)}
.mis-lx4 .mis-head p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.mis-lx4 .mis-line{margin:0;padding:0;list-style:none;display:grid;gap:.6rem;counter-reset:step}
.mis-lx4 .mis-line li{counter-increment:step;display:grid;grid-template-columns:50px 1fr;gap:.8rem;padding:.9rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.mis-lx4 .mis-line li::before{content:counter(step);display:grid;place-items:center;width:2rem;height:2rem;border-radius:50%;background:var(--bg-accent);color:var(--fg-on-accent);font-weight:700}
.mis-lx4 h3{margin:0 0 .25rem}
.mis-lx4 li p{margin:0;color:var(--fg-on-surface-light)}
.mis-lx4 small{display:block;margin-top:.45rem;color:var(--fg-on-surface)}

.gallery--colored-v5 {
        padding: 60px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

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

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

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

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--link-hover);
}

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

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-phone {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  white-space: nowrap;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-y) * 0.75) var(--space-x);
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
}

.btn-action:hover,
.btn-action:focus-visible {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-2);
    border-radius: var(--radius-md);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-md);
  }

  .nav-list a {
    display: block;
    padding: calc(var(--space-y) * 0.75) 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

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

  .nav-list a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: #f0a500;
    }
    .footer-contact p {
      margin: 0.3rem 0;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      text-align: center;
      font-size: 0.85rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        align-items: center;
      }
    }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

    .feedback-ux9__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);
        transform: translateY(-18px);
    }

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

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

    .feedback-ux9__layout {
        display: grid;
        grid-template-columns: minmax(260px, 340px) 1fr;
        gap: clamp(16px, 3vw, 28px);
        align-items: start;
    }

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

        transform: translateY(22px);
        position: sticky;
        top: 16px;
    }

    .feedback-ux9__kpi {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .feedback-ux9__avg {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 22px;
        color: var(--neutral-900);
        box-shadow: var(--shadow-sm);
    }

    .feedback-ux9__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 14px;
        line-height: 1;
        margin-bottom: 6px;
    }

    .feedback-ux9__count {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .feedback-ux9__note {
        color: var(--neutral-900);
        font-size: 14px;
    }

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

    .feedback-ux9__card {
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;

        transform: translateY(22px);
    }

    .feedback-ux9__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .feedback-ux9__who {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .feedback-ux9__avatar {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .feedback-ux9__who h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 900;
        color: var(--neutral-900);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

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

    .feedback-ux9__chip {
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        white-space: nowrap;
    }

    .feedback-ux9__quote {
        margin: 0;
        color: var(--neutral-800);
        font-size: 14px;
        line-height: 1.65;
    }

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

        .feedback-ux9__panel {
            position: relative;
            top: 0;
        }
    }

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

.cap-cobalt-v1{padding:calc(var(--space-y)*3) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)}
.cap-cobalt-v1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.92fr 1.08fr;gap:calc(var(--gap)*1.3)}
.cap-cobalt-v1 .lead h2{margin:.3rem 0;font-size:clamp(1.9rem,4vw,3rem);line-height:1.1}
.cap-cobalt-v1 .sub{max-width:42ch;opacity:.9}
.cap-cobalt-v1 .cta{display:inline-block;margin-top:.7rem;padding:.62rem .95rem;border-radius:var(--radius-md);background:var(--surface-1);color:var(--fg-on-surface);text-decoration:none;font-weight:700}
.cap-cobalt-v1 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--gap)}
.cap-cobalt-v1 article{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)}
.cap-cobalt-v1 .tag{margin:0 0 .35rem;font-size:.78rem;opacity:.85}
.cap-cobalt-v1 h3{margin:0 0 .45rem}
.cap-cobalt-v1 p{margin:0}
.cap-cobalt-v1 .benefit{margin-top:.55rem;font-weight:700}
@media (max-width:920px){.cap-cobalt-v1 .shell{grid-template-columns:1fr}.cap-cobalt-v1 .grid{grid-template-columns:1fr}}

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

    .hiw-ux10__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .hiw-ux10__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

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

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

    .hiw-ux10__rows {
        display: grid;
        gap: .8rem;
    }

    .hiw-ux10__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

    .hiw-ux10__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        color: var(--brand);
        box-shadow: var(--shadow-sm);
    }

    .hiw-ux10__rows h3 {
        margin: 0;
    }

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

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--link-hover);
}

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

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-phone {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  white-space: nowrap;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-y) * 0.75) var(--space-x);
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
}

.btn-action:hover,
.btn-action:focus-visible {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-2);
    border-radius: var(--radius-md);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-md);
  }

  .nav-list a {
    display: block;
    padding: calc(var(--space-y) * 0.75) 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

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

  .nav-list a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: #f0a500;
    }
    .footer-contact p {
      margin: 0.3rem 0;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      text-align: center;
      font-size: 0.85rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        align-items: center;
      }
    }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.con-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.con-lx4 .con-wrap{max-width:var(--max-w);margin:0 auto}
.con-lx4 h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.5rem)}
.con-lx4 .con-sub{margin:.42rem 0 1rem;color:var(--fg-on-surface-light)}
.con-lx4 .con-strips{display:grid;gap:.55rem}
.con-lx4 .con-strips article{display:flex;justify-content:space-between;gap:1rem;align-items:center;padding:.85rem 1rem;border-radius:var(--radius-lg);background:var(--surface-1);border-left:4px solid var(--bg-primary)}
.con-lx4 h3{margin:0;font-size:1rem}
.con-lx4 .con-strips p{margin:0;color:var(--fg-on-surface-light)}
.con-lx4 a{text-decoration:none;color:var(--link)}
.con-lx4 .con-flow{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem;margin-top:.8rem}
.con-lx4 .con-flow a{display:flex;justify-content:space-between;gap:.75rem;padding:.75rem .9rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.con-lx4 .con-flow span{color:var(--fg-on-surface-light)}
@media (max-width:760px){.con-lx4 .con-strips article{display:grid}.con-lx4 .con-flow{grid-template-columns:1fr}}

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.form-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .form-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .form-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .form-u7 .sub{margin:.35rem 0 0;opacity:.9;} .form-u7 .panel,.form-u7 .box{padding:1.1rem;border-radius:var(--radius-xl);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);box-shadow:var(--shadow-md)} .form-u7 form{display:grid;gap:.75rem} .form-u7 .field{display:grid;gap:.28rem} .form-u7 .field span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)} .form-u7 input,.form-u7 textarea{width:100%;padding:.8rem .85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface-light);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)} .form-u7 input:focus,.form-u7 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%, transparent)} .form-u7 textarea{min-height:120px;resize:vertical} .form-u7 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease),background var(--anim-duration) var(--anim-ease)} .form-u7 button:hover{transform:translateY(-1px);background:var(--bg-primary-hover)} .form-u7 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .form-u7 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem} .form-u7 .line{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u7 .bar{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u7 .stack{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u7 .steps{display:flex;gap:.45rem;flex-wrap:wrap} .form-u7 .steps span{padding:.33rem .55rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);font-size:.8rem} .form-u7 .agree{display:flex;align-items:center;gap:.45rem;font-size:.86rem} .form-u7 .media{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)} .form-u7 .media img,.form-u7 .frame img{width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:var(--radius-xl)} .form-u7 .frame{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--gap)} .form-u7 .full{grid-column:1/-1} @media (max-width:860px){.form-u7 .split,.form-u7 .media,.form-u7 .frame{grid-template-columns:1fr} .form-u7 .grid,.form-u7 .bar{grid-template-columns:1fr}}

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

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

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

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

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

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

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

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

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

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

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--link-hover);
}

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

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-phone {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  white-space: nowrap;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-y) * 0.75) var(--space-x);
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
}

.btn-action:hover,
.btn-action:focus-visible {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-2);
    border-radius: var(--radius-md);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-md);
  }

  .nav-list a {
    display: block;
    padding: calc(var(--space-y) * 0.75) 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

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

  .nav-list a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: #f0a500;
    }
    .footer-contact p {
      margin: 0.3rem 0;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      text-align: center;
      font-size: 0.85rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        align-items: center;
      }
    }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.policyitems-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .policyitems-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u1 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u1 article,.policyitems-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u1 p{margin:0} .policyitems-u1 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u1 .table{display:grid;gap:.5rem} .policyitems-u1 .foot{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;margin-top:.65rem} .policyitems-u1 .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){.policyitems-u1 .split,.policyitems-u1 .media,.policyitems-u1 .grid,.policyitems-u1 .cards,.policyitems-u1 .bento,.policyitems-u1 .foot{grid-template-columns:1fr}}

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--link-hover);
}

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

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-phone {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  white-space: nowrap;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-y) * 0.75) var(--space-x);
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
}

.btn-action:hover,
.btn-action:focus-visible {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-2);
    border-radius: var(--radius-md);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-md);
  }

  .nav-list a {
    display: block;
    padding: calc(var(--space-y) * 0.75) 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

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

  .nav-list a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: #f0a500;
    }
    .footer-contact p {
      margin: 0.3rem 0;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      text-align: center;
      font-size: 0.85rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        align-items: center;
      }
    }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.terms-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-alt), var(--surface-1));
        color: var(--fg-on-page);
    }

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

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

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

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

    .terms-layout-a article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        margin-bottom: 12px;
    }

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

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

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--link-hover);
}

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

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-phone {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  white-space: nowrap;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-y) * 0.75) var(--space-x);
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
}

.btn-action:hover,
.btn-action:focus-visible {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-2);
    border-radius: var(--radius-md);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-md);
  }

  .nav-list a {
    display: block;
    padding: calc(var(--space-y) * 0.75) 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

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

  .nav-list a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: #f0a500;
    }
    .footer-contact p {
      margin: 0.3rem 0;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      text-align: center;
      font-size: 0.85rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        align-items: center;
      }
    }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--link-hover);
}

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

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-phone {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  white-space: nowrap;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-y) * 0.75) var(--space-x);
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
}

.btn-action:hover,
.btn-action:focus-visible {
  background-color: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-2);
    border-radius: var(--radius-md);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-md);
  }

  .nav-list a {
    display: block;
    padding: calc(var(--space-y) * 0.75) 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

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

  .nav-list a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: #f0a500;
    }
    .footer-contact p {
      margin: 0.3rem 0;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      text-align: center;
      font-size: 0.85rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        align-items: center;
      }
    }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.nf404-v9 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nf404-v9__card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .26);
        background: rgba(255, 255, 255, .08);
        padding: clamp(28px, 4vw, 46px);
    }

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

    .nf404-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nf404-v9 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        color: var(--accent-contrast);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .45);
    }