    :root {
      --primary: #4f46e5;
      /* Indigo/Purple for App Theme */
      --secondary: #ec4899;
      /* Pink accent */
      --accent: #8b5cf6;
      /* Violet */
      --dark: #0f172a;
      --darker: #020617;
      /* Deep midnight blue for Footer/Testimonials */
      --light: #f8fafc;
      --glass: rgba(255, 255, 255, 0.7);
      --glass-border: rgba(255, 255, 255, 0.5);

      /* Navbar vars */
      --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', Roboto, sans-serif;
    }

    body {
      background: #f0f4f8;
      color: #1e293b;
      overflow-x: hidden;
    }

    /* Global Styles */
    section {
      padding: 100px 20px;
      position: relative;
    }

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

    h1,
    h2,
    h3 {
      font-weight: 800;
      line-height: 1.2;
    }

    .gradient-text {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .btn {
      display: inline-block;
      padding: 16px 32px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .primary-btn {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: white;
      box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    }

    .primary-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(79, 70, 229, 0.6);
    }

    /* HERO APP */
    .hero-app {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: radial-gradient(circle at top right, #e0e7ff, #f3e8ff, #fff);
      padding-top: 150px;
      /* Space for Navbar */
      overflow: hidden;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .hero-text h1 {
      font-size: clamp(40px, 5vw, 64px);
      margin-bottom: 20px;
      color: var(--dark);
    }

    .hero-text p {
      font-size: 20px;
      color: #475569;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .phone-mockup {
      width: 300px;
      height: auto;
      background: #000;
      border-radius: 40px;
      border: 10px solid #111;
      padding: 0;
      /* Full screen image */
      overflow: hidden;
      box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
      transform: rotate(-5deg);
      position: relative;
      z-index: 10;
    }

    .phone-mockup img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Floating Badges */
    .floating-badge {
      position: absolute;
      background: white;
      padding: 12px 24px;
      border-radius: 12px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      z-index: 20;
      animation: floatBadge 6s infinite ease-in-out;
    }

    .badge-1 {
      top: 100px;
      left: -40px;
      color: #10b981;
    }

    .badge-2 {
      bottom: 150px;
      right: -40px;
      color: #ec4899;
      animation-delay: 2s;
    }

    @keyframes floatBadge {

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

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

    /* FEATURES */
    .feature-section {
      background: #fff;
    }

    .alt-bg {
      background: #f8fafc;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .reverse {
      direction: rtl;
      /* Hack to reverse grid order visually, revert text direction below */
    }

    .reverse>* {
      direction: ltr;
    }

    .feature-text h2 {
      font-size: 42px;
      margin-bottom: 20px;
      color: var(--dark);
    }

    .feature-text p {
      font-size: 18px;
      color: #64748b;
      margin-bottom: 30px;
    }

    .feature-list li {
      list-style: none;
      margin-bottom: 20px;
      font-size: 18px;
      display: flex;
      align-items: center;
      gap: 15px;
      color: #334155;
    }

    .feature-list i {
      width: 40px;
      height: 40px;
      background: #e0e7ff;
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      font-size: 18px;
    }

    .feature-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
      transform: perspective(1000px) rotateY(0deg);
      transition: transform 0.5s;
    }

    .feature-image img:hover {
      transform: perspective(1000px) rotateY(0deg) scale(1.02);
    }

    /* MOBILE responsive features */
    @media(max-width: 900px) {

      .hero-content,
      .feature-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
      }

      .reverse {
        direction: ltr;
      }

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

      .feature-list li {
        justify-content: center;
        /* Center list items on mobile */
        text-align: left;
      }

      .phone-mockup {
        margin: auto;
        width: 100%;
        max-width: 300px;
        height: auto;
      }
    }

    /* Feature Mockup specific overrides */
    .feature-mockup {
      transform: rotate(-3deg) !important;
      box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.2);
      margin: 0 auto;
      max-width: 100%;
      transition: transform 0.5s ease;
    }

    .feature-mockup:hover {
      transform: rotate(0deg) scale(1.02) !important;
    }

    /* Alternate tilt for reverse sections */
    .reverse .feature-mockup {
      transform: rotate(3deg) !important;
      box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.2);
    }

    @media(max-width: 900px) {
      .feature-mockup {
        width: 80%;
        max-width: 280px;
        transform: none !important;
        /* No tilt on mobile for better fit */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }

      .reverse .feature-mockup {
        transform: none !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }
    }

    /* Premium 3D Icon Styling */
    .feature-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }

    .icon-box {
      width: 50px;
      height: 50px;
      flex-shrink: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
      transition: transform 0.3s ease;
    }

    .icon-box i {
      font-size: 20px;
      background: linear-gradient(135deg, #4f46e5, #ec4899);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 2px 4px rgba(79, 70, 229, 0.3));
    }

    .icon-box:hover {
      transform: translateY(-5px) scale(1.05);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
    }

    /* ------------------ Navbar Styles (Imported) ------------------ */
    header {
      position: fixed;
      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: 20px;
      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%, rgb(49 42 237 / 20%) 0%, #0057b300 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: 300px;
      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: radial-gradient(circle at 20% 30%, rgb(49 42 237 / 20%) 0%, #0057b300 40%);
      color: black;
      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: #4f46e5;
      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: 32px;
      }

      .hero-text p,
      .feature-text p {
        font-size: 16px !important;
        line-height: 1.5;
        padding: 0 10px;
      }

      .feature-text h2 {
        font-size: 26px;
      }
    }

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

    /* ===== 100K SaaS Design Blueprint Upgrades (Non-breaking visual layer) ===== */
    :root {
      --surface-1: #ffffff;
      --surface-2: #f8fafc;
      --surface-3: #eef2ff;
      --text-strong: #0b1220;
      --text-soft: #475569;
      --ring: rgba(79, 70, 229, .22);
    }

    /* Typography refinement */
    h1,
    h2,
    h3 {
      letter-spacing: -0.02em;
    }

    .hero-text h1 {
      line-height: 1.05;
    }

    /* Cinematic lighting for hero */
    .hero-app {
      position: relative;
      isolation: isolate;
    }

    .hero-app::before {
      content: "";
      position: absolute;
      inset: -20%;
      background:
        radial-gradient(circle at 20% 25%, rgba(79, 70, 229, .18), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, .16), transparent 45%);
      filter: blur(80px);
      z-index: 0;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    /* Premium device finish (no behavior change) */
    .phone-mockup {
      position: relative;
      overflow: hidden;
      transform: translateZ(0);
      backface-visibility: hidden;
    }

    .phone-mockup::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg,
          rgba(255, 255, 255, .15) 0%,
          rgba(255, 255, 255, .05) 35%,
          transparent 55%,
          rgba(255, 255, 255, .08) 100%);
      pointer-events: none;
    }

    /* Feature section flow separators */
    .feature-section {
      position: relative;
    }

    .feature-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 10%;
      width: 80%;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(2, 6, 23, .08), transparent);
    }

    /* Button polish */
    .primary-btn {
      position: relative;
      overflow: hidden;
    }

    .primary-btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .28), transparent);
      transform: translateX(-120%);
      transition: transform .7s ease;
    }

    .primary-btn:hover::before {
      transform: translateX(120%);
    }

    /* Card refinement */
    .testimonial-card {
      position: relative;
      background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
      box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
      transform: translateZ(0);
      backface-visibility: hidden;
    }

    .testimonial-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 1px;
      background: linear-gradient(120deg, rgba(79, 70, 229, .5), transparent 50%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    /* Subtle image lift without altering layout */
    .feature-image img {
      will-change: transform;
    }


    /* ===== Silent Authority Layer (Non-breaking) ===== */
    .hero-btns .cta-micro {
      margin-top: 12px;
      font-size: 14px;
      color: #64748b;
      font-weight: 500;
      letter-spacing: .01em;
    }

    .hero-visual {
      position: relative;
    }

    .status-chip {
      position: absolute;
      background: rgba(255, 255, 255, .9);
      border: 1px solid rgba(79, 70, 229, .18);
      box-shadow: 0 10px 25px rgba(2, 6, 23, .08);
      backdrop-filter: blur(8px);
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      color: #4338ca;
      z-index: 30;
      white-space: nowrap;
    }

    .chip-top {
      top: 40px;
      left: -20px;
    }

    .chip-bottom {
      bottom: 60px;
      right: -20px;
    }

    @media (max-width: 900px) {
      .status-chip {
        font-size: 11px;
        padding: 6px 10px;
      }

      .chip-top {
        top: 10px;
        left: 10px;
      }

      .chip-bottom {
        bottom: 10px;
        right: 10px;
      }
    }


    /* ===== Perception Gap Collapse Layer ===== */
    .hero-clarity {
      margin-top: 10px;
      font-size: 16px;
      color: #475569;
      max-width: 56ch;
    }

    .process-flow {
      background: #fff;
      padding: 70px 20px 50px;
    }

    .process-title {
      text-align: center;
      margin-bottom: 28px;
      color: #0f172a;
    }

    .process-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      justify-content: center;
    }

    .process-steps .step {
      background: #ffffff;
      border: 1px solid rgba(79, 70, 229, .18);
      box-shadow: 0 8px 20px rgba(2, 6, 23, .06);
      border-radius: 999px;
      padding: 10px 16px;
      font-weight: 600;
      color: #334155;
    }

    .process-steps .arrow {
      color: #6366f1;
      font-weight: 700;
    }

    .mid-cta {
      background: #f8fafc;
      padding: 70px 20px;
    }

    .mid-cta-card {
      text-align: center;
      background: #fff;
      border: 1px solid rgba(79, 70, 229, .14);
      border-radius: 20px;
      padding: 34px 24px;
      box-shadow: 0 20px 40px rgba(2, 6, 23, .08);
    }

    .mid-cta-card h3 {
      margin-bottom: 10px;
      color: #0f172a;
    }

    .mid-cta-card p {
      color: #64748b;
      margin-bottom: 16px;
    }

    .objection-strip {
      background: #fff;
      padding: 40px 20px 20px;
    }

    .objection-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .objection-grid .obj {
      background: #f8fafc;
      border: 1px solid rgba(2, 6, 23, .08);
      border-radius: 12px;
      padding: 14px 16px;
      color: #334155;
      font-weight: 600;
      text-align: center;
    }

    @media (max-width:900px) {
      .hero-clarity {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding: 0 10px;
      }

      .process-steps .arrow {
        display: none;
      }

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