:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 18px;
  --line-height-base: 1.62;

  --max-w: 1360px;
  --space-x: 2.02rem;
  --space-y: 1.5rem;
  --gap: 1.83rem;

  --radius-xl: 1.28rem;
  --radius-lg: 0.96rem;
  --radius-md: 0.52rem;
  --radius-sm: 0.31rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.13);
  --shadow-md: 0 10px 24px rgba(0,0,0,0.16);
  --shadow-lg: 0 16px 46px rgba(0,0,0,0.2);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 330ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 1;

  --brand: #D35400;
  --brand-contrast: #FFFFFF;
  --accent: #E67E22;
  --accent-contrast: #FFFFFF;

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

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

  --bg-alt: #FEF3E2;
  --fg-on-alt: #5D4037;

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

  --surface-light: #FFF8F0;
  --fg-on-surface-light: #4A3728;
  --border-on-surface-light: #F0E6D6;

  --bg-primary: #D35400;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #B84900;
  --ring: #D35400;

  --bg-accent: #F39C12;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D68910;

  --link: #D35400;
  --link-hover: #A04000;

  --gradient-hero: linear-gradient(135deg, #D35400 0%, #E67E22 50%, #F39C12 100%);
  --gradient-accent: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}
.header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #d32f2f);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
}
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
}
.nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #d32f2f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.nav-menu a:hover {
    color: var(--brand, #d32f2f);
}
.nav-menu a:hover::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.search-toggle {
    background: var(--btn-ghost-bg, transparent);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    color: var(--fg-on-surface, #333);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}
.burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--surface-1, #ffffff);
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
        padding: 2rem;
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .nav-menu a {
        font-size: 1.25rem;
        padding: 0.5rem 0;
    }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .disclaimer {
    color: #95a5a6;
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #e67e22;
  }
  .copyright {
    color: #7f8c8d;
    white-space: nowrap;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .legal-links {
      justify-content: 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-v11 {
        position: fixed;
        right: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: 8px;
        min-width: 120px;
    }

    .wp-lang-switcher-v11__head {
        width: 100%;
        border: 0;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        padding: 8px 10px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        font-weight: 700;
    }

    .wp-lang-switcher-v11__head-text {
        opacity: 0.75;
    }

    .wp-lang-switcher-v11__head-value {
        border-radius: 999px;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        padding: 3px 8px;
        min-width: 36px;
        text-align: center;
    }

    .wp-lang-switcher-v11__items {
        margin-top: 8px;
        display: grid;
        gap: 6px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v11__items.open {
        opacity: 1;
        pointer-events: auto;
    }

    .wp-lang-switcher-v11__items button,
    .wp-lang-switcher-v11__items a {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 7px 10px;
        font-size: 12px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .wp-lang-switcher-v11__items button:hover,
    .wp-lang-switcher-v11__items a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.intro-window-l9 {
        padding: clamp(3.7rem, 8vw, 6.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-window-l9__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .intro-window-l9__copy {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .intro-window-l9__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .intro-window-l9__copy p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-window-l9__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 1.03;
    }

    .intro-window-l9__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-window-l9__links {
        margin-top: 1.1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

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

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

    .intro-window-l9__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-window-l9__mark {
        margin-top: .85rem;
        padding: .8rem .9rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

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

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

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

    .next-ux17__banner p {
        margin: 0;
    }

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

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

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

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

    .next-ux17__tail {
        margin-top: 1rem;

    }

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

.education-struct-light-v14 {
    padding: calc(var(--space-y) * 2) var(--space-x);
    background: var(--neutral-0);
    color: var(--neutral-900);
}

.education-struct-light-v14__shell {
    max-width: var(--max-w);
    margin: 0 auto;
}

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

.education-struct-light-v14 article {
    display: grid;
    gap: .55rem;
    background: var(--neutral-100);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-lg);
    padding: .9rem;
}

.education-struct-light-v14 h3,
.education-struct-light-v14 p {
    margin: 0;
}

.education-struct-light-v14 p {
    color: var(--neutral-800);
}

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

@media (max-width: 900px) {
    .education-struct-light-v14__tiers {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .education-struct-light-v14__tiers {
        grid-template-columns: 1fr;
    }
}

.values-chain-c7 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

    .values-chain-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .values-chain-c7__head {
        margin-bottom: 1.1rem;
    }

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

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

    .values-chain-c7__head span {
        display: block;
        margin-top: .8rem;
    }

    .values-chain-c7__list {
        display: grid;
        gap: .8rem;
    }

    .values-chain-c7__list article {
        display: grid;
        grid-template-columns: 2.7rem 1fr 2rem;
        gap: .8rem;
        align-items: center;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-chain-c7__list b {
        display: grid;
        place-items: center;
        width: 2.7rem;
        height: 2.7rem;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .values-chain-c7__list h3 {
        margin: 0;
    }

    .values-chain-c7__list p {
        margin: .35rem 0 0;
    }

    .values-chain-c7__list i {
        font-style: normal;
        text-align: right;
    }

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

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

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

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

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

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

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

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

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

    .touch-bulletin .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}
.header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #d32f2f);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
}
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
}
.nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #d32f2f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.nav-menu a:hover {
    color: var(--brand, #d32f2f);
}
.nav-menu a:hover::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.search-toggle {
    background: var(--btn-ghost-bg, transparent);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    color: var(--fg-on-surface, #333);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}
.burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--surface-1, #ffffff);
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
        padding: 2rem;
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .nav-menu a {
        font-size: 1.25rem;
        padding: 0.5rem 0;
    }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .disclaimer {
    color: #95a5a6;
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #e67e22;
  }
  .copyright {
    color: #7f8c8d;
    white-space: nowrap;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

    .identity-ux14 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

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

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

.about-timeline {

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

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

    .about-timeline .about-timeline__tl {
        display: grid;
        gap: 16px;
    }

    .about-timeline .about-timeline__tl .timeline {
        list-style: none;
        border-left: 3px solid var(--bg-primary);
        padding: .4rem .6rem .4rem 1rem;
    }

    .about-timeline time {
        display: block;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .about-timeline p {
        margin: .25rem 0 0;
        color: var(--neutral-600);
    }

.mission--colored-v5 {

    padding: 64px 20px;
    background: radial-gradient(circle at top left, rgba(16,185,129,0.35), transparent),
                radial-gradient(circle at bottom right, rgba(59,130,246,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.mission__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.mission__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(209,250,229,0.9);
    margin: 0 0 0.5rem;
}

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

.mission__text {
    margin: 0;
    color: var(--neutral-200);
    font-size: 0.95rem;
    line-height: 1.7;
}

.mission__pillars {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.mission__pillar {
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(15,23,42,0.96);
}

.mission__pillar--impact {
    border-color: var(--accent);
}

.mission__pillar--safety {
    border-color: var(--accent);
}

.mission__pillar--focus {
    border-color: var(--bg-primary);
}

.mission__pillar h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: var(--brand-contrast);
}

.mission__pillar p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-200);
}

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}
.header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #d32f2f);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
}
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
}
.nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #d32f2f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.nav-menu a:hover {
    color: var(--brand, #d32f2f);
}
.nav-menu a:hover::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.search-toggle {
    background: var(--btn-ghost-bg, transparent);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    color: var(--fg-on-surface, #333);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}
.burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--surface-1, #ffffff);
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
        padding: 2rem;
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .nav-menu a {
        font-size: 1.25rem;
        padding: 0.5rem 0;
    }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .disclaimer {
    color: #95a5a6;
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #e67e22;
  }
  .copyright {
    color: #7f8c8d;
    white-space: nowrap;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .legal-links {
      justify-content: 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 {

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

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

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

    }

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

    .capabilities .capabilities__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .capabilities .capabilities__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .capabilities .capabilities__card {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(28px, 4vw, 40px);
        border-radius: var(--radius-xl);
        position: relative;

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

    .capabilities .capabilities__card:hover {
        transform: translateY(-8px);
    }

    .capabilities .capabilities__step {
        position: absolute;
        top: -16px;
        right: 24px;
        width: 48px;
        height: 48px;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .capabilities .capabilities__icon {
        font-size: 40px;
        margin-bottom: 1.5rem;
    }

    .capabilities .capabilities__card h3 {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
        margin: 0 0 1rem;
    }

    .capabilities .capabilities__card p {
        margin: 0;
        line-height: var(--line-height-base);
    }

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

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

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

.two-column-section__media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

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

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

.two-column-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.two-column-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

    .hiw-ux9 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .hiw-ux9__head {
        max-width: 42rem;
        margin: 0 auto 1.25rem;
        text-align: center;
    }

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

    .hiw-ux9__head p {
        margin: .55rem 0 0;

    }

    .hiw-ux9__grid {
        display: grid;
        gap: var(--gap);
    }

    .hiw-ux9__grid article {
        width: min(40rem, 60%);
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .2);
        backdrop-filter: blur(8px);
    }

    .hiw-ux9__grid article:nth-child(odd) {
        margin-right: auto;
    }

    .hiw-ux9__grid article:nth-child(even) {
        margin-left: auto;
    }

    .hiw-ux9__num {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .hiw-ux9__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .9);
    }

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}
.header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #d32f2f);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
}
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
}
.nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #d32f2f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.nav-menu a:hover {
    color: var(--brand, #d32f2f);
}
.nav-menu a:hover::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.search-toggle {
    background: var(--btn-ghost-bg, transparent);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    color: var(--fg-on-surface, #333);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}
.burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--surface-1, #ffffff);
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
        padding: 2rem;
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .nav-menu a {
        font-size: 1.25rem;
        padding: 0.5rem 0;
    }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .disclaimer {
    color: #95a5a6;
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #e67e22;
  }
  .copyright {
    color: #7f8c8d;
    white-space: nowrap;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .legal-links {
      justify-content: 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;
        }
    }

.contacts-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .contacts-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 2);
    }

    .contacts-fresh-v3 .left h2 {
        margin: .3rem 0;
        font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    }

    .contacts-fresh-v3 .left p {
        max-width: 46ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v3 .right {
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v3 .row {
        padding: 1rem 1.1rem;
        border-left: 4px solid var(--bg-primary);
        background: var(--surface-2);
        border-radius: var(--radius-sm);
    }

    .contacts-fresh-v3 h3 {
        margin: 0 0 .3rem;
    }

    .contacts-fresh-v3 p {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v3 small {
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 900px) {
        .contacts-fresh-v3 .shell {
            grid-template-columns:1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 72px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .connect .connect__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(14px, 2.2vw, 18px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s;
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .connect .connect__item:not(:last-of-type):before {
        position: absolute;
        content: '';
        top: 50%;
        right: -32px;
        transform: translatey(-50%);
        width: 32px;
        height: 1px;
        background: var(--accent);
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
    }

    .connect .connect__icon {
        font-size: clamp(44px, 7.5vw, 68px);
        width: clamp(90px, 13vw, 130px);
        height: clamp(90px, 13vw, 130px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

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

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

    .connect .connect__item span {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}
.header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #d32f2f);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
}
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
}
.nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #d32f2f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.nav-menu a:hover {
    color: var(--brand, #d32f2f);
}
.nav-menu a:hover::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.search-toggle {
    background: var(--btn-ghost-bg, transparent);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    color: var(--fg-on-surface, #333);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}
.burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--surface-1, #ffffff);
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
        padding: 2rem;
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .nav-menu a {
        font-size: 1.25rem;
        padding: 0.5rem 0;
    }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .disclaimer {
    color: #95a5a6;
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #e67e22;
  }
  .copyright {
    color: #7f8c8d;
    white-space: nowrap;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .legal-links {
      justify-content: 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-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .policy-layout-e .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

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

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

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}
.header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #d32f2f);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
}
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
}
.nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #d32f2f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.nav-menu a:hover {
    color: var(--brand, #d32f2f);
}
.nav-menu a:hover::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.search-toggle {
    background: var(--btn-ghost-bg, transparent);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    color: var(--fg-on-surface, #333);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}
.burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--surface-1, #ffffff);
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
        padding: 2rem;
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .nav-menu a {
        font-size: 1.25rem;
        padding: 0.5rem 0;
    }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .disclaimer {
    color: #95a5a6;
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #e67e22;
  }
  .copyright {
    color: #7f8c8d;
    white-space: nowrap;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .legal-links {
      justify-content: 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-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}
.header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #d32f2f);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
}
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
}
.nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #d32f2f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.nav-menu a:hover {
    color: var(--brand, #d32f2f);
}
.nav-menu a:hover::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.search-toggle {
    background: var(--btn-ghost-bg, transparent);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    color: var(--fg-on-surface, #333);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}
.burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--surface-1, #ffffff);
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
        padding: 2rem;
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .nav-menu a {
        font-size: 1.25rem;
        padding: 0.5rem 0;
    }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .disclaimer {
    color: #95a5a6;
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #e67e22;
  }
  .copyright {
    color: #7f8c8d;
    white-space: nowrap;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .legal-links {
      justify-content: 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-v11 {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nfthank-v11__box {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .2);
        background: rgba(255, 255, 255, .08);
    }

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

    .nfthank-v11 p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .nfthank-v11 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--neutral-0);
        color: var(--neutral-900);
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}
.header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #d32f2f);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
}
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
}
.nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #d32f2f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.nav-menu a:hover {
    color: var(--brand, #d32f2f);
}
.nav-menu a:hover::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.search-toggle {
    background: var(--btn-ghost-bg, transparent);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    color: var(--fg-on-surface, #333);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
}
.burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--surface-1, #ffffff);
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
        padding: 2rem;
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .nav-menu a {
        font-size: 1.25rem;
        padding: 0.5rem 0;
    }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .disclaimer {
    color: #95a5a6;
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #e67e22;
  }
  .copyright {
    color: #7f8c8d;
    white-space: nowrap;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .legal-links {
      justify-content: 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-v11 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: linear-gradient(150deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nf404-v11__shell {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(28px, 4vw, 44px);
        background: rgba(15, 23, 42, .24);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .nf404-v11 p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .nf404-v11 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--neutral-0);
        color: var(--neutral-900);
        text-decoration: none;
    }