    :root {
      --primary: #6d2d83;
      /* Bazaar360 purple */
      --dark: #111;
      --muted: #666;
      /* Added from index.html for compatibility */
      --secondary: #ffffff;
      --darker: #0a0f1f;
      --light: #f8fafc;
      --lighter: #f1f5f9;
      --gray: #94a3b8;
      --glass: rgba(255, 255, 255, 0.1);
      --glass-border: rgba(255, 255, 255, 0.2);
      --navbar-border-radius: 10px;
      --navbar-spacer: 1rem;
      --navbar-text-color: #6a778e;
      --navbar-link-height: 3.5rem;
      --navbar-timing: 250ms;
      --navbar-transition: var(--navbar-timing) ease all;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    body {
      background: #fff;
      color: #111;
      overflow-x: hidden;
    }

    section {
      padding: 90px 20px;
    }

    .container {
      max-width: 1200px;
      margin: auto;
    }

    h2 {
      text-align: center;
      font-size: 40px;
      margin-bottom: 14px;
    }

    .sub {
      text-align: center;
      color: #666;
      margin-bottom: 35px;
    }

    /* HERO */
    .hero {
      text-align: center;
      padding-top: 160px;
      /* Adjusted for fixed ribbon + header */
    }

    .hero h1 {
      font-size: clamp(34px, 5vw, 62px);
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero p {
      max-width: 700px;
      margin: 20px auto;
      color: #444;
      font-size: 19px;
    }

    .mockup {
      margin-top: 40px;
      position: relative;
      height: 620px;
      perspective: 1200px;
    }

    .main {
      width: 70%;
      margin: auto;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0, 0, 0, .2);
      transform: rotateX(10deg);
    }

    .main img {
      width: 100%;
    }

    .float {
      position: absolute;
      width: 250px;
      border-radius: 12px;
      box-shadow: 0 15px 25px rgba(0, 0, 0, .18);
      animation: float 6s infinite ease-in-out;
    }

    .f1 {
      left: 0;
      top: 90px;
    }

    .f2 {
      right: 0;
      top: 220px;
      animation-delay: 1.5s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-18px);
      }
    }

    /* TRUST STRIP - Modern Grid */
    .trust {
      background: #f8f9fa;
      padding: 60px 20px;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .trust-item {
      background: #fff;
      padding: 30px 20px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .trust-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(109, 45, 131, 0.15);
      /* Purple shadow */
    }

    .trust-item span {
      display: block;
      font-size: 32px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .trust-item p {
      font-size: 16px;
      color: #555;
      margin: 0;
      font-weight: 500;
    }

    /* ROI CALCULATOR - Glassmorphic */
    .roi {
      background: linear-gradient(135deg, #fdfbfd 0%, #f4ecf7 100%);
      padding: 80px 20px;
    }

    .roi-card {
      max-width: 1000px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 24px;
      padding: 40px;
      box-shadow: 0 20px 60px rgba(109, 45, 131, 0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .roi-inputs label {
      display: block;
      margin: 15px 0 8px;
      color: #333;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .roi-inputs input {
      width: 100%;
      padding: 16px;
      border: 2px solid #eee;
      border-radius: 12px;
      font-size: 16px;
      transition: border-color 0.3s, box-shadow 0.3s;
      background: #fff;
    }

    .roi-inputs input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(109, 45, 131, 0.1);
    }

    .roi-results {
      background: var(--primary);
      color: #fff;
      padding: 30px;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .roi-results::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 150px;
      height: 150px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
    }

    .roi-headline {
      font-size: 20px;
      line-height: 1.5;
      margin-bottom: 25px;
      font-weight: 600;
      position: relative;
      background: none;
      /* Override old style */
      padding: 0;
      color: #fff;
    }

    .result {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .result:last-child {
      border-bottom: none;
    }

    .result span {
      font-size: 14px;
      opacity: 0.9;
    }

    .result strong {
      font-size: 18px;
      color: #fff;
    }

    /* COMPARISON - Modern Cards */
    .compare {
      background: #fff;
      padding: 80px 20px;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: auto;
    }

    .box {
      background: #fff;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s;
    }

    .box:hover {
      transform: translateY(-5px);
    }

    .box h3 {
      font-size: 24px;
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .bad {
      border-top: 6px solid #e53935;
    }

    .bad h3 {
      color: #e53935;
    }

    .bad ul li::before {
      content: "\f00d";
      /* FontAwesome times */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: #e53935;
      margin-right: 12px;
      width: 20px;
    }

    .good {
      border-top: 6px solid var(--primary);
      background: linear-gradient(to bottom, #fff, #fdfbfd);
      border: 1px solid rgba(109, 45, 131, 0.1);
      position: relative;
      overflow: hidden;
    }

    /* Good card highlight */
    .good::after {
      content: "RECOMMENDED";
      position: absolute;
      top: 20px;
      right: -30px;
      background: var(--primary);
      color: white;
      padding: 5px 30px;
      transform: rotate(45deg);
      font-size: 10px;
      font-weight: bold;
      letter-spacing: 1px;
    }

    .good h3 {
      color: var(--primary);
    }

    .good ul li::before {
      content: "\f00c";
      /* FontAwesome check */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: var(--primary);
      margin-right: 12px;
      width: 20px;
    }

    .box ul {
      list-style: none;
    }

    .box li {
      margin-bottom: 16px;
      font-size: 16px;
      color: #555;
      display: flex;
      align-items: flex-start;
      line-height: 1.5;
    }

    /* VIDEO - Immersive */
    .video-section {
      background: #111;
      padding: 80px 20px;
      color: #fff;
      text-align: center;
    }

    .video-container {
      max-width: 1400px;
      /* Wider immersive feel */
      width: 95%;
      margin: 40px auto;
      position: relative;
      aspect-ratio: 16/9;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(109, 45, 131, 0.3);
      /* Purple glow */
      background: #000;
    }

    .video-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .video-placeholder {
      position: absolute;
      inset: 0;
      /* Gradient overlay on placeholder */
      background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 2;
    }

    .play-btn-pulse {
      width: 90px;
      height: 90px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(5px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s, background 0.3s;
      border: 2px solid rgba(255, 255, 255, 0.3);
      position: relative;
    }

    .play-btn-pulse::after {
      content: '';
      position: absolute;
      inset: -20px;
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(0.8);
        opacity: 1;
      }

      100% {
        transform: scale(1.5);
        opacity: 0;
      }
    }

    .play-btn-pulse i {
      font-size: 30px;
      color: #fff;
      margin-left: 5px;
      /* Visual balance */
    }

    .video-placeholder:hover .play-btn-pulse {
      transform: scale(1.1);
      background: var(--primary);
      border-color: var(--primary);
    }

    /* MOBILE Responsive Fixes */
    @media (max-width: 900px) {
      .roi-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
      }

      .compare-grid {
        grid-template-columns: 1fr;
      }

      .trust-grid {
        grid-template-columns: 1fr;
      }

      .video-container {
        width: 100%;
        border-radius: 12px;
      }

      .hero h1 {
        font-size: 36px;
      }

      .main {
        width: 95%;
      }
    }

    /* PROMO RIBBON */
    .promo-ribbon {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 40px;
      background: linear-gradient(270deg, #6d2d83, #8e2de2, #6d2d83);
      background-size: 200% 100%;
      animation: gradientAnim 8s ease infinite;
      color: #fff;
      display: flex;
      align-items: center;
      overflow: hidden;
      z-index: 2002;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    @keyframes gradientAnim {
      0% {
        background-position: 0% 50%
      }

      50% {
        background-position: 100% 50%
      }

      100% {
        background-position: 0% 50%
      }
    }

    .promo-scroll {
      display: inline-block;
      white-space: nowrap;
      animation: scrollText 20s linear infinite;
      padding-left: 100%;
      font-weight: 600;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    @keyframes scrollText {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-100%);
      }
    }

    .promo-tag {
      background: #fff;
      color: var(--primary);
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      flex-shrink: 0;
    }

    /* Adjust header for ribbon if needed, but ribbon acts as block at top in this implementation */

    /* PRICING - Stunning */
    .pricing-section {
      padding: 100px 20px;
      background: #fff;
      text-align: center;
    }

    .pricing-card {
      max-width: 500px;
      margin: 40px auto;
      background: #fff;
      border-radius: 30px;
      padding: 50px 40px;
      position: relative;
      /* Gradient Border Trick */
      background-clip: padding-box;
      border: 3px solid transparent;
      box-shadow: 0 20px 60px rgba(109, 45, 131, 0.15);
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      top: -3px;
      bottom: -3px;
      left: -3px;
      right: -3px;
      background: linear-gradient(45deg, var(--primary), #d946ef);
      z-index: -1;
      border-radius: 32px;
    }

    .pricing-header h3 {
      font-size: 28px;
      margin-bottom: 10px;
      color: var(--primary);
    }

    .pricing-header p {
      color: #666;
      margin-bottom: 30px;
    }

    .price-display {
      margin: 30px 0;
      position: relative;
    }

    .price-display .old-price {
      text-decoration: line-through;
      color: #999;
      font-size: 24px;
      display: block;
      margin-bottom: 5px;
    }

    .price-display .new-price {
      font-size: 64px;
      font-weight: 800;
      color: #111;
      line-height: 1;
    }

    .price-display .period {
      font-size: 16px;
      color: #666;
      font-weight: 500;
    }

    .save-badge {
      position: absolute;
      top: 0;
      right: 20px;
      background: #ffeaa7;
      color: #d35400;
      padding: 5px 12px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 14px;
      transform: rotate(15deg);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .features-list {
      text-align: left;
      margin: 30px 0 40px;
      padding-left: 20px;
    }

    .features-list li {
      margin-bottom: 15px;
      list-style: none;
      position: relative;
      padding-left: 30px;
      font-size: 17px;
      color: #444;
    }

    .features-list li::before {
      content: "\f00c";
      /* check */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: var(--primary);
      position: absolute;
      left: 0;
      top: 2px;
    }

    .cta-btn {
      display: block;
      width: 100%;
      padding: 20px;
      background: var(--primary);
      color: white;
      font-size: 20px;
      font-weight: 700;
      text-decoration: none;
      border-radius: 12px;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 10px 25px rgba(109, 45, 131, 0.3);
    }

    .cta-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(109, 45, 131, 0.5);
    }

    .guarantee {
      margin-top: 20px;
      font-size: 14px;
      color: #888;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    /* PRICING (Remove old)*/
    .price {
      display: none;
    }

    .old {
      display: none;
    }

    .new {
      display: none;
    }

    /* FOOTER */
    footer {
      background: #111;
      color: #fff;
      text-align: center;
      padding: 20px;
    }

    /* MERGED LAYOUT (Video + Pricing) */
    .merged-layout {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      align-items: stretch;
    }

    .merged-layout>section {
      width: 50%;
      flex: 1 1 500px;
      padding: 60px 40px;
      /* Adjust padding for split view */
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Ensure content fits nicely */
    .merged-layout .container {
      width: 100%;
    }

    /* MOBILE */
    @media(max-width:900px) {
      .merged-layout>section {
        width: 100%;
        flex: 1 1 100%;
        padding: 60px 20px;
      }

      .main {
        width: 100%;
      }

      .float {
        display: none;
      }

      .roi-card {
        grid-template-columns: 1fr;
      }

      .compare-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ------------------ Navbar Styles (Imported) ------------------ */
    header {
      position: fixed;
      top: 40px;
      /* Below Ribbon */
      left: 0;
      width: 100%;
      padding: 1.2rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.76);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: 0.4s;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 1.8rem;
      color: var(--primary);
      text-decoration: none;
    }

    .logo img {
      height: 52px;
      transition: transform 0.3s;
    }

    /* Hamburger */
    .hamburger {
      position: relative;
      width: 40px;
      height: 30px;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      position: absolute;
      height: 3px;
      width: 100%;
      background: var(--primary);
      border-radius: 2px;
      transition: 0.4s;
    }

    .hamburger span:nth-child(1) {
      top: 0;
      transform-origin: left center;
    }

    .hamburger span:nth-child(2) {
      top: 50%;
      transform: translateY(-50%);
      transform-origin: left center;
    }

    .hamburger span:nth-child(3) {
      bottom: 0;
      transform-origin: left center;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg);
      width: 120%;
    }

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

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg);
      width: 120%;
    }

    /* Menu Overlay */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
      background: rgba(255, 255, 255, 0.1);
      /* Glass effect var override fallback */
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .menu-links a {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: var(--navbar-link-height);
      width: calc(var(--navbar-spacer) * 5.5);
      color: var(--navbar-text-color);
      transition: var(--navbar-transition);
      text-decoration: none;
    }

    .menu-overlay.active .menu-links a {
      opacity: 1;
    }

    /* Navbar items */
    .navbar {
      position: fixed;
      top: 105%;
      right: 3.8%;
      background: rgba(255, 255, 255, 0.76);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.21);
      border-radius: var(--navbar-border-radius);
      padding: var(--navbar-spacer) 0;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      height: auto;
      z-index: 999;
    }

    .navbar__menu {
      list-style: none;
      height: 100%;
      position: relative;
    }

    .navbar__link span {
      position: absolute;
      right: 105%;
      transform: translate(-3rem);
      margin-left: 1rem;
      opacity: 0;
      pointer-events: none;
      color: var(--primary);
      background: #fff;
      padding: calc(var(--navbar-spacer) * 0.75);
      transition: var(--navbar-transition);
      border-radius: calc(var(--navbar-border-radius) * 1.75);
      white-space: nowrap;
    }

    .navbar__link:hover {
      color: #fff;
    }

    .navbar:not(:hover) .navbar__link:focus span,
    .navbar__link:hover span {
      opacity: 1;
      transform: translate(0);
    }

    .navbar__item:last-child:before {
      content: '';
      position: absolute;
      opacity: 0;
      z-index: -1;
      top: 0;
      left: var(--navbar-spacer);
      width: var(--navbar-link-height);
      height: var(--navbar-link-height);
      background: var(--primary);
      border-radius: calc(var(--navbar-border-radius) * 1.75);
      transition: var(--navbar-timing) cubic-bezier(1, 0.2, 0.1, 1.2) all;
    }

    /* Gooey effect animations simplified */
    @keyframes gooeyEffect-1 {
      0% {
        transform: scale(1, 1);
      }

      50% {
        transform: scale(0.5, 1.5);
      }

      100% {
        transform: scale(1, 1);
      }
    }

    @keyframes gooeyEffect-2 {
      0% {
        transform: scale(1, 1);
      }

      50% {
        transform: scale(0.5, 1.5);
      }

      100% {
        transform: scale(1, 1);
      }
    }

    @keyframes gooeyEffect-3 {
      0% {
        transform: scale(1, 1);
      }

      50% {
        transform: scale(0.5, 1.5);
      }

      100% {
        transform: scale(1, 1);
      }
    }

    @keyframes gooeyEffect-4 {
      0% {
        transform: scale(1, 1);
      }

      50% {
        transform: scale(0.5, 1.5);
      }

      100% {
        transform: scale(1, 1);
      }
    }

    @keyframes gooeyEffect-5 {
      0% {
        transform: scale(1, 1);
      }

      50% {
        transform: scale(0.5, 1.5);
      }

      100% {
        transform: scale(1, 1);
      }
    }

    @keyframes gooeyEffect-6 {
      0% {
        transform: scale(1, 1);
      }

      50% {
        transform: scale(0.5, 1.5);
      }

      100% {
        transform: scale(1, 1);
      }
    }

    .navbar__item:hover~.navbar__item:last-child:before,
    .navbar__item:last-child:hover:before {
      opacity: 1;
    }

    .navbar__item:nth-child(1):hover~.navbar__item:last-child:before {
      top: calc((100% / 6) * 0);
      animation: gooeyEffect-1 var(--navbar-timing) 1;
    }

    .navbar__item:nth-child(2):hover~.navbar__item:last-child:before {
      top: calc((100% / 6) * 1);
      animation: gooeyEffect-2 var(--navbar-timing) 1;
    }

    .navbar__item:nth-child(3):hover~.navbar__item:last-child:before {
      top: calc((100% / 6) * 2);
      animation: gooeyEffect-3 var(--navbar-timing) 1;
    }

    .navbar__item:nth-child(4):hover~.navbar__item:last-child:before {
      top: calc((100% / 6) * 3);
      animation: gooeyEffect-4 var(--navbar-timing) 1;
    }

    .navbar__item:nth-child(5):hover~.navbar__item:last-child:before {
      top: calc((100% / 6) * 4);
      animation: gooeyEffect-5 var(--navbar-timing) 1;
    }

    .navbar__item:nth-child(6):hover:before,
    .navbar__item:last-child:hover:before {
      top: calc((100% / 6) * 5);
      animation: gooeyEffect-6 var(--navbar-timing) 1;
    }

    /* Mobile Side Nav */
    #mobileToggle {
      display: none;
    }

    .mobile-nav-container {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      z-index: 2000;
      pointer-events: none;
    }

    .mobile-toggle-button {
      position: fixed;
      top: 50px;
      right: 20px;
      width: 60px;
      height: 60px;
      backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 2001;
      transition: all 2s ease;
      pointer-events: all;
    }

    .mobile-toggle-button span {
      display: block;
      width: 30px;
      height: 3px;
      background: var(--primary);
      margin: 3px 0;
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .mobile-nav-overlay {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary) 0%, #4a1f5a 100%);
      /* Purple gradient */
      clip-path: circle(0% at top right);
      transition: clip-path 0.8s cubic-bezier(0.86, 0, 0.07, 1);
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none;
    }

    .mobile-nav {
      text-align: center;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.5s ease 0.3s;
    }

    .mobile-nav-links {
      list-style: none;
    }

    .mobile-nav-links li {
      margin: 25px 0;
    }

    .mobile-nav-links a {
      color: white;
      text-decoration: none;
      font-size: 1.8rem;
      font-weight: 600;
      padding: 10px 20px;
      display: inline-block;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .mobile-nav-links a:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: -100%;
      width: 100%;
      height: 3px;
      background: white;
      transition: all 0.3s ease;
    }

    .mobile-nav-links a:hover {
      transform: translateX(10px);
    }

    .mobile-nav-links a:hover:before {
      left: 0;
    }

    #mobileToggle:checked~.mobile-nav-overlay {
      clip-path: circle(150% at top right);
      pointer-events: all;
    }

    #mobileToggle:checked~.mobile-nav-overlay .mobile-nav {
      opacity: 1;
      transform: translateY(0);
    }

    #mobileToggle:checked~.mobile-toggle-button span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    #mobileToggle:checked~.mobile-toggle-button span:nth-child(2) {
      opacity: 0;
    }

    #mobileToggle:checked~.mobile-toggle-button span:nth-child(3) {
      transform: rotate(-45deg) translate(8px, -8px);
    }

    #mobileToggle:checked~.mobile-toggle-button {
      background: rgba(255, 255, 255, 0.95);
    }

    /* Mobile Dropdown */
    .mobile-dropdown-btn {
      width: 100%;
      text-align: center;
      background: none;
      border: none;
      color: white;
      font-size: 1.8rem;
      font-weight: 600;
      padding: 10px 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s ease;
    }

    .mobile-dropdown-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      width: 80%;
      margin: 0 auto;
    }

    .mobile-dropdown-content.active {
      max-height: 200px;
    }

    .mobile-dropdown-content a {
      font-size: 1.4rem;
      padding: 12px 0;
      display: block;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-dropdown-content a:last-child {
      border-bottom: none;
    }

    .mobile-dropdown-btn.active i {
      transform: rotate(180deg);
    }

    /* Testimonials */
    .testimonials {
      padding: 6rem 5%;
      background: var(--darker);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .testimonials::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 30%, rgba(109, 45, 131, 0.2) 0%, transparent 40%);
      /* Purple glow */
      z-index: 0;
    }

    .testimonials-container {
      max-width: 100%;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      height: 380px;
      overflow: hidden;
    }

    .testimonials-track {
      display: flex;
      gap: 1.5rem;
      height: 100%;
      align-items: center;
      will-change: transform;
    }

    .testimonial-card {
      width: 40%;
      min-width: 320px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      flex-shrink: 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .testimonial-content {
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
    }

    .testimonial-author img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
      border: 2px solid var(--primary);
    }

    .testimonial-info h4 {
      font-size: 1.2rem;
      margin-bottom: 5px;
    }

    .testimonial-info p {
      color: var(--gray);
      font-size: 0.9rem;
    }

    /* Footer styles from Index */
    footer {
      background: var(--darker);
      color: var(--light);
      padding: 4rem 5% 2rem;
      text-align: left;
      /* Override default centered footer in bazaar360 */
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
      max-width: 1200px;
      margin: 0 auto 3rem;
    }

    .footer-logo {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 1rem;
      display: inline-block;
      text-decoration: none;
    }

    .footer-about p {
      color: var(--gray);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgb(255, 255, 255);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--secondary);
      text-decoration: none;
      transition: 0.3s;
    }

    .social-links a:hover {
      background: var(--primary);
      transform: translateY(-5px);
    }

    .footer-links h3 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      position: relative;
      color: white;
      text-align: left;
    }

    .footer-links h3::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--primary);
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: var(--gray);
      text-decoration: none;
      transition: 0.3s;
    }

    .footer-links a:hover {
      color: var(--primary);
      padding-left: 5px;
    }

    .copyright {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--gray);
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Header Products Dropdown (Desktop) */
    .header-products {
      position: relative;
      margin-left: auto;
      margin-right: 30px;
      font-weight: 600;
      cursor: pointer;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .header-products span {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 1.2rem;
      padding: 10px;
    }

    .products-dropdown-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      min-width: 240px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      padding: 10px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(15px);
      transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
      z-index: 2000;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .header-products:hover .products-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .products-dropdown-menu a {
      display: block;
      padding: 12px 25px;
      color: var(--dark);
      text-decoration: none;
      font-size: 1rem;
      transition: all 0.2s ease;
      font-weight: 500;
    }

    .products-dropdown-menu a:hover {
      background: rgba(109, 45, 131, 0.08);
      /* Purple tint */
      color: var(--primary);
      padding-left: 30px;
    }

    @media(max-width:900px) {
      .header-products {
        display: none;
      }

      /* Mobile Hero Scroll */
      .mockup {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 30px;
        /* Space for scrollbar/touch */
        height: auto;
        perspective: none;
        margin-top: 20px;
        /* Hide scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
      }

      .mockup::-webkit-scrollbar {
        display: none;
      }

      .main,
      .float {
        position: static;
        min-width: 85vw;
        max-width: 85vw;
        scroll-snap-align: center;
        border-radius: 12px;
        transform: none !important;
        /* Override JS tilt */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: 0;
        animation: none;
        /* Stop floating animation on mobile */
      }

      /* Ensure images fill cards */
      .float {
        display: block;
        /* Unhide */
        height: auto;
        width: auto;
      }

      .float img {
        width: 100%;
        border-radius: 12px;
      }

      .roi-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
      }

      .compare-grid {
        grid-template-columns: 1fr;
      }

      .trust-grid {
        grid-template-columns: 1fr;
      }

      .video-container {
        width: 100%;
        border-radius: 12px;
      }

      .hero h1 {
        font-size: 36px;
      }
    }

    @media (max-width: 768px) {
      .hamburger {
        display: none;
      }

      .mobile-nav-container {
        display: block;
      }

      .navbar {
        display: flex;
      }

      /* Ensure desktop navbar styles don't conflict, although hidden by logic */
    }

    @media (min-width: 769px) {
      .mobile-nav-container {
        display: none;
      }
    }

    .hero-micro {
      margin-top: 8px;
      color: #6b7280;
      font-size: 15px;
      font-weight: 500;
    }

    .how-it-works {
      background: #fff;
      padding: 70px 20px;
      text-align: center;
    }

    .flow-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin-top: 24px;
    }

    .flow-step {
      background: #f8fafc;
      border: 1px solid rgba(15, 23, 42, .08);
      border-radius: 14px;
      padding: 20px 16px;
    }

    .flow-step span {
      display: inline-flex;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      background: var(--primary);
      color: #fff;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .flow-step h4 {
      margin-bottom: 8px;
      color: #111
    }

    .flow-step p {
      color: #555;
      font-size: 14px;
      line-height: 1.5
    }

    .mini-faq {
      background: #f8fafc;
      padding: 70px 20px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
      margin-top: 20px;
    }

    .faq-item {
      background: #fff;
      border: 1px solid rgba(15, 23, 42, .08);
      border-radius: 14px;
      padding: 18px 16px;
      text-align: left;
    }

    .faq-item h4 {
      margin-bottom: 8px;
      color: #111;
      font-size: 17px;
    }

    .faq-item p {
      color: #555;
      font-size: 14px;
      line-height: 1.6;
    }

    .prequal {
      margin-top: 10px;
      font-size: 13px;
      color: #64748b;
      text-align: center;
    }


    /* ===== Layout adjustment: full-width video + side-by-side FAQ & Pricing ===== */
    .video-section {
      width: 100%;
    }

    .merged-layout {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      align-items: stretch;
    }

    .merged-layout>section.half-panel {
      width: 50%;
      flex: 1 1 500px;
      padding: 60px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .mini-faq .container,
    .pricing-section .container {
      width: 100%;
      max-width: 650px;
      margin: auto;
    }

    @media(max-width:900px) {
      .merged-layout>section.half-panel {
        width: 100%;
        flex: 1 1 100%;
        padding: 60px 20px;
      }
    }