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

  --max-w: 1120px;
  --space-x: 1.23rem;
  --space-y: 1.07rem;
  --gap: 0.74rem;

  --radius-xl: 0.89rem;
  --radius-lg: 0.58rem;
  --radius-md: 0.42rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.13);
  --shadow-lg: 0 12px 38px rgba(0,0,0,0.15);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 190ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #1E3A5F;
  --brand-contrast: #FFFFFF;
  --accent: #E67E22;
  --accent-contrast: #FFFFFF;

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

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

  --bg-alt: #F3F4F6;
  --fg-on-alt: #374151;

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

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #4B5563;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #1E3A5F;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #152B45;
  --ring: #E67E22;

  --bg-accent: #FDF2E9;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D35400;

  --link: #1E3A5F;
  --link-hover: #E67E22;

  --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #2C5F8A 100%);
  --gradient-accent: linear-gradient(135deg, #E67E22 0%, #D35400 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 */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    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;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  /* Burger button */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  /* Offcanvas nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1050;
    overflow-y: auto;
  }
  .nav.open {
    right: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) 0;
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  /* Desktop: ascunde burger, meniu inline */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-link {
      padding: 0 0 4px 0;
      border-bottom: 2px solid transparent;
    }
    .overlay {
      display: none;
    }
  }
  /* Mobile */
  @media (max-width: 767px) {
    .nav {
      display: block;
    }
    .nav.open {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ecf0f1;
    text-decoration: none;
  }
  .logo:hover {
    color: #3498db;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.wp-lang-switcher-v10 {
        position: fixed;
        left: 2rem;

        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .wp-lang-switcher-v10__btn {
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 999px;
        background: linear-gradient(145deg, #111827, #1f2937);
        color: #f9fafb;
        box-shadow: var(--shadow-lg);
        padding: 9px 14px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }

    .wp-lang-switcher-v10__emoji {
        font-size: 16px;
        line-height: 1;
    }

    .wp-lang-switcher-v10__value {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
    }

    .wp-lang-switcher-v10__dropdown {
        position: absolute;
        bottom: 52px;
        left: 50%;
        transform: translate(-50%, 10px);
        opacity: 0;
        pointer-events: none;
        display: flex;
        gap: 6px;
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v10__dropdown.open {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .wp-lang-switcher-v10__dropdown button,
    .wp-lang-switcher-v10__dropdown a {
        width: 42px;
        height: 34px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(17, 24, 39, 0.92);
        color: #e5e7eb;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v10__dropdown button:hover,
    .wp-lang-switcher-v10__dropdown a:hover {
        background: #38bdf8;
        border-color: transparent;
        color: #06263a;
    }

.intro-banner-c5 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: linear-gradient(120deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .intro-banner-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
        text-align: center;
    }

    .intro-banner-c5__over {
        display: inline-flex;
        padding: .45rem .8rem;
        border-radius: 999px;
        background: var(--chip-bg);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-banner-c5__wrap h1 {
        margin: .8rem 0 0;
        font-size: clamp(2.6rem, 5vw, 4.8rem);
        line-height: 1;
    }

    .intro-banner-c5__sub {
        margin: 1rem auto 0;
        max-width: 40rem;
        color: rgba(255, 255, 255, .88);
    }

    .intro-banner-c5__bar {
        margin-top: 1.25rem;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .75rem;
    }

    .intro-banner-c5__bar div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
    }

    .intro-banner-c5__cta {
        margin-top: 1rem;
        padding: .9rem 1rem;
        border-radius: var(--radius-md);
        background: rgba(17, 24, 39, .2);
    }

    @media (max-width: 640px) {
        .intro-banner-c5__bar {
            grid-template-columns: 1fr;
        }
    }

.next-ux24 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

    .next-ux24__copy {
        margin-bottom: 1rem;
        text-align: center;
    }

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

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

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

    .next-ux24__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-ux24__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-sm);
    }

    .next-ux24__grid div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--neutral-100);
    }

    .next-ux24__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .next-ux24__grid a {
        color: var(--link);
        text-decoration: none;
    }

    .next-ux24__foot {
        margin-top: 1rem;
        text-align: center;
    }

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

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

.nfsocial-v10 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: var(--surface-1);
    }

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

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

    .nfsocial-v10__text {
        border-left: 2px solid var(--border-on-surface);
        padding-left: var(--space-x);
    }

    .nfsocial-v10__text:first-child {
        border-left: 0;
        padding-left: 0;
    }

    .nfsocial-v10__text h2 {
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .nfsocial-v10__text p {
        margin-bottom: var(--space-y);
        color: var(--neutral-600);
    }

    @media (max-width: 840px) {
        .nfsocial-v10__grid {
            grid-template-columns: 1fr;
        }

        .nfsocial-v10__text {
            border-left: 0;
            padding-left: 0;
        }
    }

.touch-panorama {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

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

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

    .touch-panorama .lead {
        margin: 10px 0 14px;
    }

    .touch-panorama .lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .touch-panorama article {
        min-width: 250px;
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
        scroll-snap-align: start;
    }

    .touch-panorama article h3 {
        margin: 0 0 8px;
    }

    .touch-panorama article p {
        margin: 0 0 8px;
    }

    .touch-panorama article a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    .touch-panorama .main {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }

/* Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    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;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  /* Burger button */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  /* Offcanvas nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1050;
    overflow-y: auto;
  }
  .nav.open {
    right: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) 0;
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  /* Desktop: ascunde burger, meniu inline */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-link {
      padding: 0 0 4px 0;
      border-bottom: 2px solid transparent;
    }
    .overlay {
      display: none;
    }
  }
  /* Mobile */
  @media (max-width: 767px) {
    .nav {
      display: block;
    }
    .nav.open {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ecf0f1;
    text-decoration: none;
  }
  .logo:hover {
    color: #3498db;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.partners--light-v6 {

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

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

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

.partners__row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.partners__chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    font-size: 0.85rem;
    color: var(--neutral-800);
}

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

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

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

    .identity-nv9__head span {
        display: inline-flex;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.2);
    }

    .identity-nv9__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .identity-nv9__head p {
        margin: 0;
        max-width: 70ch;
        opacity: .92;
    }

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

    .identity-nv9__list article {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 12px;
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .identity-nv9__list b {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: rgba(15, 23, 42, 0.45);
        color: var(--neutral-0);
        align-self: start;
    }

    .identity-nv9__list h3 {
        margin: 0;
    }

    .identity-nv9__list em {
        display: block;
        margin-top: 4px;
        font-style: normal;
        opacity: .95;
    }

    .identity-nv9__list p {
        margin: 7px 0 0;
        opacity: .9;
    }

    @media (max-width: 640px) {
        .identity-nv9__list article {
            grid-template-columns: 1fr;
        }
    }

.mis-lx6{padding:calc(var(--space-y)*2.7) var(--space-x)}
.mis-lx6 .mis-grid{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.65rem}
.mis-lx6 .mis-intro{grid-column:span 12;padding:1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1)}
.mis-lx6 .mis-intro h2{margin:0;font-size:clamp(1.8rem,3.4vw,2.55rem)}
.mis-lx6 .mis-intro p{margin:.42rem 0 0;color:var(--fg-on-surface-light)}
.mis-lx6 .mis-card{grid-column:span 4;padding:.95rem;border-radius:var(--radius-lg);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.mis-lx6 .mis-card:nth-child(3n){background:color-mix(in srgb,var(--surface-1) 85%, var(--bg-accent) 15%)}
.mis-lx6 h3{margin:0 0 .3rem}
.mis-lx6 .mis-card p{margin:0;color:var(--fg-on-surface-light)}
@media (max-width:920px){.mis-lx6 .mis-card{grid-column:span 6}}@media (max-width:640px){.mis-lx6 .mis-card{grid-column:1/-1}}

/* Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    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;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  /* Burger button */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  /* Offcanvas nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1050;
    overflow-y: auto;
  }
  .nav.open {
    right: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) 0;
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  /* Desktop: ascunde burger, meniu inline */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-link {
      padding: 0 0 4px 0;
      border-bottom: 2px solid transparent;
    }
    .overlay {
      display: none;
    }
  }
  /* Mobile */
  @media (max-width: 767px) {
    .nav {
      display: block;
    }
    .nav.open {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ecf0f1;
    text-decoration: none;
  }
  .logo:hover {
    color: #3498db;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.plans-cv2 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

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

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

    .plans-cv2__line {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: center;
    }

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__list p {
        margin: 10px 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.cap-lx3{padding:calc(var(--space-y)*3) var(--space-x)}
.cap-lx3 .cap-shell{max-width:var(--max-w);margin:0 auto}
.cap-lx3 h2{margin:0;font-size:clamp(1.9rem,3.7vw,2.8rem)}
.cap-lx3 .cap-sub{margin:.4rem 0 1rem;color:var(--fg-on-surface-light);max-width:60ch}
.cap-lx3 .cap-track{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(220px,1fr);gap:.75rem;overflow:auto;padding-bottom:.4rem;scroll-snap-type:x mandatory}
.cap-lx3 article{scroll-snap-align:start;padding:1rem;border-radius:var(--radius-lg);border:1px solid var(--border-on-surface);background:var(--surface-1);min-height:180px;display:grid;align-content:start}
.cap-lx3 article:nth-child(odd){background:color-mix(in srgb,var(--surface-1) 86%, var(--bg-accent) 14%)}
.cap-lx3 h3{margin:0 0 .4rem}
.cap-lx3 article p{margin:0 0 .6rem;color:var(--fg-on-surface-light)}
.cap-lx3 article small{font-weight:700;color:var(--link)}

.hiw-orbit-c7 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

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

    .hiw-orbit-c7__head {
        text-align: center;
        margin-bottom: 1.25rem;
    }

    .hiw-orbit-c7__head p {
        margin: 0;
        color: var(--accent-contrast);
    }

    .hiw-orbit-c7__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--brand-contrast);
    }

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

    .hiw-orbit-c7__ring article {
        padding: 1rem;
        background: rgba(255, 255, 255, .52);
        border: 1px solid rgba(255, 255, 255, .2);
        text-align: center;
        border-radius: var(--radius-lg);
        color: var(--neutral-900);
    }

    .hiw-orbit-c7__ring span {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--chip-bg);
        font-weight: 700;
        color: var(--brand-contrast);
    }

    .hiw-orbit-c7__ring h3 {
        margin: .75rem 0 .35rem;
        color: var(--neutral-900);
    }

    .hiw-orbit-c7__ring p {
        margin: 0;
        color: var(--neutral-800);
    }

/* Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    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;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  /* Burger button */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  /* Offcanvas nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1050;
    overflow-y: auto;
  }
  .nav.open {
    right: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) 0;
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  /* Desktop: ascunde burger, meniu inline */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-link {
      padding: 0 0 4px 0;
      border-bottom: 2px solid transparent;
    }
    .overlay {
      display: none;
    }
  }
  /* Mobile */
  @media (max-width: 767px) {
    .nav {
      display: block;
    }
    .nav.open {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ecf0f1;
    text-decoration: none;
  }
  .logo:hover {
    color: #3498db;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

.con-lx2{padding:calc(var(--space-y)*2.8) var(--space-x)}
.con-lx2 .con-shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:.9rem}
.con-lx2 h2{margin:0;font-size:clamp(1.8rem,3.5vw,2.6rem)}
.con-lx2 .con-title p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.con-lx2 .con-main{display:grid;grid-template-columns:1.2fr .8fr;gap:var(--gap)}
.con-lx2 .con-core{display:grid;gap:.55rem;padding:1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1)}
.con-lx2 .con-core p{margin:0;display:grid;grid-template-columns:170px 1fr;gap:.7rem;align-items:start}
.con-lx2 .con-core strong{color:var(--fg-on-surface-light)}
.con-lx2 a{color:var(--link);text-decoration:none}
.con-lx2 a:hover{color:var(--link-hover)}
.con-lx2 .con-channels{list-style:none;margin:0;padding:1rem;border-radius:var(--radius-xl);border:1px solid var(--border-on-surface);background:var(--surface-2);display:grid;gap:.5rem}
.con-lx2 .con-channels li{display:flex;justify-content:space-between;gap:.7rem;padding-bottom:.45rem;border-bottom:1px solid var(--border-on-surface-light)}
.con-lx2 .con-channels li:last-child{border-bottom:0;padding-bottom:0}
@media (max-width:860px){.con-lx2 .con-main,.con-lx2 .con-core p{grid-template-columns:1fr}}

/* Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    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;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  /* Burger button */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  /* Offcanvas nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1050;
    overflow-y: auto;
  }
  .nav.open {
    right: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) 0;
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  /* Desktop: ascunde burger, meniu inline */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-link {
      padding: 0 0 4px 0;
      border-bottom: 2px solid transparent;
    }
    .overlay {
      display: none;
    }
  }
  /* Mobile */
  @media (max-width: 767px) {
    .nav {
      display: block;
    }
    .nav.open {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ecf0f1;
    text-decoration: none;
  }
  .logo:hover {
    color: #3498db;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.pol-lx8{padding:calc(var(--space-y)*2.95) var(--space-x);background:var(--bg-alt)}
.pol-lx8 .pol-wrap{max-width:var(--max-w);margin:0 auto}
.pol-lx8 h2{margin:0 0 .85rem;font-size:clamp(1.76rem,3.1vw,2.45rem)}
.pol-lx8 .pol-cols{display:grid;grid-template-columns:.95fr 1.05fr;gap:var(--gap)}
.pol-lx8 .pol-left{padding:1rem;border-radius:var(--radius-lg);border:1px solid var(--border-on-surface);background:var(--surface-1)}
.pol-lx8 .pol-left h3{margin:0 0 .32rem}
.pol-lx8 .pol-left p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx8 .pol-right{list-style:none;margin:0;padding:0;display:grid;gap:.5rem}
.pol-lx8 .pol-right li{padding:.8rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.pol-lx8 .pol-right h4{margin:0 0 .2rem;font-size:1rem}
.pol-lx8 .pol-right p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx8 .pol-note{display:flex;gap:.7rem;margin-top:.75rem;padding:.8rem;border-radius:var(--radius-md);background:var(--surface-2)}
@media (max-width:860px){.pol-lx8 .pol-cols{grid-template-columns:1fr}.pol-lx8 .pol-note{display:grid}}

/* Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    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;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  /* Burger button */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  /* Offcanvas nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1050;
    overflow-y: auto;
  }
  .nav.open {
    right: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) 0;
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  /* Desktop: ascunde burger, meniu inline */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-link {
      padding: 0 0 4px 0;
      border-bottom: 2px solid transparent;
    }
    .overlay {
      display: none;
    }
  }
  /* Mobile */
  @media (max-width: 767px) {
    .nav {
      display: block;
    }
    .nav.open {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ecf0f1;
    text-decoration: none;
  }
  .logo:hover {
    color: #3498db;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.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 */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    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;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  /* Burger button */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  /* Offcanvas nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1050;
    overflow-y: auto;
  }
  .nav.open {
    right: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) 0;
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  /* Desktop: ascunde burger, meniu inline */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-link {
      padding: 0 0 4px 0;
      border-bottom: 2px solid transparent;
    }
    .overlay {
      display: none;
    }
  }
  /* Mobile */
  @media (max-width: 767px) {
    .nav {
      display: block;
    }
    .nav.open {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ecf0f1;
    text-decoration: none;
  }
  .logo:hover {
    color: #3498db;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.thank-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .thank-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u7 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u7 article,.thank-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u7 p{margin:0} .thank-u7 a{text-decoration:none;color:inherit;font-weight:700} .thank-u7 .ranks{counter-reset:r;display:grid;gap:.5rem} .thank-u7 .ranks article{position:relative;padding-left:2.2rem} .thank-u7 .ranks article::before{counter-increment:r;content:counter(r);position:absolute;left:.7rem;top:.8rem;width:1.2rem;height:1.2rem;border-radius:50%;display:grid;place-items:center;background:var(--bg-primary);color:var(--fg-on-primary);font-size:.72rem} .thank-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .thank-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.thank-u7 .split,.thank-u7 .media,.thank-u7 .grid,.thank-u7 .cards,.thank-u7 .bento,.thank-u7 .foot{grid-template-columns:1fr}}

/* Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    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;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  /* Burger button */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  /* Offcanvas nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 1050;
    overflow-y: auto;
  }
  .nav.open {
    right: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) 0;
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  /* Desktop: ascunde burger, meniu inline */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      overflow: visible;
      right: auto;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-link {
      padding: 0 0 4px 0;
      border-bottom: 2px solid transparent;
    }
    .overlay {
      display: none;
    }
  }
  /* Mobile */
  @media (max-width: 767px) {
    .nav {
      display: block;
    }
    .nav.open {
      display: block;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ecf0f1;
    text-decoration: none;
  }
  .logo:hover {
    color: #3498db;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-contact {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #3498db;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

.err-slab-b .frame {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(28px, 4vw, 46px);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-xl);
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
}

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

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

.err-slab-b a {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 17px;
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    text-decoration: none;
}