    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg-dark: #0d0a1a;
      --bg-hero: #130c2b;
      --nav-bg: #0f0b22;
      --accent: #7c3aed;
      --accent-light: #9b5cf7;
      --text-white: #ffffff;
      --text-muted: rgba(255, 255, 255, 0.65);
      --nav-active-bg: #2d1f5e;
      --nav-h: 72px;
    }

    html,
    body {
      font-family: "Inter", sans-serif;
      background: #0C021B;
      color: var(--text-white);
      overflow-x: hidden;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: #0C001C;
      display: flex;
      align-items: center;
      padding: 10px 67px;
      z-index: 1000;
      gap: 19%;
      height: 110px;
      border-bottom: 3px solid #000000;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-icon {
      width: 44px;
      height: 44px;
    }

    .logo-text {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-white);
      line-height: 1.2;
      letter-spacing: 0.03em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 44px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-white);
      font-size: clamp(14px, 21px, 20px);
      font-weight: 400;
      padding: 7px 12px;
      border-radius: 8px;
      transition: background 0.2s;
    }

    .nav-links a.active {
      background: #170831;
    }

    .nav-links a:hover:not(.active) {
      background: rgba(255, 255, 255, 0.07);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      z-index: 1100;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 2.5px;
      background: var(--text-white);
      border-radius: 2px;
      transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), opacity 0.25s;
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7.5px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7.5px) rotate(-45deg);
    }

    .drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: min(300px, 80vw);
      height: 100vh;
      background: var(--nav-bg);
      z-index: 1050;
      display: flex;
      flex-direction: column;
      padding: calc(var(--nav-h) + 24px) 28px 40px;
      gap: 8px;
      transition: right 0.38s cubic-bezier(.4, 0, .2, 1);
      border-left: 1px solid rgba(124, 58, 237, 0.25);
    }

    .drawer.open {
      right: 0;
    }

    .drawer a {
      text-decoration: none;
      color: var(--text-white);
      font-size: 18px;
      font-weight: 600;
      padding: 14px 16px;
      border-radius: 10px;
      transition: background 0.2s;
    }

    .drawer a.active {
      background: var(--nav-active-bg);
    }

    .drawer a:hover:not(.active) {
      background: rgba(255, 255, 255, 0.07);
    }

    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1040;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s;
    }

    .overlay.show {
      opacity: 1;
      pointer-events: all;
    }

    .hero {
      min-height: 100vh;
      padding-top: 90px;
      background: linear-gradient(to right, #0C021B 27%, #250934 100%);
      display: grid;
      grid-template-columns: 3fr 1.2fr;
      overflow: hidden;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    .close-btn {
      position: absolute;
      top: 15px;
      right: 29px;
      background: none;
      border: none;
      color: #fff;
      font-size: 30px;
      cursor: pointer;
    }

    .hero-left {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      padding: 60px 48px 0px 72px;
    }



    .hero-title {
      font-size: clamp(4.5rem, 6.5vw, 8rem);
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 28px;
    }

    .hero-title .white {
      color: var(--text-white);
    }

    .hero-title .purple {
      background: linear-gradient(90deg, #D146EF, #a143ef);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .purple1 {
      background: linear-gradient(90deg, #D146EF -109%, #823BED 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .hero-desc {
      font-size: clamp(1rem, 1.8vw, 25px);
      font-weight: 400;
      color: var(--text-muted);
      line-height: 1.2;
      max-width: 813px;
      text-align: justify;
      hyphens: auto;
    }

    .hero-right {
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .hero-right img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
      display: block;
    }

    .how-it-works {
      padding: 70px 5% 0px 5%;
      text-align: center;
    }

    .how-it-works h2 {
      font-size: clamp(2rem, 4vw, 45px);
      margin-bottom: 60px;
      font-weight: 600;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .card {
      background: #0C021B;
      border-radius: 14px;
      overflow: hidden;
      text-align: left;
      transition: 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h3 {
      padding: 18px;
      font-size: clamp(16px, 1.5vw, 22px);
      font-weight: 700;
      background-color: #180D2C;
    }

    .card img {
      width: 100%;
      height: 217px;
      object-fit: cover;
      display: block;
    }

    .section-container {
      padding: 70px 5% 0px 5%;
      text-align: center;
    }

    .section-title {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 60px;
      letter-spacing: -0.02em;
    }

    .use-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .use-card {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      aspect-ratio: 4 / 5;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease;
    }

    .use-card:hover {
      transform: translateY(-10px);
    }

    .use-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 60%;
    }

    .card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 9px 15px;
      background: #000000;
      display: flex;
      opacity: 65%;
      justify-content: space-between;
      align-items: center;
    }

    .card-title {
      font-size: 25px;
      font-weight: 700;
    }

    .view-btn {
      background: linear-gradient(180deg, #923EEE, #D046F0);
      color: #ffffff;
      border: none;
      padding: 10px 30px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
    }

    .devices3 {
      background: #0C021B;
      padding: 70px 0px 0px 0px;
      text-align: center;
      color: #fff;
      font-family: sans-serif;
    }

    .devices3-title {
      font-size: clamp(28px, 5vw, 44px);
      margin-bottom: 50px;
    }

    .devices3-wrapper {
      position: relative;
      margin: 53px 100px;
      padding: 0 75px;
    }

    .devices3-viewport {
      overflow: hidden;
    }

    .devices3-track {
      display: flex;
      gap: 30px;
      transition: transform 0.4s ease;
    }

    .devices3-card {
      flex: 0 0 calc(50% - 15px);
      display: flex;
      background: #180D2C;
      border-radius: 14px;
      overflow: hidden;
      min-height: 200px;
    }

    .devices3-img {
      flex-shrink: 0;
    }

    .devices3-img img {
      width: 220px;
      object-fit: cover;
      display: block;
    }

    .devices3-content {
      padding: 24px 28px;
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .devices3-content h3 {
      font-size: clamp(18px, 2vw, 25px);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .devices3-content ul {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .devices3-content li {
      margin-bottom: 8px;
      padding-left: 15px;
      position: relative;
      font-size: clamp(12px, 1.3vw, 14px);
      font-weight: 700;
    }

    .devices3-content li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #9c42f5;
    }

    .devices3-btn {
      background: linear-gradient(180deg, #923EEE, #D046F0);
      border: none;
      padding: 8px 32px;
      border-radius: 14px;
      color: #fff;
      font-size: clamp(14px, 1.5vw, 18px);
      font-weight: 700;
      cursor: pointer;
      align-self: flex-start;
      transition: opacity 0.2s;
    }

    .devices3-btn:hover {
      opacity: 0.85;
    }

    .devices3-viewall {
      margin-top: 20px;
      padding: 8px 55px;
      background: linear-gradient(180deg, #923EEE, #D046F0);
      border: none;
      border-radius: 14px;
      color: #fff;
      font-size: clamp(14px, 1.5vw, 18px);
      font-weight: 700;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .devices3-viewall:hover {
      opacity: 0.85;
    }

    .devices3-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: 2px solid #fff;
      color: #fff;
      width: 27px;
      height: 27px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: background 0.2s;
      flex-shrink: 0;
    }

    .devices3-nav:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .devices3-prev {
      left: 0;
    }

    .devices3-next {
      right: 0;
    }

    .lp-section {
      padding: 70px 5% 40px 5%;
      text-align: center;
      background: #0a001a;
    }

    .lp-title {
      font-size: clamp(28px, 4vw, 45px);
      font-weight: 700;
      margin-bottom: 50px;
      color: #fff;
    }

    .lp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin: 0 auto;
    }

    .lp-card {
      background: #180D2C;
      border-radius: 16px;
      padding: 30px 24px 28px;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .lp-card-name {
      font-size: 25px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #fff;
    }

    .lp-card-price {
      font-size: 14px;
      font-weight: 700;
      color: #C4C4C4;
    }

    .lp-card-features {
      list-style: none;
      padding: 0;
      margin: 54px 0px 0px 0px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .lp-card-features1 {
      list-style: none;
      padding: 0;
      margin: 30px 0px 0px 0px;
      flex: 1;
      display: flex;
      color: #C4C4C4;
      flex-direction: column;
      gap: 30px;
      font-weight: 700;
      font-size: 14px;
    }

    .lp-card-features li {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #C4C4C4;
    }

    .lp-btn {
      display: inline-block;
      padding: 11px 0px;
      border-radius: 14px;
      border: none;
      background: linear-gradient(180deg, #923EEE, #D046F0);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      margin: 10px 95px;
      text-align: center;
      transition: opacity 0.2s;
    }

    .fm-section {
      padding: 40px 5% 40px 5%;
      background: #0a001a;
    }

    .fm-box {
      margin: 0 auto;
      background: #180D2C;
      border-radius: 20px;
      padding: 30px 0px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 65px;
    }

    .fm-title {
      font-size: clamp(26px, 4vw, 45px);
      font-weight: 700;
      color: #fff;
    }

    .fm-subtitle {
      font-size: 28px;
      font-weight: 700;
      color: #fff;
    }

    .fm-btn {
      padding: 11px 80px;
      border-radius: 14px;
      border: none;
      background: linear-gradient(180deg, #923EEE, #D046F0);
      color: #fff;
      font-size: 28px;
      font-weight: 700;
      cursor: pointer;
    }

    .ct-section {
      padding: 40px 5%;
      background: #0a001a;
    }

    .ct-box {
      margin: 0 auto;
      background: #180D2C;
      border-radius: 20px;
      padding: 33px 0px;
    }

    .ct-title {
      font-size: clamp(26px, 3.5vw, 45px);
      font-weight: 700;
      text-align: center;
      margin-bottom: 65px;
      color: #fff;
    }

    .ct-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-bottom: 40px;
    }

    .ct-card {
      background: linear-gradient(180deg, transparent 92%, rgb(35 19 47 / 50%) 100%), linear-gradient(90deg, #180e2b 91%, #291a3a 111%, #24172d 100%);
      border: 1px solid #9e85b9;
      padding: 18px 40px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .ct-avatar-row {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .ct-avatar {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }

    .ct-name {
      font-size: 25px;
      font-weight: 700;
      color: #fff;
    }

    .ct-role {
      font-size: 14px;
      font-weight: 400;
      margin-top: 10px;
    }

    .ct-quote {
      font-size: 14px;
      line-height: 1.65;
      flex: 1;
      font-weight: 400;
      margin: 20px 0px 8px 0px;
    }

    .ct-company {
      font-size: 14px;
      font-weight: 400;
    }

    .ct-btn-wrap {
      text-align: center;
    }

    .ct-btn {
      background: linear-gradient(180deg, #923EEE, #D046F0);
      border: none;
      padding: 10px 48px;
      border-radius: 14px;
      color: #fff;
      font-size: clamp(13px, 1.2vw, 16px);
      font-weight: 700;
      cursor: pointer;
    }

    .ct-btn:hover {
      opacity: 0.85;
    }

    footer {
      background: #180D2C;
      padding: 60px 40px 40px;
      margin-top: 3%;
    }

    .footer-inner {
      padding: 2% 0% 4% 8%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1.4fr 0.5fr;
      align-items: start;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-col h4 {
      font-size: clamp(14px, 1.2vw, 14px);
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      color: #ccc;
      text-decoration: none;
      font-size: clamp(12px, 1.1vw, 14px);
      transition: color 0.2s;
      font-weight: 400;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: clamp(12px, 1.1vw, 14px);
      color: #ccc;
    }

    .footer-contact-item svg {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      fill: #ccc;
    }

    .footer-social {
      display: flex;
      gap: 18px;
      align-items: center;
    }

    .footer-social a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-social a:hover {
      color: #fff;
    }

    .footer-social svg {
      width: 26px;
      height: 26px;
      fill: #ccc;
      transition: fill 0.2s;
    }

    .footer-social a:hover svg {
      fill: #fff;
    }

    /* RESPONSIVE BREAKPOINTS - Preserving desktop view while adding responsive behavior */
    @media (min-width: 1024px) and (max-width: 1280px) {
      .lp-btn {
        margin: 10px 40px;
      }

      nav {
        gap: 15%;
        padding: 0px 40px;
      }
    }

    @media (max-width: 1024px) {
      .lp-btn {
        margin: 10px 20px;
      }

      .devices3-wrapper {
        margin: 53px 50px;
        padding: 0 45px;
      }

      .devices3-img img {
        width: 180px;
      }

      .use-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }

      .section-title {
        font-size: 2.5rem;
      }

      .cards {
        grid-template-columns: repeat(2, 1fr);
      }

      .ct-avatar-row {
        display: block;
      }
    }

    @media (max-width: 1024px) {
      .hero-right {
        position: absolute;
        inset: 0;
        z-index: 1;
      }

      .hero-left {
        padding: 36px 28px 32px;
        justify-content: flex-end;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(13, 10, 26, 0.96) 0%, rgba(13, 10, 26, 0.7) 60%, transparent 100%);
        z-index: 2;
        height: auto;
      }
    }

    @media (max-width: 920px) {
      .devices3-wrapper {
        margin: 30px 20px;
        padding: 0 40px;
      }

      .logo img {
        width: 100px;
      }

      nav {
        padding: 0 24px;
        justify-content: space-between;
        gap: 0;
      }

      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
      }

      .hero-left {
        padding: 36px 28px 32px;
        justify-content: flex-end;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(13, 10, 26, 0.96) 0%, rgba(13, 10, 26, 0.7) 60%, transparent 100%);
        z-index: 2;
        height: auto;
      }

      .hero-right {
        position: absolute;
        inset: 0;
        z-index: 1;
      }

      .hero-title {
        font-size: clamp(42px, 7vw, 52px);
      }

      .hero-desc {
        font-size: 15px;
        max-width: 100%;
      }

      .lp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
      }

      .fm-section {
        padding: 30px 24px 50px;
      }

      .fm-box {
        padding: 50px 30px;
      }

      .ct-section {
        padding: 40px 20px 50px;
      }

      .ct-box {
        padding: 40px 24px;
      }

      .ct-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      footer {
        padding: 50px 24px 36px;
      }

      .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
        padding: 2% 0% 4% 4%;
      }
    }

    @media (max-width: 768px) {

      .devices3-wrapper {
        padding: 0 40px;
        margin: 30px 0;
      }

      .devices3-card {
        flex-direction: column;
      }

      .devices3-img {
        width: 100%;
        height: 220px;
      }

      .devices3-img img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        opacity: 0.9;
      }

      .devices3-content {
        padding: 20px 24px;
      }

      .devices3-btn {
        align-self: flex-start;
      }

      .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .ct-avatar-row {
        display: block;
      }
    }

    @media (max-width: 640px) {
      .use-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
      }

      .use-card {
        aspect-ratio: 1 / 1;
      }
    }

    @media (max-width: 600px) {
      .cards {
        grid-template-columns: 1fr;
      }

      .card {
        display: grid;
        grid-template-columns: 2fr 1fr;
        align-items: center;
        gap: 15px;
        padding: 10px;
      }

      .card img {
        width: 90px;
        height: 90px;
        border-radius: 10px;
        flex-shrink: 0;
      }

      .card h3 {
        font-size: 16px;
        padding: 0;
        background: none;
      }

      .use-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .devices3-card {
        flex: 0 0 50%;
      }

      nav {
        padding: 0 16px;
      }

      .hero-left {
        padding: 24px 20px 28px;
      }

      .hero-title {
        font-size: clamp(28px, 9vw, 42px);
        margin-bottom: 16px;
      }

      .hero-desc {
        font-size: 14px;
        line-height: 1.65;
      }
    }

    @media (max-width: 540px) {
      .lp-section {
        padding: 40px 16px 32px;
      }

      .lp-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .lp-card {
        padding: 24px 20px;
      }

      .lp-card-features,
      .lp-card-features1 {
        gap: 14px;
        margin-bottom: 24px;
      }

      .lp-btn {
        margin: 10px 0;
        width: 100%;
      }

      .fm-section {
        padding: 20px 16px 40px;
      }

      .fm-box {
        padding: 40px 20px;
        gap: 20px;
        border-radius: 16px;
      }

      .fm-btn {
        width: 100%;
        padding: 15px 0;
        font-size: 20px;
      }

      .fm-subtitle {
        font-size: 20px;
      }

      .ct-section {
        padding: 30px 14px 40px;
      }

      .ct-box {
        padding: 30px 16px 36px;
        border-radius: 14px;
      }

      .ct-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .ct-btn {
        padding: 12px 36px;
      }

      footer {
        padding: 40px 16px 30px;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 2% 0% 4% 0;
      }

      .footer-social {
        gap: 22px;
      }
    }

    @media (max-width: 480px) {
      .devices3-wrapper {
        padding: 0 36px;
      }

      .devices3-track {
        gap: 16px;
      }

      .devices3-img {
        height: 180px;
      }

      .devices3-img img {
        height: 180px;
        opacity: 0.8;
      }

      .devices3-content {
        padding: 16px 18px;
      }

      .devices3-content h3 {
        margin-bottom: 12px;
      }

      .devices3-content ul {
        margin-bottom: 16px;
      }

      .devices3-btn {
        padding: 8px 22px;
        font-size: 14px;
      }

      .devices3-nav {
        width: 30px;
        height: 30px;
        font-size: 13px;
      }

      .devices3-viewall {
        padding: 12px 28px;
        margin-top: 36px;
      }
    }

    @media (max-width: 360px) {
      .devices3-wrapper {
        padding: 0 32px;
      }

      .devices3-content {
        padding: 14px 14px;
      }
    }