:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 15.8px;
  --line-height-base: 1.73;

  --max-w: 900px;
  --space-x: 1.43rem;
  --space-y: 1.5rem;
  --gap: 0.87rem;

  --radius-xl: 0.67rem;
  --radius-lg: 0.52rem;
  --radius-md: 0.44rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.07);
  --shadow-md: 0 3px 8px rgba(0,0,0,0.09);
  --shadow-lg: 0 14px 18px rgba(0,0,0,0.11);

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

  --brand: #1a3a5c;
  --brand-contrast: #ffffff;
  --accent: #2563eb;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f3f4f6;
  --neutral-300: #d1d5db;
  --neutral-600: #4b5563;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #ffffff;
  --fg-on-page: #1f2937;

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

  --surface-1: #ffffff;
  --surface-2: #f3f4f6;
  --fg-on-surface: #1f2937;
  --border-on-surface: #e5e7eb;

  --surface-light: #f9fafb;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #1e3a5f;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #152d4a;
  --ring: #2563eb;

  --bg-accent: #2563eb;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #1d4ed8;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);

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

.site-header {
  background: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}
.logo:hover {
  color: var(--brand-contrast);
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 1.5);
}
.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-list a:hover {
  color: var(--accent);
}
.nav-list a:hover::after {
  width: 100%;
}
.cta-button {
  display: inline-block;
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
  background: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.4rem;
  gap: 4px;
  transition: background var(--anim-duration) var(--anim-ease);
}
.burger:hover {
  background: var(--btn-ghost-bg-hover);
}
.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all 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);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    flex-direction: column;
    padding: var(--space-y) var(--space-x);
    gap: calc(var(--gap) * 0.75);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
  }
  .cta {
    display: none;
  }
}
@media (min-width: 768px) {
  .cta {
    display: block;
  }
}

/* reset minimal */
    footer * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    footer {
      background-color: #1e2b3a;
      color: #e6edf3;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      padding: 2.5rem 1.5rem 1.8rem;
      line-height: 1.5;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem 3rem;
    }

    /* stânga – brand + copyright */
    .footer-brand {
      flex: 1 1 240px;
      min-width: 180px;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 0.6rem;
      text-transform: uppercase;
    }

    .copyright {
      font-size: 0.9rem;
      color: #b0c4d9;
      margin-top: 0.25rem;
    }

    /* dreapta – coloană verticală */
    .footer-right {
      flex: 2 1 360px;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      min-width: 220px;
    }

    /* navigare */
    .footer-nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.8rem;
      padding: 0;
    }

    .footer-nav a {
      color: #cfddee;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.2s ease;
      border-bottom: 1px solid transparent;
    }

    .footer-nav a:hover {
      color: #ffffff;
      border-bottom-color: #6a8caf;
    }

    /* legal (policy + terms) */
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.8rem;
    }

    .footer-legal a {
      color: #b8ccdf;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px dotted #4a627a;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-legal a:hover {
      color: #ffffff;
      border-bottom-color: #8aabca;
    }

    /* secțiune contact */
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      background: transparent;
      padding: 0;
      border: none;
    }

    .footer-contact p {
      font-size: 0.95rem;
      color: #d3e0ee;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.3rem;
    }

    .contact-label {
      font-weight: 600;
      color: #b6cbdf;
      min-width: 4.5rem;
    }

    .footer-contact a {
      color: #b8d0e8;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-contact a:hover {
      color: #ffffff;
      border-bottom-color: #7b9fc0;
    }

    /* disclemair */
    .footer-disclaimer {
      font-size: 0.85rem;
      color: #9bb0c7;
      line-height: 1.5;
      border-top: 1px solid #2f4053;
      padding-top: 0.9rem;
      margin-top: 0.2rem;
      max-width: 550px;
      font-style: italic;
    }

    /* adaptare mobil */
    @media (max-width: 640px) {
      footer {
        padding: 2rem 1rem 1.5rem;
      }

      .footer-container {
        flex-direction: column;
        gap: 1.8rem;
      }

      .footer-brand {
        text-align: center;
      }

      .footer-right {
        width: 100%;
      }

      .footer-nav ul {
        justify-content: center;
      }

      .footer-legal {
        justify-content: center;
      }

      .footer-contact {
        align-items: center;
        text-align: center;
      }

      .footer-contact p {
        justify-content: center;
      }

      .footer-disclaimer {
        text-align: center;
        max-width: 100%;
      }
    }

    /* ajustare ecrane medii */
    @media (min-width: 641px) and (max-width: 860px) {
      .footer-container {
        gap: 1.8rem;
      }
      .footer-right {
        flex: 1 1 300px;
      }
    }

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

.hero-arc-v3 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .hero-arc-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:minmax(0, .82fr) minmax(0, 1.18fr);
        gap: calc(var(--gap) * 2);
        align-items: stretch;
    }

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

    .hero-arc-v3 img {
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .hero-arc-v3 .copy {
        display: grid;
        gap: var(--gap);
        align-content: start;
    }

    .hero-arc-v3 h1 {
        margin: .2rem 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.1;
    }

    .hero-arc-v3 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v3 .stats {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v3 .stats article {
        padding: 1rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
    }

    .hero-arc-v3 .stats p {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
        font-size: .92rem;
    }

    .hero-arc-v3 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .hero-arc-v3 .actions a {
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
        background: var(--surface-1);
    }

    .hero-arc-v3 .actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 940px) {
        .hero-arc-v3 .shell {
            grid-template-columns:1fr;
        }

        .hero-arc-v3 .stats {
            grid-template-columns:1fr;
        }
    }

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

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

    .about-struct-v6 h2, .about-struct-v6 h3, .about-struct-v6 p {
        margin: 0
    }

    .about-struct-v6 .split, .about-struct-v6 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v6 .split img, .about-struct-v6 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v6 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v6 .split div {
        display: grid;
        gap: .5rem
    }

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

    .about-struct-v6 article, .about-struct-v6 .values div, .about-struct-v6 .facts div, .about-struct-v6 .quote, .about-struct-v6 .statement {
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v6 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v6 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .about-struct-v6 .values, .about-struct-v6 .facts {
        display: grid;
        gap: .6rem
    }

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

    .about-struct-v6 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v6 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v6 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

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

    @media (max-width: 900px) {
        .about-struct-v6 .split, .about-struct-v6 .duo, .about-struct-v6 .cards, .about-struct-v6 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v6 .split, .about-struct-v6 .duo, .about-struct-v6 .cards, .about-struct-v6 .gallery {
            grid-template-columns:1fr
        }
    }

.capabilities-light-alt {

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

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

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

    }

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

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

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

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

        transform: translateY(30px);
    }

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

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

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

        }
    }

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

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

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

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

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

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

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

.why-choose-alt {

        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .why-choose-alt::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);

        animation: backgroundPulse 4s ease-in-out infinite;
    }

    @keyframes backgroundPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }

    .why-choose-alt .why-choose-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .why-choose-alt .why-choose-alt__h {
        color: var(--fg-on-surface-light);
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

    }

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

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

    .why-choose-alt .why-choose-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-alt .why-choose-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-light);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .why-choose-alt .why-choose-alt__item:hover {
        transform: translateX(8px);
        box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.15);
    }

    .why-choose-alt .why-choose-alt__item:hover::before {
        left: 100%;
    }

    .why-choose-alt .why-choose-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover .why-choose-alt__number {
        transform: rotate(360deg) scale(1.1);
    }

    .why-choose-alt .why-choose-alt__number::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: var(--radius-md);
        border: 2px solid var(--bg-accent);

        animation: numberPulse 2s ease-in-out infinite;
    }

    @keyframes numberPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

    .why-choose-alt .why-choose-alt__content {
        flex: 1;
    }

    .why-choose-alt .why-choose-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover h3 {
        color: var(--bg-accent);
    }

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

.site-header {
  background: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}
.logo:hover {
  color: var(--brand-contrast);
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 1.5);
}
.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-list a:hover {
  color: var(--accent);
}
.nav-list a:hover::after {
  width: 100%;
}
.cta-button {
  display: inline-block;
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
  background: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.4rem;
  gap: 4px;
  transition: background var(--anim-duration) var(--anim-ease);
}
.burger:hover {
  background: var(--btn-ghost-bg-hover);
}
.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all 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);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    flex-direction: column;
    padding: var(--space-y) var(--space-x);
    gap: calc(var(--gap) * 0.75);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
  }
  .cta {
    display: none;
  }
}
@media (min-width: 768px) {
  .cta {
    display: block;
  }
}

/* reset minimal */
    footer * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    footer {
      background-color: #1e2b3a;
      color: #e6edf3;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      padding: 2.5rem 1.5rem 1.8rem;
      line-height: 1.5;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem 3rem;
    }

    /* stânga – brand + copyright */
    .footer-brand {
      flex: 1 1 240px;
      min-width: 180px;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 0.6rem;
      text-transform: uppercase;
    }

    .copyright {
      font-size: 0.9rem;
      color: #b0c4d9;
      margin-top: 0.25rem;
    }

    /* dreapta – coloană verticală */
    .footer-right {
      flex: 2 1 360px;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      min-width: 220px;
    }

    /* navigare */
    .footer-nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.8rem;
      padding: 0;
    }

    .footer-nav a {
      color: #cfddee;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.2s ease;
      border-bottom: 1px solid transparent;
    }

    .footer-nav a:hover {
      color: #ffffff;
      border-bottom-color: #6a8caf;
    }

    /* legal (policy + terms) */
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.8rem;
    }

    .footer-legal a {
      color: #b8ccdf;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px dotted #4a627a;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-legal a:hover {
      color: #ffffff;
      border-bottom-color: #8aabca;
    }

    /* secțiune contact */
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      background: transparent;
      padding: 0;
      border: none;
    }

    .footer-contact p {
      font-size: 0.95rem;
      color: #d3e0ee;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.3rem;
    }

    .contact-label {
      font-weight: 600;
      color: #b6cbdf;
      min-width: 4.5rem;
    }

    .footer-contact a {
      color: #b8d0e8;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-contact a:hover {
      color: #ffffff;
      border-bottom-color: #7b9fc0;
    }

    /* disclemair */
    .footer-disclaimer {
      font-size: 0.85rem;
      color: #9bb0c7;
      line-height: 1.5;
      border-top: 1px solid #2f4053;
      padding-top: 0.9rem;
      margin-top: 0.2rem;
      max-width: 550px;
      font-style: italic;
    }

    /* adaptare mobil */
    @media (max-width: 640px) {
      footer {
        padding: 2rem 1rem 1.5rem;
      }

      .footer-container {
        flex-direction: column;
        gap: 1.8rem;
      }

      .footer-brand {
        text-align: center;
      }

      .footer-right {
        width: 100%;
      }

      .footer-nav ul {
        justify-content: center;
      }

      .footer-legal {
        justify-content: center;
      }

      .footer-contact {
        align-items: center;
        text-align: center;
      }

      .footer-contact p {
        justify-content: center;
      }

      .footer-disclaimer {
        text-align: center;
        max-width: 100%;
      }
    }

    /* ajustare ecrane medii */
    @media (min-width: 641px) and (max-width: 860px) {
      .footer-container {
        gap: 1.8rem;
      }
      .footer-right {
        flex: 1 1 300px;
      }
    }

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

.post-list {

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

    .post-list .post-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-list .post-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .post-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .post-list .post-list__categories {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .post-list .post-list__category {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-light);
        color: var(--fg-on-surface);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__category:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
    }

    .post-list .post-list__list {
        display: flex;
        flex-direction: column;
        gap: var(--space-x);
    }

    .post-list .post-list__item {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2vw, 24px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__item:hover {
        box-shadow: var(--shadow-md);
        transform: translateX(4px);
    }

    .post-list .post-list__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .post-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .post-list h3 a {
        text-decoration: none;
    }

    .post-list h3 a:hover {
        color: var(--bg-primary);
    }

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

.site-header {
  background: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}
.logo:hover {
  color: var(--brand-contrast);
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 1.5);
}
.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-list a:hover {
  color: var(--accent);
}
.nav-list a:hover::after {
  width: 100%;
}
.cta-button {
  display: inline-block;
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
  background: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.4rem;
  gap: 4px;
  transition: background var(--anim-duration) var(--anim-ease);
}
.burger:hover {
  background: var(--btn-ghost-bg-hover);
}
.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all 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);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    flex-direction: column;
    padding: var(--space-y) var(--space-x);
    gap: calc(var(--gap) * 0.75);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
  }
  .cta {
    display: none;
  }
}
@media (min-width: 768px) {
  .cta {
    display: block;
  }
}

/* reset minimal */
    footer * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    footer {
      background-color: #1e2b3a;
      color: #e6edf3;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      padding: 2.5rem 1.5rem 1.8rem;
      line-height: 1.5;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem 3rem;
    }

    /* stânga – brand + copyright */
    .footer-brand {
      flex: 1 1 240px;
      min-width: 180px;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 0.6rem;
      text-transform: uppercase;
    }

    .copyright {
      font-size: 0.9rem;
      color: #b0c4d9;
      margin-top: 0.25rem;
    }

    /* dreapta – coloană verticală */
    .footer-right {
      flex: 2 1 360px;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      min-width: 220px;
    }

    /* navigare */
    .footer-nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.8rem;
      padding: 0;
    }

    .footer-nav a {
      color: #cfddee;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.2s ease;
      border-bottom: 1px solid transparent;
    }

    .footer-nav a:hover {
      color: #ffffff;
      border-bottom-color: #6a8caf;
    }

    /* legal (policy + terms) */
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.8rem;
    }

    .footer-legal a {
      color: #b8ccdf;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px dotted #4a627a;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-legal a:hover {
      color: #ffffff;
      border-bottom-color: #8aabca;
    }

    /* secțiune contact */
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      background: transparent;
      padding: 0;
      border: none;
    }

    .footer-contact p {
      font-size: 0.95rem;
      color: #d3e0ee;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.3rem;
    }

    .contact-label {
      font-weight: 600;
      color: #b6cbdf;
      min-width: 4.5rem;
    }

    .footer-contact a {
      color: #b8d0e8;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-contact a:hover {
      color: #ffffff;
      border-bottom-color: #7b9fc0;
    }

    /* disclemair */
    .footer-disclaimer {
      font-size: 0.85rem;
      color: #9bb0c7;
      line-height: 1.5;
      border-top: 1px solid #2f4053;
      padding-top: 0.9rem;
      margin-top: 0.2rem;
      max-width: 550px;
      font-style: italic;
    }

    /* adaptare mobil */
    @media (max-width: 640px) {
      footer {
        padding: 2rem 1rem 1.5rem;
      }

      .footer-container {
        flex-direction: column;
        gap: 1.8rem;
      }

      .footer-brand {
        text-align: center;
      }

      .footer-right {
        width: 100%;
      }

      .footer-nav ul {
        justify-content: center;
      }

      .footer-legal {
        justify-content: center;
      }

      .footer-contact {
        align-items: center;
        text-align: center;
      }

      .footer-contact p {
        justify-content: center;
      }

      .footer-disclaimer {
        text-align: center;
        max-width: 100%;
      }
    }

    /* ajustare ecrane medii */
    @media (min-width: 641px) and (max-width: 860px) {
      .footer-container {
        gap: 1.8rem;
      }
      .footer-right {
        flex: 1 1 300px;
      }
    }

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

.post-item--colored-v5 {

    padding: 64px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.post-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.post-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.8);
    box-shadow: var(--shadow-lg);
}

.post-item__category {
    margin: 0 0 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--bg-accent);
}

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

.post-item__meta {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.post-item__lead {
    margin: 12px 0;
    font-size: 0.95rem;
    color: var(--neutral-100);
}

.post-item__body {
    font-size: 0.92rem;
    color: var(--neutral-200);
    line-height: 1.7;
}

.site-header {
  background: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}
.logo:hover {
  color: var(--brand-contrast);
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 1.5);
}
.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-list a:hover {
  color: var(--accent);
}
.nav-list a:hover::after {
  width: 100%;
}
.cta-button {
  display: inline-block;
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
  background: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.4rem;
  gap: 4px;
  transition: background var(--anim-duration) var(--anim-ease);
}
.burger:hover {
  background: var(--btn-ghost-bg-hover);
}
.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all 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);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    flex-direction: column;
    padding: var(--space-y) var(--space-x);
    gap: calc(var(--gap) * 0.75);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
  }
  .cta {
    display: none;
  }
}
@media (min-width: 768px) {
  .cta {
    display: block;
  }
}

/* reset minimal */
    footer * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    footer {
      background-color: #1e2b3a;
      color: #e6edf3;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      padding: 2.5rem 1.5rem 1.8rem;
      line-height: 1.5;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem 3rem;
    }

    /* stânga – brand + copyright */
    .footer-brand {
      flex: 1 1 240px;
      min-width: 180px;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 0.6rem;
      text-transform: uppercase;
    }

    .copyright {
      font-size: 0.9rem;
      color: #b0c4d9;
      margin-top: 0.25rem;
    }

    /* dreapta – coloană verticală */
    .footer-right {
      flex: 2 1 360px;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      min-width: 220px;
    }

    /* navigare */
    .footer-nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.8rem;
      padding: 0;
    }

    .footer-nav a {
      color: #cfddee;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.2s ease;
      border-bottom: 1px solid transparent;
    }

    .footer-nav a:hover {
      color: #ffffff;
      border-bottom-color: #6a8caf;
    }

    /* legal (policy + terms) */
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.8rem;
    }

    .footer-legal a {
      color: #b8ccdf;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px dotted #4a627a;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-legal a:hover {
      color: #ffffff;
      border-bottom-color: #8aabca;
    }

    /* secțiune contact */
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      background: transparent;
      padding: 0;
      border: none;
    }

    .footer-contact p {
      font-size: 0.95rem;
      color: #d3e0ee;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.3rem;
    }

    .contact-label {
      font-weight: 600;
      color: #b6cbdf;
      min-width: 4.5rem;
    }

    .footer-contact a {
      color: #b8d0e8;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-contact a:hover {
      color: #ffffff;
      border-bottom-color: #7b9fc0;
    }

    /* disclemair */
    .footer-disclaimer {
      font-size: 0.85rem;
      color: #9bb0c7;
      line-height: 1.5;
      border-top: 1px solid #2f4053;
      padding-top: 0.9rem;
      margin-top: 0.2rem;
      max-width: 550px;
      font-style: italic;
    }

    /* adaptare mobil */
    @media (max-width: 640px) {
      footer {
        padding: 2rem 1rem 1.5rem;
      }

      .footer-container {
        flex-direction: column;
        gap: 1.8rem;
      }

      .footer-brand {
        text-align: center;
      }

      .footer-right {
        width: 100%;
      }

      .footer-nav ul {
        justify-content: center;
      }

      .footer-legal {
        justify-content: center;
      }

      .footer-contact {
        align-items: center;
        text-align: center;
      }

      .footer-contact p {
        justify-content: center;
      }

      .footer-disclaimer {
        text-align: center;
        max-width: 100%;
      }
    }

    /* ajustare ecrane medii */
    @media (min-width: 641px) and (max-width: 860px) {
      .footer-container {
        gap: 1.8rem;
      }
      .footer-right {
        flex: 1 1 300px;
      }
    }

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

.post-item {

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

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--fg-on-page);
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--fg-on-page);
        color: var(--bg-page);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

.site-header {
  background: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}
.logo:hover {
  color: var(--brand-contrast);
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 1.5);
}
.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-list a:hover {
  color: var(--accent);
}
.nav-list a:hover::after {
  width: 100%;
}
.cta-button {
  display: inline-block;
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
  background: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.4rem;
  gap: 4px;
  transition: background var(--anim-duration) var(--anim-ease);
}
.burger:hover {
  background: var(--btn-ghost-bg-hover);
}
.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all 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);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    flex-direction: column;
    padding: var(--space-y) var(--space-x);
    gap: calc(var(--gap) * 0.75);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
  }
  .cta {
    display: none;
  }
}
@media (min-width: 768px) {
  .cta {
    display: block;
  }
}

/* reset minimal */
    footer * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    footer {
      background-color: #1e2b3a;
      color: #e6edf3;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      padding: 2.5rem 1.5rem 1.8rem;
      line-height: 1.5;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem 3rem;
    }

    /* stânga – brand + copyright */
    .footer-brand {
      flex: 1 1 240px;
      min-width: 180px;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 0.6rem;
      text-transform: uppercase;
    }

    .copyright {
      font-size: 0.9rem;
      color: #b0c4d9;
      margin-top: 0.25rem;
    }

    /* dreapta – coloană verticală */
    .footer-right {
      flex: 2 1 360px;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      min-width: 220px;
    }

    /* navigare */
    .footer-nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.8rem;
      padding: 0;
    }

    .footer-nav a {
      color: #cfddee;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.2s ease;
      border-bottom: 1px solid transparent;
    }

    .footer-nav a:hover {
      color: #ffffff;
      border-bottom-color: #6a8caf;
    }

    /* legal (policy + terms) */
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.8rem;
    }

    .footer-legal a {
      color: #b8ccdf;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px dotted #4a627a;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-legal a:hover {
      color: #ffffff;
      border-bottom-color: #8aabca;
    }

    /* secțiune contact */
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      background: transparent;
      padding: 0;
      border: none;
    }

    .footer-contact p {
      font-size: 0.95rem;
      color: #d3e0ee;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.3rem;
    }

    .contact-label {
      font-weight: 600;
      color: #b6cbdf;
      min-width: 4.5rem;
    }

    .footer-contact a {
      color: #b8d0e8;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-contact a:hover {
      color: #ffffff;
      border-bottom-color: #7b9fc0;
    }

    /* disclemair */
    .footer-disclaimer {
      font-size: 0.85rem;
      color: #9bb0c7;
      line-height: 1.5;
      border-top: 1px solid #2f4053;
      padding-top: 0.9rem;
      margin-top: 0.2rem;
      max-width: 550px;
      font-style: italic;
    }

    /* adaptare mobil */
    @media (max-width: 640px) {
      footer {
        padding: 2rem 1rem 1.5rem;
      }

      .footer-container {
        flex-direction: column;
        gap: 1.8rem;
      }

      .footer-brand {
        text-align: center;
      }

      .footer-right {
        width: 100%;
      }

      .footer-nav ul {
        justify-content: center;
      }

      .footer-legal {
        justify-content: center;
      }

      .footer-contact {
        align-items: center;
        text-align: center;
      }

      .footer-contact p {
        justify-content: center;
      }

      .footer-disclaimer {
        text-align: center;
        max-width: 100%;
      }
    }

    /* ajustare ecrane medii */
    @media (min-width: 641px) and (max-width: 860px) {
      .footer-container {
        gap: 1.8rem;
      }
      .footer-right {
        flex: 1 1 300px;
      }
    }

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

.article-list--light-v6 {

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

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

.article-list__title {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
}

.article-list__list {
    display: grid;
    gap: 12px;
}

.article-list__row {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid var(--border-on-surface-light);
}

.article-list__row h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.article-list__row p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.faq-fresh-v4 {
        padding: calc(var(--space-y) * 2.7) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .faq-fresh-v4 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap);
    }

    .faq-fresh-v4 .cover {
        padding: 1.1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        align-self: start;
    }

    .faq-fresh-v4 .cover h2 {
        margin: 0 0 .5rem;
    }

    .faq-fresh-v4 .cover p {
        margin: 0;
        opacity: .9;
    }

    .faq-fresh-v4 .rows {
        display: grid;
        gap: .75rem;
    }

    .faq-fresh-v4 details {
        padding: .85rem 1rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

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

    .faq-fresh-v4 details p {
        margin: .65rem 0 0;
        opacity: .9;
    }

    @media (max-width: 860px) {
        .faq-fresh-v4 .shell {
            grid-template-columns:1fr;
        }
    }

.site-header {
  background: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}
.logo:hover {
  color: var(--brand-contrast);
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 1.5);
}
.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-list a:hover {
  color: var(--accent);
}
.nav-list a:hover::after {
  width: 100%;
}
.cta-button {
  display: inline-block;
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
  background: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.4rem;
  gap: 4px;
  transition: background var(--anim-duration) var(--anim-ease);
}
.burger:hover {
  background: var(--btn-ghost-bg-hover);
}
.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all 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);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    flex-direction: column;
    padding: var(--space-y) var(--space-x);
    gap: calc(var(--gap) * 0.75);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
  }
  .cta {
    display: none;
  }
}
@media (min-width: 768px) {
  .cta {
    display: block;
  }
}

/* reset minimal */
    footer * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    footer {
      background-color: #1e2b3a;
      color: #e6edf3;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      padding: 2.5rem 1.5rem 1.8rem;
      line-height: 1.5;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem 3rem;
    }

    /* stânga – brand + copyright */
    .footer-brand {
      flex: 1 1 240px;
      min-width: 180px;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 0.6rem;
      text-transform: uppercase;
    }

    .copyright {
      font-size: 0.9rem;
      color: #b0c4d9;
      margin-top: 0.25rem;
    }

    /* dreapta – coloană verticală */
    .footer-right {
      flex: 2 1 360px;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      min-width: 220px;
    }

    /* navigare */
    .footer-nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.8rem;
      padding: 0;
    }

    .footer-nav a {
      color: #cfddee;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.2s ease;
      border-bottom: 1px solid transparent;
    }

    .footer-nav a:hover {
      color: #ffffff;
      border-bottom-color: #6a8caf;
    }

    /* legal (policy + terms) */
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.8rem;
    }

    .footer-legal a {
      color: #b8ccdf;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px dotted #4a627a;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-legal a:hover {
      color: #ffffff;
      border-bottom-color: #8aabca;
    }

    /* secțiune contact */
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      background: transparent;
      padding: 0;
      border: none;
    }

    .footer-contact p {
      font-size: 0.95rem;
      color: #d3e0ee;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.3rem;
    }

    .contact-label {
      font-weight: 600;
      color: #b6cbdf;
      min-width: 4.5rem;
    }

    .footer-contact a {
      color: #b8d0e8;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-contact a:hover {
      color: #ffffff;
      border-bottom-color: #7b9fc0;
    }

    /* disclemair */
    .footer-disclaimer {
      font-size: 0.85rem;
      color: #9bb0c7;
      line-height: 1.5;
      border-top: 1px solid #2f4053;
      padding-top: 0.9rem;
      margin-top: 0.2rem;
      max-width: 550px;
      font-style: italic;
    }

    /* adaptare mobil */
    @media (max-width: 640px) {
      footer {
        padding: 2rem 1rem 1.5rem;
      }

      .footer-container {
        flex-direction: column;
        gap: 1.8rem;
      }

      .footer-brand {
        text-align: center;
      }

      .footer-right {
        width: 100%;
      }

      .footer-nav ul {
        justify-content: center;
      }

      .footer-legal {
        justify-content: center;
      }

      .footer-contact {
        align-items: center;
        text-align: center;
      }

      .footer-contact p {
        justify-content: center;
      }

      .footer-disclaimer {
        text-align: center;
        max-width: 100%;
      }
    }

    /* ajustare ecrane medii */
    @media (min-width: 641px) and (max-width: 860px) {
      .footer-container {
        gap: 1.8rem;
      }
      .footer-right {
        flex: 1 1 300px;
      }
    }

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

.nfform-v7 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nfform-v7__form {
        max-width: 760px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v7 p {
        margin: 0 0 2px;
        opacity: .92;
    }

    .nfform-v7 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v7 input:not([type='checkbox']),
    .nfform-v7 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v7__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nfform-v7 button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

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

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

    .support-ux9__head {
        margin-bottom: 14px;
    }

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

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

    .support-ux9__grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    }

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

    .support-ux9__grid h3 {
        margin: 0 0 6px;
    }

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

    .support-ux9__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 900px) {
        .support-ux9__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .support-ux9__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  background: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}
.logo:hover {
  color: var(--brand-contrast);
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 1.5);
}
.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-list a:hover {
  color: var(--accent);
}
.nav-list a:hover::after {
  width: 100%;
}
.cta-button {
  display: inline-block;
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
  background: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.4rem;
  gap: 4px;
  transition: background var(--anim-duration) var(--anim-ease);
}
.burger:hover {
  background: var(--btn-ghost-bg-hover);
}
.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all 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);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    flex-direction: column;
    padding: var(--space-y) var(--space-x);
    gap: calc(var(--gap) * 0.75);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
  }
  .cta {
    display: none;
  }
}
@media (min-width: 768px) {
  .cta {
    display: block;
  }
}

/* reset minimal */
    footer * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    footer {
      background-color: #1e2b3a;
      color: #e6edf3;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      padding: 2.5rem 1.5rem 1.8rem;
      line-height: 1.5;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem 3rem;
    }

    /* stânga – brand + copyright */
    .footer-brand {
      flex: 1 1 240px;
      min-width: 180px;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 0.6rem;
      text-transform: uppercase;
    }

    .copyright {
      font-size: 0.9rem;
      color: #b0c4d9;
      margin-top: 0.25rem;
    }

    /* dreapta – coloană verticală */
    .footer-right {
      flex: 2 1 360px;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      min-width: 220px;
    }

    /* navigare */
    .footer-nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.8rem;
      padding: 0;
    }

    .footer-nav a {
      color: #cfddee;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.2s ease;
      border-bottom: 1px solid transparent;
    }

    .footer-nav a:hover {
      color: #ffffff;
      border-bottom-color: #6a8caf;
    }

    /* legal (policy + terms) */
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.8rem;
    }

    .footer-legal a {
      color: #b8ccdf;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px dotted #4a627a;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-legal a:hover {
      color: #ffffff;
      border-bottom-color: #8aabca;
    }

    /* secțiune contact */
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      background: transparent;
      padding: 0;
      border: none;
    }

    .footer-contact p {
      font-size: 0.95rem;
      color: #d3e0ee;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.3rem;
    }

    .contact-label {
      font-weight: 600;
      color: #b6cbdf;
      min-width: 4.5rem;
    }

    .footer-contact a {
      color: #b8d0e8;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-contact a:hover {
      color: #ffffff;
      border-bottom-color: #7b9fc0;
    }

    /* disclemair */
    .footer-disclaimer {
      font-size: 0.85rem;
      color: #9bb0c7;
      line-height: 1.5;
      border-top: 1px solid #2f4053;
      padding-top: 0.9rem;
      margin-top: 0.2rem;
      max-width: 550px;
      font-style: italic;
    }

    /* adaptare mobil */
    @media (max-width: 640px) {
      footer {
        padding: 2rem 1rem 1.5rem;
      }

      .footer-container {
        flex-direction: column;
        gap: 1.8rem;
      }

      .footer-brand {
        text-align: center;
      }

      .footer-right {
        width: 100%;
      }

      .footer-nav ul {
        justify-content: center;
      }

      .footer-legal {
        justify-content: center;
      }

      .footer-contact {
        align-items: center;
        text-align: center;
      }

      .footer-contact p {
        justify-content: center;
      }

      .footer-disclaimer {
        text-align: center;
        max-width: 100%;
      }
    }

    /* ajustare ecrane medii */
    @media (min-width: 641px) and (max-width: 860px) {
      .footer-container {
        gap: 1.8rem;
      }
      .footer-right {
        flex: 1 1 300px;
      }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  background: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}
.logo:hover {
  color: var(--brand-contrast);
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 1.5);
}
.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-list a:hover {
  color: var(--accent);
}
.nav-list a:hover::after {
  width: 100%;
}
.cta-button {
  display: inline-block;
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
  background: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.4rem;
  gap: 4px;
  transition: background var(--anim-duration) var(--anim-ease);
}
.burger:hover {
  background: var(--btn-ghost-bg-hover);
}
.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all 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);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    flex-direction: column;
    padding: var(--space-y) var(--space-x);
    gap: calc(var(--gap) * 0.75);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
  }
  .cta {
    display: none;
  }
}
@media (min-width: 768px) {
  .cta {
    display: block;
  }
}

/* reset minimal */
    footer * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    footer {
      background-color: #1e2b3a;
      color: #e6edf3;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      padding: 2.5rem 1.5rem 1.8rem;
      line-height: 1.5;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem 3rem;
    }

    /* stânga – brand + copyright */
    .footer-brand {
      flex: 1 1 240px;
      min-width: 180px;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 0.6rem;
      text-transform: uppercase;
    }

    .copyright {
      font-size: 0.9rem;
      color: #b0c4d9;
      margin-top: 0.25rem;
    }

    /* dreapta – coloană verticală */
    .footer-right {
      flex: 2 1 360px;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      min-width: 220px;
    }

    /* navigare */
    .footer-nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.8rem;
      padding: 0;
    }

    .footer-nav a {
      color: #cfddee;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.2s ease;
      border-bottom: 1px solid transparent;
    }

    .footer-nav a:hover {
      color: #ffffff;
      border-bottom-color: #6a8caf;
    }

    /* legal (policy + terms) */
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.8rem;
    }

    .footer-legal a {
      color: #b8ccdf;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px dotted #4a627a;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-legal a:hover {
      color: #ffffff;
      border-bottom-color: #8aabca;
    }

    /* secțiune contact */
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      background: transparent;
      padding: 0;
      border: none;
    }

    .footer-contact p {
      font-size: 0.95rem;
      color: #d3e0ee;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.3rem;
    }

    .contact-label {
      font-weight: 600;
      color: #b6cbdf;
      min-width: 4.5rem;
    }

    .footer-contact a {
      color: #b8d0e8;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-contact a:hover {
      color: #ffffff;
      border-bottom-color: #7b9fc0;
    }

    /* disclemair */
    .footer-disclaimer {
      font-size: 0.85rem;
      color: #9bb0c7;
      line-height: 1.5;
      border-top: 1px solid #2f4053;
      padding-top: 0.9rem;
      margin-top: 0.2rem;
      max-width: 550px;
      font-style: italic;
    }

    /* adaptare mobil */
    @media (max-width: 640px) {
      footer {
        padding: 2rem 1rem 1.5rem;
      }

      .footer-container {
        flex-direction: column;
        gap: 1.8rem;
      }

      .footer-brand {
        text-align: center;
      }

      .footer-right {
        width: 100%;
      }

      .footer-nav ul {
        justify-content: center;
      }

      .footer-legal {
        justify-content: center;
      }

      .footer-contact {
        align-items: center;
        text-align: center;
      }

      .footer-contact p {
        justify-content: center;
      }

      .footer-disclaimer {
        text-align: center;
        max-width: 100%;
      }
    }

    /* ajustare ecrane medii */
    @media (min-width: 641px) and (max-width: 860px) {
      .footer-container {
        gap: 1.8rem;
      }
      .footer-right {
        flex: 1 1 300px;
      }
    }

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

.site-header {
  background: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}
.logo:hover {
  color: var(--brand-contrast);
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 1.5);
}
.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-list a:hover {
  color: var(--accent);
}
.nav-list a:hover::after {
  width: 100%;
}
.cta-button {
  display: inline-block;
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
  background: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.4rem;
  gap: 4px;
  transition: background var(--anim-duration) var(--anim-ease);
}
.burger:hover {
  background: var(--btn-ghost-bg-hover);
}
.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all 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);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    flex-direction: column;
    padding: var(--space-y) var(--space-x);
    gap: calc(var(--gap) * 0.75);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
  }
  .cta {
    display: none;
  }
}
@media (min-width: 768px) {
  .cta {
    display: block;
  }
}

/* reset minimal */
    footer * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    footer {
      background-color: #1e2b3a;
      color: #e6edf3;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      padding: 2.5rem 1.5rem 1.8rem;
      line-height: 1.5;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem 3rem;
    }

    /* stânga – brand + copyright */
    .footer-brand {
      flex: 1 1 240px;
      min-width: 180px;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 0.6rem;
      text-transform: uppercase;
    }

    .copyright {
      font-size: 0.9rem;
      color: #b0c4d9;
      margin-top: 0.25rem;
    }

    /* dreapta – coloană verticală */
    .footer-right {
      flex: 2 1 360px;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      min-width: 220px;
    }

    /* navigare */
    .footer-nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.8rem;
      padding: 0;
    }

    .footer-nav a {
      color: #cfddee;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.2s ease;
      border-bottom: 1px solid transparent;
    }

    .footer-nav a:hover {
      color: #ffffff;
      border-bottom-color: #6a8caf;
    }

    /* legal (policy + terms) */
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.8rem;
    }

    .footer-legal a {
      color: #b8ccdf;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px dotted #4a627a;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-legal a:hover {
      color: #ffffff;
      border-bottom-color: #8aabca;
    }

    /* secțiune contact */
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      background: transparent;
      padding: 0;
      border: none;
    }

    .footer-contact p {
      font-size: 0.95rem;
      color: #d3e0ee;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.3rem;
    }

    .contact-label {
      font-weight: 600;
      color: #b6cbdf;
      min-width: 4.5rem;
    }

    .footer-contact a {
      color: #b8d0e8;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-contact a:hover {
      color: #ffffff;
      border-bottom-color: #7b9fc0;
    }

    /* disclemair */
    .footer-disclaimer {
      font-size: 0.85rem;
      color: #9bb0c7;
      line-height: 1.5;
      border-top: 1px solid #2f4053;
      padding-top: 0.9rem;
      margin-top: 0.2rem;
      max-width: 550px;
      font-style: italic;
    }

    /* adaptare mobil */
    @media (max-width: 640px) {
      footer {
        padding: 2rem 1rem 1.5rem;
      }

      .footer-container {
        flex-direction: column;
        gap: 1.8rem;
      }

      .footer-brand {
        text-align: center;
      }

      .footer-right {
        width: 100%;
      }

      .footer-nav ul {
        justify-content: center;
      }

      .footer-legal {
        justify-content: center;
      }

      .footer-contact {
        align-items: center;
        text-align: center;
      }

      .footer-contact p {
        justify-content: center;
      }

      .footer-disclaimer {
        text-align: center;
        max-width: 100%;
      }
    }

    /* ajustare ecrane medii */
    @media (min-width: 641px) and (max-width: 860px) {
      .footer-container {
        gap: 1.8rem;
      }
      .footer-right {
        flex: 1 1 300px;
      }
    }

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

.site-header {
  background: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}
.logo:hover {
  color: var(--brand-contrast);
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 1.5);
}
.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-list a:hover {
  color: var(--accent);
}
.nav-list a:hover::after {
  width: 100%;
}
.cta-button {
  display: inline-block;
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
  background: var(--bg-primary-hover);
  box-shadow: var(--shadow-md);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.4rem;
  gap: 4px;
  transition: background var(--anim-duration) var(--anim-ease);
}
.burger:hover {
  background: var(--btn-ghost-bg-hover);
}
.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all 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);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    flex-direction: column;
    padding: var(--space-y) var(--space-x);
    gap: calc(var(--gap) * 0.75);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
  }
  .cta {
    display: none;
  }
}
@media (min-width: 768px) {
  .cta {
    display: block;
  }
}

/* reset minimal */
    footer * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    footer {
      background-color: #1e2b3a;
      color: #e6edf3;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      padding: 2.5rem 1.5rem 1.8rem;
      line-height: 1.5;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem 3rem;
    }

    /* stânga – brand + copyright */
    .footer-brand {
      flex: 1 1 240px;
      min-width: 180px;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 0.6rem;
      text-transform: uppercase;
    }

    .copyright {
      font-size: 0.9rem;
      color: #b0c4d9;
      margin-top: 0.25rem;
    }

    /* dreapta – coloană verticală */
    .footer-right {
      flex: 2 1 360px;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      min-width: 220px;
    }

    /* navigare */
    .footer-nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.8rem;
      padding: 0;
    }

    .footer-nav a {
      color: #cfddee;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.2s ease;
      border-bottom: 1px solid transparent;
    }

    .footer-nav a:hover {
      color: #ffffff;
      border-bottom-color: #6a8caf;
    }

    /* legal (policy + terms) */
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.8rem;
    }

    .footer-legal a {
      color: #b8ccdf;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px dotted #4a627a;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-legal a:hover {
      color: #ffffff;
      border-bottom-color: #8aabca;
    }

    /* secțiune contact */
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      background: transparent;
      padding: 0;
      border: none;
    }

    .footer-contact p {
      font-size: 0.95rem;
      color: #d3e0ee;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.3rem;
    }

    .contact-label {
      font-weight: 600;
      color: #b6cbdf;
      min-width: 4.5rem;
    }

    .footer-contact a {
      color: #b8d0e8;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .footer-contact a:hover {
      color: #ffffff;
      border-bottom-color: #7b9fc0;
    }

    /* disclemair */
    .footer-disclaimer {
      font-size: 0.85rem;
      color: #9bb0c7;
      line-height: 1.5;
      border-top: 1px solid #2f4053;
      padding-top: 0.9rem;
      margin-top: 0.2rem;
      max-width: 550px;
      font-style: italic;
    }

    /* adaptare mobil */
    @media (max-width: 640px) {
      footer {
        padding: 2rem 1rem 1.5rem;
      }

      .footer-container {
        flex-direction: column;
        gap: 1.8rem;
      }

      .footer-brand {
        text-align: center;
      }

      .footer-right {
        width: 100%;
      }

      .footer-nav ul {
        justify-content: center;
      }

      .footer-legal {
        justify-content: center;
      }

      .footer-contact {
        align-items: center;
        text-align: center;
      }

      .footer-contact p {
        justify-content: center;
      }

      .footer-disclaimer {
        text-align: center;
        max-width: 100%;
      }
    }

    /* ajustare ecrane medii */
    @media (min-width: 641px) and (max-width: 860px) {
      .footer-container {
        gap: 1.8rem;
      }
      .footer-right {
        flex: 1 1 300px;
      }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .nf404-v10 a {
        display: inline-block;
        margin-top: 18px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }