:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 18.5px;
  --line-height-base: 1.4;

  --max-w: 1140px;
  --space-x: 1.5rem;
  --space-y: 1.5rem;
  --gap: 1.21rem;

  --radius-xl: 1.17rem;
  --radius-lg: 0.86rem;
  --radius-md: 0.52rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.16);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.21);
  --shadow-lg: 0 26px 44px rgba(0,0,0,0.25);

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

  --brand: #1e3a8a;
  --brand-contrast: #ffffff;
  --accent: #0ea5e9;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #475569;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #ffffff;
  --fg-on-page: #0f172a;

  --bg-alt: #f8fafc;
  --fg-on-alt: #1e293b;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #0f172a;
  --border-on-surface: #e2e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #1e3a8a;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1e40af;
  --ring: #3b82f6;

  --bg-accent: #f0f9ff;
  --fg-on-accent: #0369a1;
  --bg-accent-hover: #38bdf8;

  --link: #1e40af;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  --gradient-accent: linear-gradient(90deg, #0ea5e9 0%, #3b82f6 100%);

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav__list {
  display: flex;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item {
  margin: 0;
}
.nav__link {
  color: var(--fg-on-surface-light);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.nav__button {
  display: inline-block;
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__button:hover {
  background-color: var(--bg-accent-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-light);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav__link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .nav__button {
    width: 100%;
    text-align: center;
  }
  .header__burger.is-active .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  .header__burger.is-active .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__burger.is-active .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-legal-links {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .separator {
        color: #aaa;
    }
    .disclaimer {
        color: #666;
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        max-width: 300px;
    }
    .nav-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    .nav-section a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .nav-section a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-section address {
        font-style: normal;
        margin-bottom: 1rem;
    }
    .contact-line {
        margin: 0.4rem 0;
        line-height: 1.4;
    }
    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #eaeaea;
        color: #555;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.85rem;
    }
    .social-links a:hover {
        background-color: #ddd;
        color: #222;
    }
    .footer-copyright {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        color: #777;
        font-size: 0.85rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .nav-section ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-legal-links {
            justify-content: flex-start;
        }
    }

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

.intro-block-l10 {
        padding: clamp(3.5rem, 8vw, 6.4rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        color: var(--fg-on-page);
    }

    .intro-block-l10__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .intro-block-l10__eyebrow {
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-block-l10__wrap h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4rem);
        line-height: 1.04;
    }

    .intro-block-l10__cols {
        margin-top: 1.15rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .intro-block-l10__cols strong {
        display: block;
        color: var(--fg-on-page);
    }

    .intro-block-l10__cols p {
        margin: .7rem 0 0;
        color: var(--neutral-600);
    }

    .intro-block-l10__actions {
        margin-top: 1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-block-l10__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .intro-block-l10__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 760px) {
        .intro-block-l10__cols {
            grid-template-columns: 1fr;
        }
    }

    .intro-block-l10 {
        overflow: hidden;
    }

    .intro-block-l10__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/669615/pexels-photo-669615.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--space-x)
    }

.next-fan-c5 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .next-fan-c5__wrap {
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    .next-fan-c5__banner p {
        margin: 0;
    }

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

    .next-fan-c5__fan {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-fan-c5__fan a {
        display: block;
        padding: .9rem 1rem;
        min-width: 10rem;
        border-radius: var(--radius-lg);
        background: var(--accent);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--accent-contrast);
        text-decoration: none;
    }

    .next-fan-c5__fan span {
        display: block;
        margin-top: .3rem;
    }

    .next-fan-c5__tail {
        margin-top: 1rem;

    }

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

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

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

    .index-recommendations-light__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations-light__h h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

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

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

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

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
    }

    .index-recommendations-light__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 15%, rgba(248, 225, 231, 0.45), transparent 55%);
        pointer-events: none;
    }

    .index-recommendations-light__card h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .index-recommendations-light__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-light__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations-light__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations-light__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.visual-path-c3 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .visual-path-c3__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-path-c3__head {
        margin-bottom: 1rem;
    }

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

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

    .visual-path-c3__list {
        display: grid;
        gap: .8rem;
    }

    .visual-path-c3__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-path-c3__meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        margin-bottom: .8rem;
    }

    .visual-path-c3__meta span {
        color: rgba(255, 255, 255, .78);
    }

    .visual-path-c3__content {
        display: grid;
        grid-template-columns: 13rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .visual-path-c3__content img {
        display: block;
        width: 100%;
        height: 10rem;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .visual-path-c3__content small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-path-c3__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-path-c3__content p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

    @media (max-width: 680px) {
        .visual-path-c3__content {
            grid-template-columns: 1fr;
        }
    }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav__list {
  display: flex;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item {
  margin: 0;
}
.nav__link {
  color: var(--fg-on-surface-light);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.nav__button {
  display: inline-block;
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__button:hover {
  background-color: var(--bg-accent-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-light);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav__link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .nav__button {
    width: 100%;
    text-align: center;
  }
  .header__burger.is-active .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  .header__burger.is-active .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__burger.is-active .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-legal-links {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .separator {
        color: #aaa;
    }
    .disclaimer {
        color: #666;
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        max-width: 300px;
    }
    .nav-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    .nav-section a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .nav-section a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-section address {
        font-style: normal;
        margin-bottom: 1rem;
    }
    .contact-line {
        margin: 0.4rem 0;
        line-height: 1.4;
    }
    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #eaeaea;
        color: #555;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.85rem;
    }
    .social-links a:hover {
        background-color: #ddd;
        color: #222;
    }
    .footer-copyright {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        color: #777;
        font-size: 0.85rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .nav-section ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-legal-links {
            justify-content: flex-start;
        }
    }

.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-cv5 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .identity-cv5__hero {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        min-height: 220px;
    }

    .identity-cv5__hero img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        display: block;
    }

    .identity-cv5__overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--overlay));
    }

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

    .identity-cv5__overlay span {
        opacity: .92;
    }

    .identity-cv5__grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-cv5__grid p {
        margin: 0 0 10px;
    }

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

    .identity-cv5__grid li {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

    @media (max-width: 800px) {
        .identity-cv5__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

.about-mission {

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

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

    .about-mission .about-mission__row {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .about-mission figure img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .about-mission p {
        color: rgba(255, 255, 255, .9);
    }

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav__list {
  display: flex;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item {
  margin: 0;
}
.nav__link {
  color: var(--fg-on-surface-light);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.nav__button {
  display: inline-block;
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__button:hover {
  background-color: var(--bg-accent-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-light);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav__link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .nav__button {
    width: 100%;
    text-align: center;
  }
  .header__burger.is-active .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  .header__burger.is-active .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__burger.is-active .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-legal-links {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .separator {
        color: #aaa;
    }
    .disclaimer {
        color: #666;
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        max-width: 300px;
    }
    .nav-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    .nav-section a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .nav-section a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-section address {
        font-style: normal;
        margin-bottom: 1rem;
    }
    .contact-line {
        margin: 0.4rem 0;
        line-height: 1.4;
    }
    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #eaeaea;
        color: #555;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.85rem;
    }
    .social-links a:hover {
        background-color: #ddd;
        color: #222;
    }
    .footer-copyright {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        color: #777;
        font-size: 0.85rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .nav-section ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-legal-links {
            justify-content: flex-start;
        }
    }

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

.hiw-ribbon-c1 {
        padding: clamp(3.5rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .hiw-ribbon-c1__head {
        margin-bottom: 1.25rem;
    }

    .hiw-ribbon-c1__head p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .hiw-ribbon-c1__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

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

    .hiw-ribbon-c1__track article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--fg-on-primary);
        color:  var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-md);
        position: relative;
    }

    .hiw-ribbon-c1__track article::after {
        content: '';
        position: absolute;
        inset: auto 1rem 0.7rem 1rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .45), transparent);
    }

    .hiw-ribbon-c1__track span {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hiw-ribbon-c1__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ribbon-c1__track p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(28px);
    }

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

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

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

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

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

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

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

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

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

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

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

    .features-struct-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--gap)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav__list {
  display: flex;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item {
  margin: 0;
}
.nav__link {
  color: var(--fg-on-surface-light);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.nav__button {
  display: inline-block;
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__button:hover {
  background-color: var(--bg-accent-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-light);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav__link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .nav__button {
    width: 100%;
    text-align: center;
  }
  .header__burger.is-active .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  .header__burger.is-active .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__burger.is-active .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-legal-links {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .separator {
        color: #aaa;
    }
    .disclaimer {
        color: #666;
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        max-width: 300px;
    }
    .nav-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    .nav-section a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .nav-section a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-section address {
        font-style: normal;
        margin-bottom: 1rem;
    }
    .contact-line {
        margin: 0.4rem 0;
        line-height: 1.4;
    }
    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #eaeaea;
        color: #555;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.85rem;
    }
    .social-links a:hover {
        background-color: #ddd;
        color: #222;
    }
    .footer-copyright {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        color: #777;
        font-size: 0.85rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .nav-section ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-legal-links {
            justify-content: flex-start;
        }
    }

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

.map-split-l1 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

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

    .map-split-l1__side p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

    .map-split-l1__list {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

    .map-split-l1__list div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-split-l1__list span {
        display: block;
        margin-top: .3rem;
        color: var(--neutral-600);
    }

    .map-split-l1__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .map-split-l1__embed iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    @media (max-width: 840px) {
        .map-split-l1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .touch-bulletin .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .touch-bulletin .header {
        margin-bottom: 14px;
    }

    .touch-bulletin h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

    .touch-bulletin .header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .touch-bulletin ul {
        margin: 24px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .touch-bulletin li {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        align-items: center;
    }

    .touch-bulletin span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .touch-bulletin li a {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 500;
    }

    .touch-bulletin li a:hover {
        color: var(--link-hover);
    }

    .touch-bulletin .cta {
        display: inline-block;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 12px 24px;
        font-weight: 500;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .touch-bulletin .cta:hover {
        background: var(--bg-primary-hover);
    }

    .subscribe-form input::placeholder {
        color: var(--input-placeholder);
    }

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

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

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

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

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

    .form-layout-c .steps {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
    }

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav__list {
  display: flex;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item {
  margin: 0;
}
.nav__link {
  color: var(--fg-on-surface-light);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.nav__button {
  display: inline-block;
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__button:hover {
  background-color: var(--bg-accent-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-light);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav__link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .nav__button {
    width: 100%;
    text-align: center;
  }
  .header__burger.is-active .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  .header__burger.is-active .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__burger.is-active .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-legal-links {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .separator {
        color: #aaa;
    }
    .disclaimer {
        color: #666;
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        max-width: 300px;
    }
    .nav-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    .nav-section a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .nav-section a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-section address {
        font-style: normal;
        margin-bottom: 1rem;
    }
    .contact-line {
        margin: 0.4rem 0;
        line-height: 1.4;
    }
    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #eaeaea;
        color: #555;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.85rem;
    }
    .social-links a:hover {
        background-color: #ddd;
        color: #222;
    }
    .footer-copyright {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        color: #777;
        font-size: 0.85rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .nav-section ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-legal-links {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav__list {
  display: flex;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item {
  margin: 0;
}
.nav__link {
  color: var(--fg-on-surface-light);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.nav__button {
  display: inline-block;
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__button:hover {
  background-color: var(--bg-accent-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-light);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav__link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .nav__button {
    width: 100%;
    text-align: center;
  }
  .header__burger.is-active .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  .header__burger.is-active .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__burger.is-active .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-legal-links {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .separator {
        color: #aaa;
    }
    .disclaimer {
        color: #666;
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        max-width: 300px;
    }
    .nav-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    .nav-section a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .nav-section a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-section address {
        font-style: normal;
        margin-bottom: 1rem;
    }
    .contact-line {
        margin: 0.4rem 0;
        line-height: 1.4;
    }
    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #eaeaea;
        color: #555;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.85rem;
    }
    .social-links a:hover {
        background-color: #ddd;
        color: #222;
    }
    .footer-copyright {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        color: #777;
        font-size: 0.85rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .nav-section ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-legal-links {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav__list {
  display: flex;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item {
  margin: 0;
}
.nav__link {
  color: var(--fg-on-surface-light);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.nav__button {
  display: inline-block;
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__button:hover {
  background-color: var(--bg-accent-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-light);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav__link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .nav__button {
    width: 100%;
    text-align: center;
  }
  .header__burger.is-active .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  .header__burger.is-active .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__burger.is-active .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-legal-links {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .separator {
        color: #aaa;
    }
    .disclaimer {
        color: #666;
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        max-width: 300px;
    }
    .nav-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    .nav-section a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .nav-section a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-section address {
        font-style: normal;
        margin-bottom: 1rem;
    }
    .contact-line {
        margin: 0.4rem 0;
        line-height: 1.4;
    }
    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #eaeaea;
        color: #555;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.85rem;
    }
    .social-links a:hover {
        background-color: #ddd;
        color: #222;
    }
    .footer-copyright {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        color: #777;
        font-size: 0.85rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .nav-section ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-legal-links {
            justify-content: flex-start;
        }
    }

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

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

    .thank-mode-f .shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        border: 1px solid var(--border-on-surface-light);
    }

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  background-color: var(--surface-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav__list {
  display: flex;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item {
  margin: 0;
}
.nav__link {
  color: var(--fg-on-surface-light);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.nav__button {
  display: inline-block;
  padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__button:hover {
  background-color: var(--bg-accent-hover);
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-light);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav__link {
    display: block;
    width: 100%;
    padding: var(--space-y) var(--space-x);
  }
  .nav__button {
    width: 100%;
    text-align: center;
  }
  .header__burger.is-active .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  .header__burger.is-active .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__burger.is-active .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        letter-spacing: -0.5px;
    }
    .footer-legal-links {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
    }
    .footer-legal-links a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .separator {
        color: #aaa;
    }
    .disclaimer {
        color: #666;
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        max-width: 300px;
    }
    .nav-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    .nav-section a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .nav-section a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-section address {
        font-style: normal;
        margin-bottom: 1rem;
    }
    .contact-line {
        margin: 0.4rem 0;
        line-height: 1.4;
    }
    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #eaeaea;
        color: #555;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.85rem;
    }
    .social-links a:hover {
        background-color: #ddd;
        color: #222;
    }
    .footer-copyright {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        color: #777;
        font-size: 0.85rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-section {
            min-width: 100%;
        }
        .nav-section ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-legal-links {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

    .err-slab-f a:hover {
        background: var(--bg-primary-hover);
    }