
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --wo-blue: #2563eb;
    --wo-blue-dk: #1d4ed8;
    --wo-white: #ffffff;
    --wo-dark: #0d1117;
    --wo-nav-bg: rgba(10, 14, 26, 0.96);
    --wo-border: rgba(255, 255, 255, 0.08);
    --wo-text-m: #a0aec0;
    --wo-text-s: #cbd5e1;
    --wo-drop-bg: #111827;
  }


  /* ═══════════════════════════════
       TOPBAR
    ═══════════════════════════════ */
  .websorbit-topbar {
    background: var(--wo-blue);
    text-align: center;
    padding: 7px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    letter-spacing: .02em;
  }

  .websorbit-topbar span {
    opacity: .85;
  }

  .websorbit-topbar a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 6px;
  }

  /* ═══════════════════════════════
       HEADER
    ═══════════════════════════════ */
  .websorbit-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--wo-nav-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--wo-border);
    transition: background .3s;
  }

  .websorbit-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 28px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 0;
  }

  /* ── LOGO ── */
  .websorbit-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 36px;
  }

  .websorbit-logo img {
    height: 50px;
    width: auto;
  }

  /* ── DESKTOP NAV ── */
  .websorbit-desktop-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
    flex: 1;
    margin-bottom: 0;
    justify-content: center;
  }

  .websorbit-nav-item {
    position: relative;
  }

  .websorbit-nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    color: var(--wo-text-s);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: color .2s, background .2s;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border: none;
  }

  .websorbit-nav-link:hover,
  .websorbit-nav-item:hover>.websorbit-nav-link {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  .websorbit-arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
  }

  .websorbit-arrow::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 3px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .25s;
  }

  .websorbit-nav-item:hover>.websorbit-nav-link .websorbit-arrow::after {
    transform: rotate(-135deg);
    top: 7px;
  }

  /* ── STANDARD DROPDOWN ── */
  .websorbit-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 230px;
    background: var(--wo-drop-bg);
    border: 1px solid var(--wo-border);
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .22s, transform .22s, visibility .22s;
    pointer-events: none;
  }

  .websorbit-nav-item:hover>.websorbit-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }

  /* ── SERVICES MEGA DROPDOWN (full width) ── */
  .websorbit-services-mega {
    position: fixed;
    top: auto;
    left: 0;
    width: 100%;
    background: var(--wo-drop-bg);
    border-top: 1px solid var(--wo-border);
    border-bottom: 1px solid var(--wo-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s, transform .25s, visibility .25s;
    pointer-events: none;
    z-index: 9998;
  }

  .websorbit-nav-item:hover>.websorbit-services-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }

  .websorbit-mega-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 280px;
    gap: 0 24px;
  }

  .websorbit-mega-col {
    padding: 0 12px;
    border-right: 1px solid var(--wo-border);
  }

  .websorbit-mega-col:last-child {
    border-right: none;
  }

  .websorbit-mega-col-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--wo-blue);
    letter-spacing: .09em;
    padding: 0 0 12px 0;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(37, 99, 235, .2);
  }

  .websorbit-mega-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 8px;
    color: var(--wo-text-s);
    font-size: 13.5px;
    text-decoration: none;
    border-radius: 8px;
    transition: background .18s, color .18s;
    margin-bottom: 2px;
  }

  .websorbit-mega-link:hover {
    background: rgba(37, 99, 235, .1);
    color: #fff;
  }

  .websorbit-mega-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(37, 99, 235, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: background .18s;
  }

  .websorbit-mega-link:hover .websorbit-mega-icon {
    background: var(--wo-blue);
  }

  .websorbit-mega-text {}

  .websorbit-mega-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--wo-white);
    margin-bottom: 2px;
  }

  .websorbit-mega-text span {
    display: block;
    font-size: 12px;
    color: var(--wo-text-m);
    line-height: 1.5;
  }

  /* Featured CTA panel (4th column) */
  .websorbit-mega-featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, .18) 0%, rgba(29, 78, 216, .08) 100%);
    border: 1px solid rgba(37, 99, 235, .25);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
  }

  .websorbit-feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, .25);
    border: 1px solid rgba(37, 99, 235, .4);
    color: #93c5fd;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 4px;
  }

  .websorbit-feat-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .websorbit-feat-desc {
    font-size: 13px;
    color: var(--wo-text-m);
    line-height: 1.6;
  }

  .websorbit-feat-prices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
  }

  .websorbit-feat-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--wo-border);
    border-radius: 7px;
    padding: 8px 12px;
  }

  .websorbit-feat-price-item .wo-plan {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--wo-text-s);
  }

  .websorbit-feat-price-item .wo-price {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
  }

  .websorbit-feat-cta {
    cursor: pointer;
    display: block;
    text-align: center;
    background: var(--wo-blue);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    margin-top: 4px;
  }

  .websorbit-feat-cta:hover {
    background: white;
    transform: translateY(-1px);
  }

  /* ── SIMPLE DROPDOWN LINKS ── */
  .websorbit-drop-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    color: var(--wo-text-s);
    font-size: 13.5px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 6px;
    transition: background .18s, color .18s;
  }

  .websorbit-drop-link:hover {
    background: rgba(37, 99, 235, .12);
    color: #fff;
  }

  .websorbit-drop-link .websorbit-di {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(37, 99, 235, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }

  .websorbit-drop-link:hover .websorbit-di {
    background: var(--wo-blue);
  }

  /* dropdown section title */
  .websorbit-dropdown-section-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--wo-blue);
    letter-spacing: .08em;
    padding: 8px 12px 4px;
  }

  /* ── NAV RIGHT ── */
  .websorbit-nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  .websorbit-btn-contact {
    padding: 9px 20px;
    border-radius: 7px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: var(--wo-blue);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
  }

  .websorbit-btn-contact:hover {
    background: white;
    transform: translateY(-1px);
  }

  .websorbit-btn-quote {
    cursor: pointer;
    padding: 9px 20px;
    border-radius: 7px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    color: var(--wo-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: border-color .2s, background .2s;
    white-space: nowrap;
  }

  .websorbit-btn-quote:hover {
    border-color: var(--wo-blue);
    background: rgba(37, 99, 235, .1);
  }

  /* ═══════════════════════════════
       HAMBURGER
    ═══════════════════════════════ */
  .websorbit-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
    padding: 6px;
    background: none;
    border: none;
  }

  .websorbit-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }

  .websorbit-hamburger.websorbit-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .websorbit-hamburger.websorbit-open span:nth-child(2) {
    opacity: 0;
  }

  .websorbit-hamburger.websorbit-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ═══════════════════════════════
       MOBILE DRAWER
    ═══════════════════════════════ */
  .websorbit-mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0d1117;
    z-index: 9998;
    overflow-y: auto;
    padding: 84px 24px 40px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  }

  .websorbit-mobile-drawer.websorbit-open {
    transform: translateX(0);
  }

  .websorbit-mob-nav {
    list-style: none;
  }

  .websorbit-mob-item {
    border-bottom: 1px solid var(--wo-border);
  }

  .websorbit-mob-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
  }

  .websorbit-mob-arrow {
    font-size: 20px;
    transition: transform .3s;
  }

  .websorbit-mob-item.websorbit-open .websorbit-mob-arrow {
    transform: rotate(180deg);
  }

  .websorbit-mob-sub {
    list-style: none;
    display: none;
    padding: 4px 0 12px 16px;
  }

  .websorbit-mob-item.websorbit-open .websorbit-mob-sub {
    display: block;
  }

  .websorbit-mob-sub a {
    display: block;
    padding: 9px 8px;
    color: var(--wo-text-m);
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
    transition: color .2s, background .2s;
  }

  .websorbit-mob-sub a:hover {
    color: #fff;
    background: rgba(37, 99, 235, .12);
  }

  .websorbit-mob-sub-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--wo-blue);
    letter-spacing: .08em;
    padding: 10px 8px 4px;
    display: block;
  }

  .websorbit-mob-cta {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .websorbit-mob-cta a {
    display: block;
    padding: 13px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
  }

  .websorbit-mob-cta .websorbit-mc1 {
    background: var(--wo-blue);
    color: #fff;
  }

  .websorbit-mob-cta .websorbit-mc1:hover {
    background: var(--wo-blue-dk);
  }

  .websorbit-mob-cta .websorbit-mc2 {
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
  }

  .websorbit-mob-cta .websorbit-mc2:hover {
    border-color: var(--wo-blue);
  }

  /* ═══════════════════════════════
       RESPONSIVE
    ═══════════════════════════════ */
  @media (max-width: 1024px) {

    .websorbit-desktop-nav,
    .websorbit-btn-quote {
      display: none;
    }

    .websorbit-hamburger {
      display: flex;
    }

    .websorbit-mobile-drawer {
      display: block;
    }

    .websorbit-nav-right .websorbit-btn-contact {
      display: none;
    }
  }

  @media (max-width: 900px) {
    .websorbit-mega-inner {
      grid-template-columns: 1fr 1fr;
    }

    .websorbit-mega-featured {
      display: none;
    }
  }

  /* ── DEMO HERO ── */
  .demo-hero {
    max-width: 700px;
    margin: 160px auto 0;
    padding: 0 24px;
    text-align: center;
  }

  .demo-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .demo-hero h1 span {
    color: var(--wo-blue);
  }

  .demo-hero p {
    color: var(--wo-text-m);
    font-size: 16px;
    line-height: 1.7;
  }


  .websorbit-mobile-drawer .websorbit-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background .2s;
  }

  .websorbit-mobile-drawer .websorbit-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  @media only screen and (max-width:500px) {

    .websorbit-mobile-drawer {
      padding: 3rem 1rem 0;
    }

    .websorbit-mob-link {
      font-size: 14px;
    }

    .websorbit-nav-inner {
      padding: 0 1rem;
    }
    .websorbit-mob-sub{
      padding: 4px 0 0 0;
    }
  }
