    /* ─── Design tokens Obsitron ─────────────────────────── */
    :root {
      --ink:        #0d0d12;
      --plum:       #1e1030;
      --gold:       #c9a84c;
      --gold-light: #e2c97e;
      --fog:        #a0a0b0;
      --white:      #f4f4f6;
      --ff-display: 'Cormorant Garamond', Georgia, serif;
      --ff-body:    'Inter', system-ui, sans-serif;
      --nav-h:      100px;
    }

    /* ─── Reset minim ────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background: var(--ink);
      color: var(--white);
      font-family: var(--ff-body);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── NAV ────────────────────────────────────────────── */
    .obs-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 9000;
      height: var(--nav-h);
      background: rgba(13, 13, 18, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201, 168, 76, 0.15);
      transition: transform 0.35s ease;
    }
    .obs-nav.nav-hidden {
      transform: translateY(-100%);
    }

    .obs-nav__inner {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo */
    .obs-nav__logo {
      font-family: var(--ff-display);
      font-size: 2.2rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--white);
      text-decoration: none;
      text-transform: uppercase;
      line-height: 1;
    }
    .obs-nav__logo span { color: var(--gold); }

    /* Links desktop */
    .obs-nav__links {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }

    .obs-nav__links a {
      font-family: var(--ff-body);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--fog);
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 4px;
      transition: color 0.2s, background 0.2s;
    }
    .obs-nav__links a:hover,
    .obs-nav__links li.active > a {
      color: var(--white);
      background: rgba(201, 168, 76, 0.08);
    }
    .obs-nav__links li.active > a {
      color: var(--gold);
    }

    /* Dropdown Servicii */
    .obs-nav__dropdown {
      position: relative;
    }
    .obs-nav__dropdown > a {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .obs-nav__dropdown > a::after {
      content: '';
      width: 0; height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid var(--fog);
      transition: transform 0.2s, border-top-color 0.2s;
      flex-shrink: 0;
    }
    .obs-nav__dropdown:hover > a::after {
      border-top-color: var(--gold);
      transform: rotate(180deg);
    }

    .obs-nav__submenu {
      display: none;
      position: absolute;
      top: calc(100% + 12px);
      left: 0;
      min-width: 230px;
      background: #16111f;
      border: 1px solid rgba(201, 168, 76, 0.2);
      border-radius: 8px;
      padding: 8px 0;
      box-shadow: 0 16px 40px rgba(0,0,0,0.5);
      list-style: none;
    }
    .obs-nav__dropdown:hover .obs-nav__submenu,
    .obs-nav__dropdown:focus-within .obs-nav__submenu {
      display: block;
    }
    .obs-nav__submenu li a {
      display: block;
      padding: 10px 20px;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      color: var(--fog);
      text-transform: uppercase;
      border-radius: 0;
      background: transparent;
    }
    .obs-nav__submenu li a:hover {
      color: var(--gold);
      background: rgba(201, 168, 76, 0.06);
    }
    /* Badge "în curând" */
    .obs-nav__submenu .badge-soon {
      display: inline-block;
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      color: var(--gold);
      border: 1px solid rgba(201, 168, 76, 0.4);
      border-radius: 3px;
      padding: 1px 5px;
      margin-left: 8px;
      vertical-align: middle;
      text-transform: uppercase;
    }

    /* CTA button */
    .obs-nav__cta {
      font-family: var(--ff-body);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink) !important;
      background: var(--gold);
      padding: 9px 20px !important;
      border-radius: 4px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .obs-nav__cta:hover {
      background: var(--gold-light) !important;
      color: var(--ink) !important;
    }

    /* ─── HAMBURGER (mobile) ─────────────────────────────── */
    .obs-nav__hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .obs-nav__hamburger span {
      display: block;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s, width 0.3s;
      width: 100%;
    }
    .obs-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .obs-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
    .obs-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ─── MOBILE MENU ────────────────────────────────────── */
    .obs-nav__mobile {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: #0d0d12;
      border-top: 1px solid rgba(201, 168, 76, 0.15);
      padding: 20px 24px 32px;
      z-index: 8999;
      flex-direction: column;
      gap: 4px;
    }
    .obs-nav__mobile.is-open { display: flex; }

    .obs-nav__mobile a {
      display: block;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--fog);
      text-decoration: none;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.2s;
    }
    .obs-nav__mobile a:hover,
    .obs-nav__mobile a.active { color: var(--gold); }

    .obs-nav__mobile .mob-sub {
      padding-left: 16px;
    }
    .obs-nav__mobile .mob-sub a {
      font-size: 0.82rem;
      color: var(--fog);
      opacity: 0.8;
    }

    .obs-nav__mobile .mob-cta {
      margin-top: 20px;
      display: inline-block;
      background: var(--gold);
      color: var(--ink) !important;
      text-align: center;
      padding: 13px 24px;
      border-radius: 4px;
      font-weight: 600;
      border-bottom: none;
    }
    .obs-nav__mobile .mob-cta:hover {
      background: var(--gold-light);
      color: var(--ink) !important;
    }

    /* ─── Spacer sub nav fix ─────────────────────────────── */
    .obs-nav-spacer { height: var(--nav-h); }

    /* ─── FOOTER ─────────────────────────────────────────── */
    .obs-footer {
      background: #08080c;
      border-top: 1px solid rgba(201, 168, 76, 0.12);
      padding: 60px 24px 32px;
      margin-top: 80px;
    }
    .obs-footer__inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
    }
    .obs-footer__brand .logo {
      font-family: var(--ff-display);
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      display: inline-block;
      margin-bottom: 14px;
    }
    .obs-footer__brand .logo span { color: var(--gold); }
    .obs-footer__brand p {
      font-size: 0.88rem;
      color: var(--fog);
      line-height: 1.65;
      max-width: 320px;
    }

    .obs-footer__col h4 {
      font-family: var(--ff-body);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .obs-footer__col ul { list-style: none; }
    .obs-footer__col ul li { margin-bottom: 10px; }
    .obs-footer__col ul li a {
      font-size: 0.88rem;
      color: var(--fog);
      text-decoration: none;
      transition: color 0.2s;
    }
    .obs-footer__col ul li a:hover { color: var(--white); }

    .obs-footer__bottom {
      max-width: 1200px;
      margin: 48px auto 0;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
    }

    .obs-footer__bottom p {
      font-size: 0.78rem;
      color: var(--fog);
      opacity: 0.85;
    }
    .obs-footer__bottom a {
      font-size: 0.78rem;
      color: var(--fog);
      opacity: 0.85;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .obs-footer__bottom a:hover { opacity: 1; }

    /* ─── Responsive ─────────────────────────────────────── */
    @media (max-width: 768px) {
      .obs-nav__links { display: none; }
      .obs-nav__hamburger { display: flex; }

      .obs-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .obs-footer__bottom {
        flex-direction: column;
        text-align: center;
      }
    }
