:root {
  --font-family: "Fira Sans", sans-serif;
  --font-size-base: 16.4px;
  --line-height-base: 1.31;

  --max-w: 1180px;
  --space-x: 1.03rem;
  --space-y: 1.5rem;
  --gap: 2.03rem;

  --radius-xl: 1.21rem;
  --radius-lg: 1rem;
  --radius-md: 0.59rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 1px 7px rgba(0,0,0,0.22);
  --shadow-md: 0 14px 28px rgba(0,0,0,0.29);
  --shadow-lg: 0 24px 54px rgba(0,0,0,0.35);

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

  --brand: #2D6A4F;
  --brand-contrast: #FFFFFF;
  --accent: #E07A5F;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F6F3;
  --neutral-300: #D6D2CB;
  --neutral-600: #8C867E;
  --neutral-800: #3D3A36;
  --neutral-900: #1C1A18;

  --bg-page: #FDFCFA;
  --fg-on-page: #3D3A36;

  --bg-alt: #F4F1ED;
  --fg-on-alt: #3D3A36;

  --surface-1: #FFFFFF;
  --surface-2: #F8F6F3;
  --fg-on-surface: #3D3A36;
  --border-on-surface: #D6D2CB;

  --surface-light: #FAF8F5;
  --fg-on-surface-light: #3D3A36;
  --border-on-surface-light: #E0DCD6;

  --bg-primary: #2D6A4F;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #245A43;
  --ring: #2D6A4F;

  --bg-accent: #F4A261;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D06B4F;

  --link: #2D6A4F;
  --link-hover: #1F4D3A;

  --gradient-hero: linear-gradient(135deg, #F4F1ED 0%, #E8E2D9 100%);
  --gradient-accent: linear-gradient(135deg, #E07A5F 0%, #F4A261 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);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .nav-list a:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  /* Offcanvas on mobile */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      align-items: flex-start;
      padding: calc(var(--space-y) * 2) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      width: 100%;
    }
    /* Overlay when menu open */
    .nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      z-index: 998;
    }
    .nav-overlay.active {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #3498db;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin: 15px 0;
    font-size: 14px;
    color: #bdc3c7;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-legal {
    margin: 10px 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
  }
  .footer-legal a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 15px 0 10px;
    font-size: 12px;
    color: #95a5a6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    margin-top: 10px;
    font-size: 13px;
    color: #7f8c8d;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .footer-contact span,
    .footer-contact a {
      display: block;
    }
    .footer-contact span::after {
      content: "";
    }
  }

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

.nfintro-v7 {
        padding: clamp(3.8rem, 8vw, 6.8rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .nfintro-v7__copy,
    .nfintro-v7__meta {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(17, 24, 39, .18);
        border: 1px solid rgba(255, 255, 255, .18);
    }

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

    .nfintro-v7__copy h1 {
        margin: .65rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1.02;
    }

    .nfintro-v7__copy span {
        display: block;
        margin-top: .95rem;
        max-width: 38rem;
    }

    .nfintro-v7__actions {
        margin-top: 1.1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

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

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

    .nfintro-v7__meta {
        display: grid;
        align-content: center;
        gap: .7rem;
    }

    .nfintro-v7__meta p,
    .nfintro-v7__meta div {margin: 0; color: rgba(255, 255, 255, .88);}

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

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

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

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

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

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

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

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

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

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

    .next-strip-l2 {
        overflow: hidden;
    }

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

.education-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

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

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

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

    .education-struct-v2 article, .education-struct-v2 .row, .education-struct-v2 details, .education-struct-v2 .program {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .education-struct-v2 .grid a, .education-struct-v2 .tiers a, .education-struct-v2 .cta 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)
    }

    .education-struct-v2 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v2 .path article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .education-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

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

    .education-struct-v2 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

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

    .education-struct-v2 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo, .education-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

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

    .nftouch-v12__wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .nftouch-v12__header {
        margin-bottom: 14px;
    }

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

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

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

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

    .nftouch-v12 li span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .nftouch-v12 li a {
        color: var(--bg-primary);
        text-decoration: none;
    }

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

    @media (max-width: 680px) {
        .nftouch-v12 li {
            grid-template-columns: 1fr;
        }
    }

.why-choose {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

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

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

        transform: translateY(20px);
    }

    .why-choose h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

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

    .why-choose .why-choose__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

    .why-choose .why-choose__number {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

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

    .why-choose .why-choose__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .nav-list a:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  /* Offcanvas on mobile */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      align-items: flex-start;
      padding: calc(var(--space-y) * 2) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      width: 100%;
    }
    /* Overlay when menu open */
    .nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      z-index: 998;
    }
    .nav-overlay.active {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #3498db;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin: 15px 0;
    font-size: 14px;
    color: #bdc3c7;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-legal {
    margin: 10px 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
  }
  .footer-legal a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 15px 0 10px;
    font-size: 12px;
    color: #95a5a6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    margin-top: 10px;
    font-size: 13px;
    color: #7f8c8d;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .footer-contact span,
    .footer-contact a {
      display: block;
    }
    .footer-contact span::after {
      content: "";
    }
  }

.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-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

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

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

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

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

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

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

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

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

    .identity-lv4__line h3 {
        margin: 0;
    }

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

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

.about-mission {

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

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

    .about-mission .about-mission__q {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .6rem;
        font-weight: 700;
    }

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

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

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

    .team-section__title {
        text-align: center;
        margin-bottom: calc(var(--space-y) * 2);
        font-size: clamp(28px, 4vw, 40px);
        color: var(--fg-on-page);
    }

    .team-section__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: calc(var(--gap) * 1.5);
    }

    .team-card {
        background-color: var(--surface-1);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        text-align: center;
        transition: all var(--anim-duration) var(--anim-ease);
        border: 1px solid var(--border-on-surface);
    }

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .team-card__photo {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .team-card__info {
        padding: clamp(16px, 3vw, 28px);
    }

    .team-card__info h3 {
        margin-bottom: 0.5rem;
        color: var(--fg-on-surface);
    }

    .team-card__role {
        color: var(--brand);
        font-weight: 500;
        margin-bottom: var(--space-y);
    }

    .team-card__info p {
        margin: 0 auto;
        color: var(--fg-on-surface-light);
        font-size: 0.95rem;
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .nav-list a:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  /* Offcanvas on mobile */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      align-items: flex-start;
      padding: calc(var(--space-y) * 2) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      width: 100%;
    }
    /* Overlay when menu open */
    .nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      z-index: 998;
    }
    .nav-overlay.active {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #3498db;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin: 15px 0;
    font-size: 14px;
    color: #bdc3c7;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-legal {
    margin: 10px 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
  }
  .footer-legal a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 15px 0 10px;
    font-size: 12px;
    color: #95a5a6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    margin-top: 10px;
    font-size: 13px;
    color: #7f8c8d;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .footer-contact span,
    .footer-contact a {
      display: block;
    }
    .footer-contact span::after {
      content: "";
    }
  }

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

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

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

    .hiw-ux8__head {
        margin-bottom: 1.25rem;
    }

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

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

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

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

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

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

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

    .hiw-ux8__track p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        transform: translateY(22px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .plans-lv2__head {
        margin-bottom: 14px;
    }

    .plans-lv2__head h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 44px);
    }

    .plans-lv2__head p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .plans-lv2__range {
        margin-bottom: 12px;
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        padding: 12px;
        display: grid;
        gap: 8px;
    }

    .plans-lv2__range label {
        font-weight: 700;
    }

    .plans-lv2__range input {
        width: 100%;
        accent-color: var(--bg-primary);
    }

    .plans-lv2__range span {
        color: var(--neutral-600);
    }

    .plans-lv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .plans-lv2__grid article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
    }

    .plans-lv2__grid h3 {
        margin: 0;
    }

    .plans-lv2__tier {
        margin: 5px 0 7px;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv2__desc {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

    .plans-lv2__grid ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

    .plans-lv2__grid button {
        width: 100%;
        margin-top: 10px;
        border: 1px solid var(--bg-primary);
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .nav-list a:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  /* Offcanvas on mobile */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      align-items: flex-start;
      padding: calc(var(--space-y) * 2) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      width: 100%;
    }
    /* Overlay when menu open */
    .nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      z-index: 998;
    }
    .nav-overlay.active {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #3498db;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin: 15px 0;
    font-size: 14px;
    color: #bdc3c7;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-legal {
    margin: 10px 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
  }
  .footer-legal a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 15px 0 10px;
    font-size: 12px;
    color: #95a5a6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    margin-top: 10px;
    font-size: 13px;
    color: #7f8c8d;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .footer-contact span,
    .footer-contact a {
      display: block;
    }
    .footer-contact span::after {
      content: "";
    }
  }

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

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

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

    .form-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    }

    .form-fresh-v6 form {
        display: grid;
        gap: .85rem;
    }

    .form-fresh-v6 .rows {
        display: grid;
        gap: .6rem;
    }

    .form-fresh-v6 label {
        display: grid;
        grid-template-columns:180px 1fr;
        gap: .8rem;
        align-items: center;
        padding: .6rem .8rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
    }

    .form-fresh-v6 b {
        font-size: .9rem;
    }

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

    .form-fresh-v6 button {
        justify-self: start;
        padding: .68rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

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

.connect {
        color: var(--accent-contrast);
        background: var(--accent);
        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(40px, 6vw, 56px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

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

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        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 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__icon {
        font-size: clamp(40px, 7vw, 64px);
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

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

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

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

    .contact-layout-b .section-head {
        margin-bottom: 16px;
    }

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

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

    .contact-layout-b .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .contact-layout-b .item-card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-layout-b .item-card h3 {
        margin: 0;
        color: var(--brand);
    }

    .contact-layout-b .item-card p {
        margin: 8px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .contact-layout-b .item-card a {
        color: var(--link);
        text-decoration: none;
    }

    .contact-layout-b .item-card a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    .contact-layout-b footer {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-b .social {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-layout-b .social a {
        text-decoration: none;
        color: var(--link);
        padding: 6px 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .contact-layout-b .social a:hover {
        background: var(--surface-2);
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .nav-list a:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  /* Offcanvas on mobile */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      align-items: flex-start;
      padding: calc(var(--space-y) * 2) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      width: 100%;
    }
    /* Overlay when menu open */
    .nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      z-index: 998;
    }
    .nav-overlay.active {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #3498db;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin: 15px 0;
    font-size: 14px;
    color: #bdc3c7;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-legal {
    margin: 10px 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
  }
  .footer-legal a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 15px 0 10px;
    font-size: 12px;
    color: #95a5a6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    margin-top: 10px;
    font-size: 13px;
    color: #7f8c8d;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .footer-contact span,
    .footer-contact a {
      display: block;
    }
    .footer-contact span::after {
      content: "";
    }
  }

.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-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

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

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

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

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .nav-list a:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  /* Offcanvas on mobile */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      align-items: flex-start;
      padding: calc(var(--space-y) * 2) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      width: 100%;
    }
    /* Overlay when menu open */
    .nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      z-index: 998;
    }
    .nav-overlay.active {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #3498db;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin: 15px 0;
    font-size: 14px;
    color: #bdc3c7;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-legal {
    margin: 10px 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
  }
  .footer-legal a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 15px 0 10px;
    font-size: 12px;
    color: #95a5a6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    margin-top: 10px;
    font-size: 13px;
    color: #7f8c8d;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .footer-contact span,
    .footer-contact a {
      display: block;
    }
    .footer-contact span::after {
      content: "";
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .nav-list a:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  /* Offcanvas on mobile */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      align-items: flex-start;
      padding: calc(var(--space-y) * 2) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      width: 100%;
    }
    /* Overlay when menu open */
    .nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      z-index: 998;
    }
    .nav-overlay.active {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #3498db;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin: 15px 0;
    font-size: 14px;
    color: #bdc3c7;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-legal {
    margin: 10px 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
  }
  .footer-legal a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 15px 0 10px;
    font-size: 12px;
    color: #95a5a6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    margin-top: 10px;
    font-size: 13px;
    color: #7f8c8d;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .footer-contact span,
    .footer-contact a {
      display: block;
    }
    .footer-contact span::after {
      content: "";
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .nav-list a:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  /* Offcanvas on mobile */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      flex-direction: column;
      align-items: flex-start;
      padding: calc(var(--space-y) * 2) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
    }
    .nav-menu.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      width: 100%;
    }
    /* Overlay when menu open */
    .nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      z-index: 998;
    }
    .nav-overlay.active {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-logo a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #3498db;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin: 15px 0;
    font-size: 14px;
    color: #bdc3c7;
  }
  .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-legal {
    margin: 10px 0;
  }
  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
  }
  .footer-legal a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 15px 0 10px;
    font-size: 12px;
    color: #95a5a6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    margin-top: 10px;
    font-size: 13px;
    color: #7f8c8d;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .footer-contact span,
    .footer-contact a {
      display: block;
    }
    .footer-contact span::after {
      content: "";
    }
  }

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

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

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

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

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

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

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

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

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

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

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }