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

  --max-w: 1160px;
  --space-x: 0.83rem;
  --space-y: 1.49rem;
  --gap: 0.77rem;

  --radius-xl: 0.9rem;
  --radius-lg: 0.62rem;
  --radius-md: 0.39rem;
  --radius-sm: 0.28rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.13);
  --shadow-md: 0 8px 12px rgba(0,0,0,0.16);
  --shadow-lg: 0 18px 38px rgba(0,0,0,0.2);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 250ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

  --brand: #2B6CB0;
  --brand-contrast: #FFFFFF;
  --accent: #D69E2E;
  --accent-contrast: #1A202C;

  --neutral-0: #FFFFFF;
  --neutral-100: #F7FAFC;
  --neutral-300: #CBD5E0;
  --neutral-600: #718096;
  --neutral-800: #2D3748;
  --neutral-900: #1A202C;

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

  --bg-alt: #EDF2F7;
  --fg-on-alt: #2D3748;

  --surface-1: #FFFFFF;
  --surface-2: #F7FAFC;
  --fg-on-surface: #2D3748;
  --border-on-surface: #E2E8F0;

  --surface-light: #FAFAFA;
  --fg-on-surface-light: #4A5568;
  --border-on-surface-light: #E2E8F0;

  --bg-primary: #2B6CB0;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1A4F8B;
  --ring: #2B6CB0;

  --bg-accent: #F6E05E;
  --fg-on-accent: #1A202C;
  --bg-accent-hover: #B7791F;

  --link: #2B6CB0;
  --link-hover: #1A4F8B;

  --gradient-hero: linear-gradient(135deg, #2B6CB0 0%, #D69E2E 100%);
  --gradient-accent: linear-gradient(135deg, #F6E05E 0%, #D69E2E 100%);

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

.site-header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

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

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

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    margin-top: var(--space-y);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    background: var(--btn-ghost-bg-hover);
  }

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

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      margin-top: var(--space-y);
    }

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

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

    .nav-list a {
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
      background: var(--surface-2);
    }

    .nav-list a:hover {
      background: var(--btn-ghost-bg-hover);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e67e22;
  }
  .footer-legal {
    margin: 0.5rem 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #e67e22;
  }
  .footer-disclaimer {
    margin-top: 1rem;
    border-top: 1px solid #7f8c8d;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .hero-arc-v2 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3.4rem);
        line-height: 1.08;
        max-width: 18ch;
    }

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

    .hero-arc-v2 .split {
        display: grid;
        grid-template-columns:1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .hero-arc-v2 .desc {
        margin: 0;
        max-width: 60ch;
    }

    .hero-arc-v2 .actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

    .hero-arc-v2 .actions a {
        display: inline-flex;
        padding: .66rem 1.1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .hero-arc-v2 .actions a:nth-child(even) {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .hero-arc-v2 .media {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: var(--gap);
        background: var(--surface-2);
        box-shadow: var(--shadow-sm);
    }

    .hero-arc-v2 .media img {
        width: 100%;
        display: block;
        border-radius: var(--radius-lg);
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .hero-arc-v2 .rail {
        margin-top: calc(var(--space-y) * 1.4);
        background: var(--surface-2);
        border-top: 1px solid var(--border-on-surface);
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: 1px;
    }

    .hero-arc-v2 .rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

    .hero-arc-v2 em {
        font-style: normal;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .hero-arc-v2 strong {
        font-size: 1.05rem;
    }

    @media (max-width: 900px) {
        .hero-arc-v2 .split {
            grid-template-columns:1fr;
        }

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

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

    .next-ux19 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

    .next-ux19 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .next-ux19 h2, .next-ux19 h3, .next-ux19 p {
        margin: 0
    }

    .next-ux19 a {
        text-decoration: none
    }

    .next-ux19 .center, .next-ux19 .banner, .next-ux19 .stack, .next-ux19 .bar, .next-ux19 .split, .next-ux19 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .next-ux19 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

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

    .next-ux19 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

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

    .next-ux19 .banner {
        display: grid;
        gap: .6rem
    }

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

    .next-ux19 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .next-ux19 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .next-ux19 .duo article {
        display: grid;
        gap: .45rem
    }

    .next-ux19 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .next-ux19 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .next-ux19 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

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

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

        .next-ux19 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .next-ux19 .numbers {
            grid-template-columns:1fr
        }
    }

.recommendations-split-light {
    background: var(--neutral-100);
    color: var(--neutral-900);
    padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
}

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

.recommendations-split-light__h {
    text-align: center;
    margin-bottom: clamp(24px, 6vw, 52px);
    transform: translateY(-18px);
}

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

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

.recommendations-split-light__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(14px, 2.6vw, 22px);
}

.recommendations-split-light__card {
    grid-column: span 6;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--neutral-0);
    border: 1px solid var(--neutral-300);
    display: grid;
    grid-template-rows: 170px 1fr;
    transform: translateY(26px);
}

.recommendations-split-light__card:nth-child(1) {
    grid-column: span 12;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr;
    min-height: 320px;
}

.recommendations-split-light__media {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: rgba(17, 24, 39, 0.06);
}

.recommendations-split-light__card:nth-child(1) .recommendations-split-light__media {
    border-right: 1px solid var(--neutral-300);
}

.recommendations-split-light__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.5), rgba(17, 24, 39, 0));
    pointer-events: none;
}

.recommendations-split-light__body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recommendations-split-light__body h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--neutral-900);
}

.recommendations-split-light__body p {
    margin: 0;
    color: var(--neutral-800);
    font-size: 14px;
    line-height: 1.65;
}

.recommendations-split-light__link {
    margin-top: auto;
    color: var(--link);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.recommendations-split-light__link::after {
    content: '->';
}

.recommendations-split-light__link:hover {
    color: var(--link-hover);
}

@media (max-width: 900px) {
    .recommendations-split-light__grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .recommendations-split-light__card {
        grid-column: span 6;
    }

    .recommendations-split-light__card:nth-child(1) {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 1fr;
        min-height: 0;
    }

    .recommendations-split-light__card:nth-child(1) .recommendations-split-light__media {
        border-right: 0;
        border-bottom: 1px solid var(--neutral-300);
    }
}

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

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--light.why-choose--v2 {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

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

    .why-choose__wrap {
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.6vw, 26px);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
    }

    .why-choose__h {
        margin-bottom: clamp(14px, 2vw, 22px);
    }

    .why-choose__pill {
        display: inline-flex;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
        color: var(--bg-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 70ch;
    }

    .why-choose__cards {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .why-choose__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
        transition: transform 180ms var(--anim-ease),
        box-shadow 180ms var(--anim-ease),
        border-color 180ms var(--anim-ease);
        will-change: transform;
        position: relative;
    }

    .why-choose__cardHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .why-choose__num {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .why-choose__mini {
        color: var(--neutral-600);
        font-size: 0.9rem;
    }

    .why-choose__cardBody {
        padding: 14px 16px;
    }

    .why-choose__cardTitle {
        margin: 0 0 8px;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.2vw, 20px);
    }

    .why-choose__cardText {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 860px) {
        .why-choose__card {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__card {
            transition: none;
            transform: none;
        }
    }

.site-header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

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

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

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    margin-top: var(--space-y);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    background: var(--btn-ghost-bg-hover);
  }

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

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      margin-top: var(--space-y);
    }

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

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

    .nav-list a {
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
      background: var(--surface-2);
    }

    .nav-list a:hover {
      background: var(--btn-ghost-bg-hover);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e67e22;
  }
  .footer-legal {
    margin: 0.5rem 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #e67e22;
  }
  .footer-disclaimer {
    margin-top: 1rem;
    border-top: 1px solid #7f8c8d;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.story-vault-c9 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: radial-gradient(circle at 100% 0, rgba(255, 255, 255, .16), transparent 28%), var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .story-vault-c9__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

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

    .story-vault-c9__intro h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .story-vault-c9__intro span {
        display: block;
        margin-top: .8rem;

    }

    .story-vault-c9__body {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
    }

    .story-vault-c9__text, .story-vault-c9__stats {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .story-vault-c9__text p {
        margin: 0 0 .75rem;

    }

    .story-vault-c9__stats {
        display: grid;
        gap: .7rem;
    }

    .story-vault-c9__stats span {
        display: block;
        margin-top: .25rem;
        color: rgba(255, 255, 255, .82);
    }

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

    @media (max-width: 820px) {
        .story-vault-c9__body {
            grid-template-columns: 1fr;
        }
    }

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

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

    .identity-lv6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-lv6__img img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--neutral-300);
    }

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

    .identity-lv6__body h3 {
        margin: 0 0 10px;
        color: var(--brand);
        font-size: 1rem;
    }

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

    .identity-lv6__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

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

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

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

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

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

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

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

    .testimonials-struct-v3 .stack {
        display: grid;
        gap: .65rem
    }

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

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

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

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

    .testimonials-struct-v3 .wall {
        columns: 3;
        column-gap: var(--gap)
    }

    .testimonials-struct-v3 blockquote {
        break-inside: avoid;
        margin: 0 0 var(--gap) 0;
        display: grid;
        gap: .4rem
    }

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

    .testimonials-struct-v3 .dots {
        display: flex;
        justify-content: center;
        gap: .4rem
    }

    .testimonials-struct-v3 .dots span {
        padding: .25rem .45rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .testimonials-struct-v3 .grid, .testimonials-struct-v3 .rail, .testimonials-struct-v3 .slider {
            grid-template-columns:1fr 1fr
        }

        .testimonials-struct-v3 .wall {
            columns: 2
        }
    }

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

        .testimonials-struct-v3 .wall {
            columns: 1
        }
    }

.timeline--light-v6 {

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

.timeline__inner {
    max-width: 640px;
    margin: 0 auto;
}

.timeline__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

.timeline__list--light {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.timeline__row {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 10px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.timeline__row:first-child {
    border-top: none;
}

.timeline__row-time {
    font-size: 0.8rem;
    color: var(--neutral-600);
}

.timeline__row-label {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

.site-header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

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

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

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    margin-top: var(--space-y);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    background: var(--btn-ghost-bg-hover);
  }

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

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      margin-top: var(--space-y);
    }

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

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

    .nav-list a {
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
      background: var(--surface-2);
    }

    .nav-list a:hover {
      background: var(--btn-ghost-bg-hover);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e67e22;
  }
  .footer-legal {
    margin: 0.5rem 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #e67e22;
  }
  .footer-disclaimer {
    margin-top: 1rem;
    border-top: 1px solid #7f8c8d;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.capabilities-light-alt {

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

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

    .capabilities-light-alt .capabilities-light-alt__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

    }

    .capabilities-light-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

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

    .capabilities-light-alt .capabilities-light-alt__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: clamp(24px, 4vw, 48px);
        position: relative;
    }

    .capabilities-light-alt .capabilities-light-alt__step {
        position: relative;

        transform: translateY(30px);
    }

    .capabilities-light-alt .capabilities-light-alt__number {
        width: 56px;
        height: 56px;
        background: var(--brand);
        color: var(--fg-on-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 900;
        margin: 0 auto 1.5rem;
        box-shadow: var(--shadow-md);
        position: relative;
        z-index: 2;
    }

    .capabilities-light-alt .capabilities-light-alt__number::before {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        background: var(--brand);
        opacity: 0.2;
        animation: ripple 2s ease-out infinite;
    }

    @keyframes ripple {
        0% {
            transform: scale(1);
            opacity: 0.2;
        }
        100% {
            transform: scale(1.5);

        }
    }

    .capabilities-light-alt .capabilities-light-alt__box {
        background: var(--surface-1);
        border: 2px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(24px, 3vw, 32px);
        text-align: center;
        position: relative;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .capabilities-light-alt .capabilities-light-alt__step:hover .capabilities-light-alt__box {
        border-color: var(--brand);
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .capabilities-light-alt .capabilities-light-alt__box h3 {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
        margin: 0 0 1rem;
        color: var(--fg-on-surface);
    }

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

    .capabilities-light-alt .capabilities-light-alt__arrow {
        position: absolute;
        bottom: -32px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        font-size: 32px;
        color: var(--brand);
        opacity: 0.5;
    }

    .capabilities-light-alt .capabilities-light-alt__step:last-child .capabilities-light-alt__arrow {
        display: none;
    }

    @media (min-width: 768px) {
        .capabilities-light-alt .capabilities-light-alt__arrow {
            bottom: auto;
            top: 50%;
            left: auto;
            right: -40px;
            transform: translateY(-50%) rotate(0deg);
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.plans-ux4{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--bg-primary);color:var(--fg-on-primary)}.plans-ux4__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux4__head p{margin:8px 0 12px;color:rgba(255,255,255,.86)}.plans-ux4__stack{display:grid;gap:10px}.plans-ux4__stack article{border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-md);background:rgba(255,255,255,.1);padding:12px}.plans-ux4__line{display:flex;justify-content:space-between;gap:8px}.plans-ux4__line span{font-size:.84rem}.plans-ux4__stack p{margin:7px 0}.plans-ux4__chips{display:flex;flex-wrap:wrap;gap:6px}.plans-ux4__chips i{font-style:normal;border:1px solid rgba(255,255,255,.3);border-radius:999px;padding:4px 8px}.plans-ux4 button{margin-top:8px;background:var(--bg-accent);color:var(--fg-on-accent);border:0;border-radius:var(--radius-sm);padding:8px 10px}

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

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

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

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

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

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

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

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

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

    .hiw-ledger-l2__rows h3 {
        margin: 0;
    }

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

.site-header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

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

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

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    margin-top: var(--space-y);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    background: var(--btn-ghost-bg-hover);
  }

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

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      margin-top: var(--space-y);
    }

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

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

    .nav-list a {
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
      background: var(--surface-2);
    }

    .nav-list a:hover {
      background: var(--btn-ghost-bg-hover);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e67e22;
  }
  .footer-legal {
    margin: 0.5rem 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #e67e22;
  }
  .footer-disclaimer {
    margin-top: 1rem;
    border-top: 1px solid #7f8c8d;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.map-notes-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .map-notes-l6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-notes-l6__head {
        text-align: center;
        margin-bottom: 1rem;
    }

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

    .map-notes-l6__head p {
        margin: .55rem 0 0;
        color: var(--neutral-600);
    }

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

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

    .map-notes-l6__grid {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .map-notes-l6__grid article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-notes-l6__grid p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

.form-fresh-v2 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

    .form-fresh-v2 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.1vw, 2.4rem);
    }

    .form-fresh-v2 p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v2 form {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: .75rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .form-fresh-v2 label {
        display: grid;
        gap: .3rem;
        font-size: .9rem;
    }

    .form-fresh-v2 input {
        padding: .66rem .75rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v2 button {
        grid-column: 1/-1;
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: 700;
        cursor: pointer;
    }

    @media (max-width: 700px) {
        .form-fresh-v2 form {
            grid-template-columns:1fr;
        }
    }

.contacts-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .contacts-fresh-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .contacts-fresh-v6 .columns {
        display: flex;
        gap: var(--gap);
        overflow: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: .2rem;
    }

    .contacts-fresh-v6 article {
        min-width: 260px;
        scroll-snap-align: start;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v6 h3 {
        margin: 0 0 .5rem;
    }

    .contacts-fresh-v6 p {
        margin: 0;
    }

    .contacts-fresh-v6 .hint {
        margin: .4rem 0 .8rem;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v6 a {
        text-decoration: none;
        color: var(--link);
        font-weight: 700;
    }

.site-header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

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

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

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    margin-top: var(--space-y);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    background: var(--btn-ghost-bg-hover);
  }

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

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      margin-top: var(--space-y);
    }

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

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

    .nav-list a {
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
      background: var(--surface-2);
    }

    .nav-list a:hover {
      background: var(--btn-ghost-bg-hover);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e67e22;
  }
  .footer-legal {
    margin: 0.5rem 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #e67e22;
  }
  .footer-disclaimer {
    margin-top: 1rem;
    border-top: 1px solid #7f8c8d;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

    .terms-layout-c .section-head {
        margin-bottom: 14px;
    }

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

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

    .terms-layout-c details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

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

.site-header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

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

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

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    margin-top: var(--space-y);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    background: var(--btn-ghost-bg-hover);
  }

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

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      margin-top: var(--space-y);
    }

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

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

    .nav-list a {
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
      background: var(--surface-2);
    }

    .nav-list a:hover {
      background: var(--btn-ghost-bg-hover);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e67e22;
  }
  .footer-legal {
    margin: 0.5rem 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #e67e22;
  }
  .footer-disclaimer {
    margin-top: 1rem;
    border-top: 1px solid #7f8c8d;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

    .policy-layout-d .section-head {
        margin-bottom: 14px;
    }

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

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

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

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

.site-header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

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

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

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    margin-top: var(--space-y);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    background: var(--btn-ghost-bg-hover);
  }

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

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      margin-top: var(--space-y);
    }

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

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

    .nav-list a {
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
      background: var(--surface-2);
    }

    .nav-list a:hover {
      background: var(--btn-ghost-bg-hover);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e67e22;
  }
  .footer-legal {
    margin: 0.5rem 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #e67e22;
  }
  .footer-disclaimer {
    margin-top: 1rem;
    border-top: 1px solid #7f8c8d;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.nfthank-v10 {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .nfthank-v10__wrap {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
    }

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

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

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

.site-header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

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

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

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    margin-top: var(--space-y);
  }

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    background: var(--btn-ghost-bg-hover);
  }

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

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      margin-top: var(--space-y);
    }

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

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

    .nav-list a {
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
      background: var(--surface-2);
    }

    .nav-list a:hover {
      background: var(--btn-ghost-bg-hover);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-contact {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #e67e22;
  }
  .footer-legal {
    margin: 0.5rem 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #e67e22;
  }
  .footer-disclaimer {
    margin-top: 1rem;
    border-top: 1px solid #7f8c8d;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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