    :root {
      --primary: #0a2540;
      --accent: #00b4d8;
      --accent2: #0077b6;
      --green: #00c48c;
      --light-bg: #f4f8fb;
      --white: #ffffff;
      --text-muted: #6b7280;
      --card-border: #e3eaf3;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #1a1a2e;
      background: #fff;
      overflow-x: hidden
    }

    /* ============================================================ NAVBAR */
    .navbar-wrapper {
      background: #fff;
      border-bottom: 1px solid rgba(0, 0, 0, 0.07);
      position: sticky;
      top: 0;
      z-index: 1050;
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06)
    }

    .main-navbar {
      display: flex;
      align-items: center;
      height: 68px;
      padding: 0 40px;
      max-width: 1320px;
      margin: 0 auto
    }

    .nav-brand {
      font-size: 1.65rem;
      font-weight: 900;
      color: var(--primary);
      text-decoration: none;
      letter-spacing: -1px;
      margin-right: 36px;
      flex-shrink: 0
    }

    .nav-brand span {
      color: var(--accent)
    }

    .nav-items {
      display: flex;
      align-items: center;
      list-style: none;
      margin: 0;
      padding: 0;
      flex: 1;
      gap: 2px
    }

    .nav-item-custom {
      position: static
    }

    .nav-link-custom {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 0 14px;
      height: 68px;
      font-size: 0.88rem;
      font-weight: 600;
      color: #374151;
      text-decoration: none;
      transition: color 0.2s;
      white-space: nowrap;
      cursor: pointer;
      border-bottom: 2px solid transparent
    }

    .nav-link-custom:hover, .nav-item-custom:hover .nav-link-custom {
      color: var(--accent2);
      border-bottom-color: var(--accent2)
    }

    .nav-link-custom .chevron {
      font-size: 0.7rem;
      transition: transform 0.2s
    }

    .nav-item-custom:hover .nav-link-custom .chevron {
      transform: rotate(180deg)
    }

    .mega-menu {
      position: absolute;
      left: 0;
      right: 0;
      top: 68px;
      background: #fff;
      border-top: 2px solid var(--accent);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
      padding: 36px 0 40px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: all 0.22s ease;
      z-index: 999
    }

    .nav-item-custom:hover .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0)
    }

    .mega-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      gap: 0 40px
    }

    .mega-inner.cols-4 {
      grid-template-columns: 2fr 1fr 1fr 1fr
    }

    .mega-inner.cols-3 {
      grid-template-columns: 2fr 1fr 1fr
    }

    .mega-inner.cols-2 {
      grid-template-columns: 1.4fr 1fr
    }

    .mega-featured {
      background: linear-gradient(135deg, var(--primary) 0%, #0d3b6e 100%);
      border-radius: 14px;
      padding: 28px 26px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 220px
    }

    .mega-featured .feat-tag {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px
    }

    .mega-featured h4 {
      font-size: 1.15rem;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 10px
    }

    .mega-featured p {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.6;
      margin-bottom: 18px
    }

    .mega-featured .feat-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--accent);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 700;
      padding: 8px 16px;
      border-radius: 6px;
      text-decoration: none;
      width: fit-content
    }

    .mega-col h6 {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.8px;
      color: #9ca3af;
      margin-bottom: 14px;
      padding-bottom: 10px;
      border-bottom: 1px solid #f0f0f0
    }

    .mega-col ul {
      list-style: none;
      padding: 0;
      margin: 0
    }

    .mega-col ul li a {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 10px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.15s;
      margin-bottom: 4px
    }

    .mega-col ul li a:hover {
      background: #f4f8fb
    }

    .mega-col ul li a .m-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: rgba(0, 180, 216, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent2);
      font-size: 0.95rem;
      flex-shrink: 0
    }

    .mega-col ul li a .m-title {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--primary);
      display: block
    }

    .mega-col ul li a .m-desc {
      font-size: 0.77rem;
      color: #9ca3af;
      display: block;
      margin-top: 1px
    }

    .mega-bottom-bar {
      max-width: 1320px;
      margin: 24px auto 0;
      padding: 16px 40px 0;
      border-top: 1px solid #f0f4f8;
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap
    }

    .mega-bottom-bar span {
      font-size: 0.78rem;
      color: #9ca3af
    }

    .mega-bottom-bar a {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--accent2);
      text-decoration: none;
      padding: 5px 14px;
      border: 1px solid var(--card-border);
      border-radius: 20px;
      transition: all 0.15s
    }

    .mega-bottom-bar a:hover {
      background: var(--accent2);
      color: #fff;
      border-color: var(--accent2)
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
      flex-shrink: 0
    }

    .btn-nav-login {
      font-size: 0.86rem;
      font-weight: 600;
      color: var(--primary);
      text-decoration: none;
      padding: 8px 16px;
      border-radius: 6px;
      transition: background 0.15s
    }

    .btn-nav-login:hover {
      background: #f4f8fb
    }

    .btn-nav-cta {
      font-size: 0.86rem;
      font-weight: 700;
      color: #fff;
      background: var(--accent2);
      text-decoration: none;
      padding: 9px 20px;
      border-radius: 7px;
      transition: background 0.2s, transform 0.2s
    }

    .btn-nav-cta:hover {
      background: var(--primary);
      transform: translateY(-1px)
    }

    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--primary);
      cursor: pointer;
      margin-left: auto
    }

    /* ============================================================ HERO */
    .hero-section {
      background: linear-gradient(135deg, #07192e 0%, #0a2540 55%, #0d3b6e 100%);
      min-height: calc(100vh - 68px);
      display: flex;
      align-items: center;
      padding: 70px 0 60px;
      position: relative;
      overflow: hidden
    }

    .hero-blob-1 {
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 65%);
      border-radius: 50%;
      top: -150px;
      right: -100px;
      pointer-events: none
    }

    .hero-blob-2 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(0, 119, 182, 0.1) 0%, transparent 65%);
      border-radius: 50%;
      bottom: -100px;
      left: -60px;
      pointer-events: none
    }

    .hero-blob-3 {
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(0, 196, 140, 0.07) 0%, transparent 65%);
      border-radius: 50%;
      bottom: 80px;
      right: 200px;
      pointer-events: none
    }

    .hero-container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 40px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px
    }

    .hero-left {
      position: relative;
      z-index: 2
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 180, 216, 0.12);
      border: 1px solid rgba(0, 180, 216, 0.3);
      color: var(--accent);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 24px
    }

    .hero-eyebrow .dot {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse-dot 1.8s ease-in-out infinite
    }

    @keyframes pulse-dot {
      0%, 100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.5;
        transform: scale(0.7)
      }
    }

    .hero-title {
      font-size: 3.6rem;
      font-weight: 900;
      color: #fff;
      line-height: 1.12;
      letter-spacing: -1.5px;
      margin-bottom: 22px
    }

    .hero-title .accent-text {
      background: linear-gradient(135deg, var(--accent), #48cae4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .hero-subtitle {
      font-size: 1.08rem;
      color: rgba(255, 255, 255, 0.68);
      line-height: 1.75;
      max-width: 490px;
      margin-bottom: 36px
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 48px
    }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: #fff;
      font-size: 0.95rem;
      font-weight: 700;
      padding: 14px 30px;
      border-radius: 9px;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 6px 24px rgba(0, 180, 216, 0.35)
    }

    .btn-hero-primary:hover {
      background: #0096c7;
      color: #fff;
      transform: translateY(-2px)
    }

    .btn-hero-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.07);
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.95rem;
      font-weight: 600;
      padding: 13px 26px;
      border-radius: 9px;
      text-decoration: none;
      border: 1.5px solid rgba(255, 255, 255, 0.18);
      transition: all 0.2s
    }

    .btn-hero-secondary:hover {
      background: rgba(255, 255, 255, 0.12);
      color: #fff
    }

    .hero-stats {
      display: flex;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px
    }

    .hero-stat {
      flex: 1;
      padding-right: 24px;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
      margin-right: 24px
    }

    .hero-stat:last-child {
      border-right: none;
      margin-right: 0;
      padding-right: 0
    }

    .hero-stat .s-num {
      font-size: 1.9rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1px;
      line-height: 1;
      margin-bottom: 4px
    }

    .hero-stat .s-label {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.45);
      text-transform: uppercase;
      letter-spacing: 1.2px
    }

    .hero-right {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center
    }

    .video-frame-wrapper {
      position: relative;
      width: 100%;
      max-width: 580px
    }

    .video-glow {
      position: absolute;
      inset: -20px;
      background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
      border-radius: 24px;
      pointer-events: none
    }

    .video-ring {
      position: absolute;
      inset: -8px;
      border: 1.5px solid rgba(0, 180, 216, 0.25);
      border-radius: 24px;
      pointer-events: none
    }

    .hero-video {
      width: 100%;
      border-radius: 20px;
      display: block;
      position: relative;
      z-index: 1;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
      background: #000
    }

    .video-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 10px;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 2
    }

    .video-badge .vb-icon {
      width: 32px;
      height: 32px;
      background: var(--accent);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: #fff;
      flex-shrink: 0
    }

    .video-badge .vb-title {
      font-size: 0.82rem;
      font-weight: 700;
      color: #fff
    }

    .video-badge .vb-sub {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.55)
    }

    .trust-badge {
      position: absolute;
      top: 24px;
      right: -10px;
      background: #fff;
      border-radius: 12px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
      z-index: 3;
      animation: float-badge 3s ease-in-out infinite
    }

    @keyframes float-badge {
      0%, 100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-6px)
      }
    }

    .trust-badge .tb-icon {
      font-size: 1.3rem;
      color: var(--green)
    }

    .trust-badge .tb-num {
      font-size: 1rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1
    }

    .trust-badge .tb-label {
      font-size: 0.7rem;
      color: #9ca3af
    }

    .stat-badge {
      position: absolute;
      bottom: 28px;
      right: -16px;
      background: var(--primary);
      border: 1px solid rgba(0, 180, 216, 0.3);
      border-radius: 12px;
      padding: 12px 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      z-index: 3;
      animation: float-badge 3s ease-in-out infinite;
      animation-delay: 1.5s
    }

    .stat-badge .sb-num {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--accent)
    }

    .stat-badge .sb-label {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.55);
      margin-top: 2px
    }

    /* ============================================================
       CARD FALLING SECTION — UPDATED with real images
    ============================================================ */
    .card-falling-section {
      background: #f8fafc;
      position: relative
    }

    .cfs-sticky-inner {
      position: sticky;
      top: 68px;
      height: calc(100vh - 68px);
      overflow: hidden;
      display: flex;
      align-items: center
    }

    .cfs-layout {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 40px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 80px;
      height: 100%
    }

    .cfs-left {
      display: flex;
      flex-direction: column;
      justify-content: center
    }

    .cfs-section-tag {
      display: inline-block;
      background: rgba(0, 180, 216, 0.1);
      color: var(--accent2);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 18px
    }

    .cfs-section-title {
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--primary);
      line-height: 1.18;
      letter-spacing: -1px;
      margin-bottom: 16px
    }

    .cfs-section-title span {
      color: var(--accent2)
    }

    .cfs-text-item {
      display: none;
      animation: fadeSlideUp 0.5s ease forwards
    }

    .cfs-text-item.active {
      display: block
    }

    @keyframes fadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .cfs-section-desc {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.75;
      max-width: 440px;
      margin-bottom: 24px
    }

    .cfs-feature-list {
      list-style: none;
      padding: 0;
      margin: 0 0 24px
    }

    .cfs-feature-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      font-weight: 500;
      color: #374151;
      margin-bottom: 10px
    }

    .cfs-feature-list li i {
      color: var(--green);
      font-size: 1rem;
      flex-shrink: 0
    }

    .cfs-cta-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary);
      color: #fff;
      font-size: 0.88rem;
      font-weight: 700;
      padding: 11px 22px;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.2s;
      width: fit-content
    }

    .cfs-cta-link:hover {
      background: var(--accent2);
      color: #fff;
      transform: translateY(-2px)
    }

    .cfs-progress {
      display: flex;
      gap: 8px;
      margin-top: 28px;
      align-items: center
    }

    .cfs-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #d1d5db;
      transition: all 0.3s;
      cursor: pointer
    }

    .cfs-dot.active {
      width: 24px;
      border-radius: 4px;
      background: var(--accent2)
    }

    /* RIGHT: Card stack */
    .cfs-right {
      position: relative;
      height: 520px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .cfs-card {
      position: absolute;
      width: 100%;
      max-width: 460px;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
      transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.65s ease, box-shadow 0.4s ease;
      will-change: transform, opacity;
      cursor: pointer;
      background: #fff;
    }

    .cfs-card[data-state="behind-2"] {
      transform: translateY(-26px) scale(0.9);
      opacity: 0.35;
      z-index: 1
    }

    .cfs-card[data-state="behind-1"] {
      transform: translateY(-13px) scale(0.95);
      opacity: 0.65;
      z-index: 2
    }

    .cfs-card[data-state="active"] {
      transform: translateY(0) scale(1);
      opacity: 1;
      z-index: 3;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18)
    }

    .cfs-card[data-state="gone"] {
      transform: translateY(-90px) scale(0.86);
      opacity: 0;
      z-index: 0;
      pointer-events: none
    }

    .cfs-card[data-state="incoming"] {
      transform: translateY(90px) scale(0.9);
      opacity: 0;
      z-index: 1;
      pointer-events: none
    }

    /* Card image */
    .cfs-card-img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    /* Card body */
    .cfs-card-body {
      background: #fff;
      padding: 22px 26px 20px
    }

    .cfs-card-badge {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 10px
    }

    .cfs-card-title {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 5px
    }

    .cfs-card-desc {
      font-size: 0.83rem;
      color: var(--text-muted);
      line-height: 1.6
    }

    .cfs-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid #f0f4f8
    }

    .cfs-card-stat-num {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--primary)
    }

    .cfs-card-stat-label {
      font-size: 0.7rem;
      color: #9ca3af;
      margin-top: 1px
    }

    .cfs-card-arrow {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: #fff;
      flex-shrink: 0
    }

    /* ============================================================ BEYOND PAYMENTS */
    .beyond-section {
      background: var(--primary);
      padding: 120px 0;
      position: relative;
      overflow: hidden
    }

    .beyond-section::before {
      content: '';
      position: absolute;
      top: -200px;
      left: -200px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none
    }

    .beyond-section::after {
      content: '';
      position: absolute;
      bottom: -150px;
      right: -150px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(0, 196, 140, 0.06) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none
    }

    .beyond-container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 2
    }

    .beyond-tag {
      display: inline-block;
      background: rgba(0, 180, 216, 0.12);
      border: 1px solid rgba(0, 180, 216, 0.25);
      color: var(--accent);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 20px;
      margin-bottom: 22px
    }

    .beyond-title {
      font-size: 3rem;
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      letter-spacing: -1px;
      margin-bottom: 20px
    }

    .beyond-title .hl {
      background: linear-gradient(135deg, var(--accent), #48cae4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .beyond-desc {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.62);
      line-height: 1.78;
      max-width: 460px;
      margin-bottom: 40px
    }

    .beyond-stats-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 40px
    }

    .beyond-stat-box {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      padding: 20px 22px;
      transition: border-color 0.3s, background 0.3s
    }

    .beyond-stat-box:hover {
      border-color: rgba(0, 180, 216, 0.35);
      background: rgba(0, 180, 216, 0.06)
    }

    .beyond-stat-num {
      font-size: 2rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1px;
      line-height: 1;
      margin-bottom: 5px
    }

    .beyond-stat-label {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.4
    }

    .beyond-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: #fff;
      font-size: 0.95rem;
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 9px;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 6px 24px rgba(0, 180, 216, 0.3)
    }

    .beyond-cta:hover {
      background: #0096c7;
      color: #fff;
      transform: translateY(-2px)
    }

    .beyond-right {
      position: relative;
      height: 560px
    }

    .bf-tile {
      position: absolute;
      border-radius: 18px;
      padding: 22px 24px;
      box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
      animation-iteration-count: infinite;
      animation-direction: alternate
    }

    .bf-tile-main {
      width: 260px;
      background: linear-gradient(135deg, #0d3b6e, #1a56a0);
      border: 1px solid rgba(0, 180, 216, 0.2);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 5;
      animation: floatMain 4s ease-in-out infinite alternate
    }

    @keyframes floatMain {
      0% {
        transform: translate(-50%, -50%) translateY(0) rotate(0deg)
      }

      100% {
        transform: translate(-50%, -50%) translateY(-12px) rotate(1deg)
      }
    }

    .bf-tile-main .tile-icon {
      font-size: 2rem;
      color: var(--accent);
      margin-bottom: 12px;
      display: block
    }

    .bf-tile-main .tile-title {
      font-size: 1rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 5px
    }

    .bf-tile-main .tile-desc {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.5
    }

    .tile-bar-row {
      margin-top: 14px
    }

    .tile-bar-label {
      display: flex;
      justify-content: space-between;
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 5px
    }

    .tile-bar-bg {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      height: 5px
    }

    .tile-bar-fill {
      height: 5px;
      border-radius: 4px;
      background: linear-gradient(90deg, var(--accent), #48cae4)
    }

    .bf-tile-tl {
      width: 180px;
      background: linear-gradient(135deg, #064e3b, #065f46);
      border: 1px solid rgba(0, 196, 140, 0.2);
      top: 20px;
      left: 0;
      animation: floatTL 5s ease-in-out infinite alternate;
      z-index: 4
    }

    @keyframes floatTL {
      0% {
        transform: translateY(0) rotate(-3deg)
      }

      100% {
        transform: translateY(-14px) rotate(-1deg)
      }
    }

    .bf-tile-tr {
      width: 170px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      top: 30px;
      right: 0;
      animation: floatTR 4.5s ease-in-out infinite alternate;
      z-index: 4;
      animation-delay: 0.8s
    }

    @keyframes floatTR {
      0% {
        transform: translateY(0) rotate(3deg)
      }

      100% {
        transform: translateY(-10px) rotate(1deg)
      }
    }

    .bf-tile-bl {
      width: 190px;
      background: linear-gradient(135deg, #1e1b4b, #3730a3);
      border: 1px solid rgba(165, 180, 252, 0.15);
      bottom: 20px;
      left: 10px;
      animation: floatBL 5.5s ease-in-out infinite alternate;
      z-index: 4;
      animation-delay: 1.2s
    }

    @keyframes floatBL {
      0% {
        transform: translateY(0) rotate(2deg)
      }

      100% {
        transform: translateY(-12px) rotate(-1deg)
      }
    }

    .bf-tile-br {
      width: 175px;
      background: linear-gradient(135deg, #7c2d12, #c2410c);
      border: 1px solid rgba(253, 186, 116, 0.15);
      bottom: 30px;
      right: 0;
      animation: floatBR 4.2s ease-in-out infinite alternate;
      z-index: 4;
      animation-delay: 0.4s
    }

    @keyframes floatBR {
      0% {
        transform: translateY(0) rotate(-2deg)
      }

      100% {
        transform: translateY(-14px) rotate(1deg)
      }
    }

    .bf-tile-sm {
      width: 130px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      top: 46%;
      right: 20px;
      animation: floatSM 3.8s ease-in-out infinite alternate;
      z-index: 3;
      animation-delay: 2s
    }

    @keyframes floatSM {
      0% {
        transform: translateY(0) rotate(0deg)
      }

      100% {
        transform: translateY(-8px) rotate(2deg)
      }
    }

    .bf-dot {
      position: absolute;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0.25;
      animation: pulseDot 2.5s ease-in-out infinite
    }

    @keyframes pulseDot {
      0%, 100% {
        transform: scale(1);
        opacity: 0.25
      }

      50% {
        transform: scale(1.4);
        opacity: 0.5
      }
    }

    .tile-sm-icon {
      font-size: 1.3rem;
      margin-bottom: 8px;
      display: block
    }

    .tile-sm-num {
      font-size: 1.2rem;
      font-weight: 900;
      color: #fff;
      line-height: 1
    }

    .tile-sm-label {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 3px
    }

    .tile-badge {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 12px;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px
    }

    .tile-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px
    }

    .tile-label {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.5)
    }

    .tile-val {
      font-size: 0.8rem;
      font-weight: 700;
      color: #fff
    }

    .beyond-orbit {
      position: absolute;
      border-radius: 50%;
      border: 1px dashed rgba(0, 180, 216, 0.12);
      pointer-events: none
    }

    .beyond-orbit-1 {
      width: 380px;
      height: 380px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: spinOrbit 30s linear infinite
    }

    .beyond-orbit-2 {
      width: 520px;
      height: 520px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: spinOrbit 45s linear infinite reverse
    }

    @keyframes spinOrbit {
      from {
        transform: translate(-50%, -50%) rotate(0deg)
      }

      to {
        transform: translate(-50%, -50%) rotate(360deg)
      }
    }

    /* ============================================================ RESPONSIVE */
    @media(max-width:1024px) {
      .nav-items, .nav-right {
        display: none
      }

      .nav-hamburger {
        display: flex
      }

      .hero-container, .cfs-layout, .beyond-container {
        grid-template-columns: 1fr;
        gap: 40px
      }

      .hero-title {
        font-size: 2.4rem
      }

      .trust-badge, .stat-badge {
        display: none
      }

      .cfs-right {
        height: 400px
      }

      .cfs-card {
        max-width: 380px
      }

      .beyond-right {
        height: 400px;
        margin-top: 40px
      }

      .beyond-title {
        font-size: 2.2rem
      }
    }

    @media(max-width:768px) {
      .main-navbar {
        padding: 0 20px
      }

      .hero-container, .cfs-layout, .beyond-container {
        padding: 0 20px
      }

      .hero-title {
        font-size: 2rem
      }

      .hero-stats {
        flex-wrap: wrap
      }

      .beyond-stats-row {
        grid-template-columns: 1fr 1fr
      }

      .beyond-section {
        padding: 80px 0
      }

      .cfs-section-title {
        font-size: 2rem
      }
    }

    :root {
      --primary: #0a2540;
      --accent: #00b4d8;
      --accent2: #0077b6;
      --green: #00c48c;
      --white: #ffffff;
      --text-muted: #6b7280;
      --card-border: #e3eaf3;
      --bg-light: #f4f8fb;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: #1a1a2e;
      overflow-x: hidden;
    }

    /* ===================== SECTION WRAPPER */
    .merchants-section {
      background: #fff;
      padding: 110px 0 120px;
      position: relative;
      overflow: hidden;
    }

    /* subtle grid bg */
    .merchants-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 119, 182, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 119, 182, 0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    /* Blobs */
    .m-blob {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(70px);
    }

    .m-blob-1 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(0, 180, 216, 0.07), transparent 70%);
      top: -100px;
      left: -150px;
    }

    .m-blob-2 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(0, 196, 140, 0.06), transparent 70%);
      bottom: -80px;
      right: -100px;
    }

    .merchants-container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
      z-index: 2;
    }

    /* ===================== HEADING */
    .merchants-head {
      text-align: center;
      margin-bottom: 72px;
    }

    .merchants-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 119, 182, 0.07);
      border: 1px solid rgba(0, 119, 182, 0.15);
      color: var(--accent2);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 30px;
      margin-bottom: 22px;
    }

    .merchants-tag .live-dot {
      width: 7px;
      height: 7px;
      background: var(--green);
      border-radius: 50%;
      animation: blink 1.6s ease-in-out infinite;
    }

    @keyframes blink {
      0%, 100% {
        opacity: 1
      }

      50% {
        opacity: 0.3
      }
    }

    .merchants-title {
      font-size: 3.2rem;
      font-weight: 900;
      color: var(--primary);
      line-height: 1.15;
      letter-spacing: -1.2px;
      margin-bottom: 18px;
    }

    .merchants-title em {
      font-style: normal;
      background: linear-gradient(135deg, var(--accent2), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .merchants-subtitle {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.75;
    }

    /* ===================== TABS */
    .merchants-tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 56px;
      flex-wrap: wrap;
    }

    .m-tab {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 22px;
      border-radius: 50px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-muted);
      background: #f4f8fb;
      border: 1.5px solid #e8eef5;
      cursor: pointer;
      transition: all 0.25s ease;
      user-select: none;
    }

    .m-tab i {
      font-size: 1rem;
    }

    .m-tab:hover {
      border-color: var(--accent2);
      color: var(--accent2);
      background: rgba(0, 119, 182, 0.05);
    }

    .m-tab.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
      box-shadow: 0 6px 20px rgba(10, 37, 64, 0.2);
    }

    /* ===================== CARDS GRID */
    .merchants-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    /* ---- MAIN CARD ---- */
    .m-card {
      background: #fff;
      border: 1.5px solid #eaf0f7;
      border-radius: 22px;
      overflow: hidden;
      position: relative;
      transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.35s ease,
        border-color 0.3s ease;
      cursor: pointer;
    }

    .m-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.1);
      border-color: transparent;
    }

    /* Colored top bar */
    .m-card-topbar {
      height: 5px;
      width: 100%;
    }

    /* Card image area */
    .m-card-visual {
      width: 100%;
      height: 230px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .m-card-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.5s ease;
    }

    .m-card:hover .m-card-visual img {
      transform: scale(1.05);
    }

    /* Gradient overlay on image */
    .m-card-visual::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 80px;
      background: linear-gradient(to top, #fff, transparent);
    }

    /* Card body */
    .m-card-body {
      padding: 22px 26px 26px;
    }

    .m-card-icon {
      width: 46px;
      height: 46px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 14px;
      flex-shrink: 0;
    }

    .m-card-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .m-card-title {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .m-card-desc {
      font-size: 0.87rem;
      color: var(--text-muted);
      line-height: 1.68;
      margin-bottom: 20px;
    }

    /* Feature chips */
    .m-card-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 22px;
    }

    .m-chip {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.74rem;
      font-weight: 600;
      padding: 5px 11px;
      border-radius: 20px;
      background: #f4f8fb;
      color: #374151;
      border: 1px solid #e8eef5;
    }

    .m-chip i {
      font-size: 0.78rem;
    }

    /* Card CTA */
    .m-card-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 18px;
      border-top: 1px solid #f0f4f8;
    }

    .m-card-stat {}

    .m-card-stat-num {
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--primary);
      line-height: 1;
    }

    .m-card-stat-label {
      font-size: 0.7rem;
      color: #9ca3af;
      margin-top: 2px;
    }

    .m-card-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 0.82rem;
      font-weight: 700;
      padding: 9px 18px;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.2s;
      color: #fff;
    }

    .m-card-btn:hover {
      opacity: 0.88;
      transform: translateX(3px);
      color: #fff;
    }

    /* ---- LARGE FEATURED CARD (spans 2 cols) ---- */
    .m-card-large {
      grid-column: span 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .m-card-large .m-card-visual {
      height: 100%;
      min-height: 320px;
      border-radius: 0;
    }

    .m-card-large .m-card-visual::after {
      height: 0;
    }

    .m-card-large .m-card-body {
      padding: 36px 34px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .m-card-large .m-card-title {
      font-size: 1.5rem;
    }

    .m-card-large .m-card-desc {
      font-size: 0.9rem;
    }

    /* ---- TALL CARD (spans 2 rows via auto) ---- */
    .m-card-tall {
      grid-row: span 2;
    }

    .m-card-tall .m-card-visual {
      height: 320px;
    }

    /* ===================== BOTTOM TRUST BAR */
    .merchants-trust {
      margin-top: 64px;
      background: var(--primary);
      border-radius: 22px;
      padding: 36px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }

    .trust-left {}

    .trust-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 6px;
    }

    .trust-sub {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .trust-stats {
      display: flex;
      gap: 40px;
      align-items: center;
    }

    .trust-stat {}

    .trust-stat-num {
      font-size: 1.7rem;
      font-weight: 900;
      color: var(--accent);
      letter-spacing: -1px;
      line-height: 1;
    }

    .trust-stat-label {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 3px;
    }

    .trust-divider {
      width: 1px;
      height: 44px;
      background: rgba(255, 255, 255, 0.1);
    }

    .trust-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: #fff;
      font-size: 0.92rem;
      font-weight: 700;
      padding: 13px 26px;
      border-radius: 9px;
      text-decoration: none;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .trust-cta:hover {
      background: #0096c7;
      color: #fff;
      transform: translateY(-2px);
    }

    /* ===================== ANIMATION on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===================== RESPONSIVE */
    @media(max-width: 1024px) {
      .merchants-grid {
        grid-template-columns: 1fr 1fr;
      }

      .m-card-large {
        grid-column: span 2;
      }

      .m-card-tall {
        grid-row: span 1;
      }

      .m-card-tall .m-card-visual {
        height: 230px;
      }

      .merchants-title {
        font-size: 2.4rem;
      }
    }

    @media(max-width: 768px) {
      .merchants-section {
        padding: 80px 0 90px;
      }

      .merchants-container {
        padding: 0 20px;
      }

      .merchants-grid {
        grid-template-columns: 1fr;
      }

      .m-card-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
      }

      .m-card-large .m-card-visual {
        height: 220px;
      }

      .merchants-title {
        font-size: 2rem;
      }

      .trust-stats {
        gap: 20px;
      }

      .merchants-trust {
        padding: 28px 24px;
        flex-direction: column;
        align-items: flex-start;
      }
    }


    /* ===================== OUR PRODUCTS SCROLL */
    .products-section {
      background: #fff;
      padding: 110px 0 120px;
      position: relative;
      overflow: hidden;
    }

    .products-container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
      z-index: 2;
    }

    .products-head {
      margin-bottom: 56px;
    }

    .products-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 119, 182, 0.07);
      border: 1px solid rgba(0, 119, 182, 0.15);
      color: #0077b6;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 30px;
      margin-bottom: 18px;
    }

    .products-title {
      font-size: 2.8rem;
      font-weight: 900;
      color: #0a2540;
      line-height: 1.18;
      letter-spacing: -1px;
      margin-bottom: 14px;
    }

    .products-title span {
      background: linear-gradient(135deg, #0077b6, #00b4d8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .products-head-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .products-desc {
      font-size: 1rem;
      color: #6b7280;
      max-width: 480px;
      line-height: 1.7;
    }

    .products-nav {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }

    .prod-nav-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid #e3eaf3;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: #0a2540;
      cursor: pointer;
      transition: all 0.2s;
    }

    .prod-nav-btn:hover {
      background: #0a2540;
      color: #fff;
      border-color: #0a2540;
    }

    /* Scroll track */
    .prod-scroll-wrap {
      overflow: hidden;
      position: relative;
      margin: 0 -40px;
      padding: 0 40px;
    }

    .prod-scroll-track {
      display: flex;
      gap: 28px;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      will-change: transform;
    }

    .prod-card {
      flex-shrink: 0;
      width: 300px;
      background: #fff;
      border: 1.5px solid #eaf0f7;
      border-radius: 22px;
      overflow: hidden;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s;
      cursor: pointer;
    }

    .prod-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.1);
      border-color: rgba(0, 119, 182, 0.25);
    }

    .prod-card-img {
      width: 100%;
      height: 240px;
      object-fit: contain;
      object-position: center;
      background: #f8fafc;
      padding: 20px;
      transition: transform 0.5s ease;
    }

    .prod-card:hover .prod-card-img {
      transform: scale(1.06);
    }

    .prod-card-body {
      padding: 20px 22px 22px;
      border-top: 1px solid #f0f4f8;
    }

    .prod-card-tag {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 12px;
      margin-bottom: 10px;
      display: inline-block;
    }

    .prod-card-name {
      font-size: 1.05rem;
      font-weight: 800;
      color: #0a2540;
      margin-bottom: 5px;
    }

    .prod-card-desc {
      font-size: 0.82rem;
      color: #6b7280;
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .prod-card-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 12px;
      border-top: 1px solid #f4f8fb;
    }

    .prod-card-price {
      font-size: 0.8rem;
      color: #9ca3af;
    }

    .prod-card-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 700;
      color: #0077b6;
      text-decoration: none;
      transition: gap 0.2s;
    }

    .prod-card-btn:hover {
      gap: 10px;
      color: #0077b6;
    }

    /* Dots */
    .prod-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 36px;
    }

    .prod-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #d1d5db;
      cursor: pointer;
      transition: all 0.3s;
    }

    .prod-dot.active {
      width: 24px;
      border-radius: 4px;
      background: #0077b6;
    }

    /* ===================== FOOTER */
    .site-footer {
      background: #07192e;
      padding: 72px 0 0;
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), transparent);
    }

    .footer-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 180, 216, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .footer-container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
      z-index: 2;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-brand {}

    .footer-logo {
      font-size: 1.7rem;
      font-weight: 900;
      color: #fff;
      text-decoration: none;
      letter-spacing: -1px;
      margin-bottom: 16px;
      display: inline-block;
    }

    .footer-logo span {
      color: #00b4d8;
    }

    .footer-tagline {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.7;
      max-width: 260px;
      margin-bottom: 24px;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
    }

    .f-social {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.2s;
    }

    .f-social:hover {
      background: #00b4d8;
      color: #fff;
      border-color: #00b4d8;
    }

    .footer-col h6 {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col ul li {
      margin-bottom: 12px;
    }

    .footer-col ul li a {
      font-size: 0.87rem;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .footer-col ul li a:hover {
      color: #00b4d8;
    }

    .footer-col ul li a i {
      font-size: 0.75rem;
      opacity: 0;
      transition: all 0.2s;
    }

    .footer-col ul li a:hover i {
      opacity: 1;
      transform: translateX(3px);
    }

    /* Newsletter */
    .footer-newsletter {
      margin-top: 20px;
    }

    .footer-newsletter p {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 12px;
    }

    .footer-newsletter-form {
      display: flex;
      gap: 0;
      border-radius: 9px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-newsletter-form input {
      flex: 1;
      background: rgba(255, 255, 255, 0.05);
      border: none;
      padding: 11px 16px;
      font-size: 0.85rem;
      color: #fff;
      outline: none;
    }

    .footer-newsletter-form input::placeholder {
      color: rgba(255, 255, 255, 0.25);
    }

    .footer-newsletter-form button {
      background: #00b4d8;
      color: #fff;
      border: none;
      padding: 11px 18px;
      font-size: 0.85rem;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }

    .footer-newsletter-form button:hover {
      background: #0096c7;
    }

    /* Badges */
    .footer-badges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .f-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      padding: 6px 12px;
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.4);
      font-weight: 600;
    }

    .f-badge i {
      color: #00c48c;
      font-size: 0.8rem;
    }

    /* Footer bottom */
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      flex-wrap: wrap;
      gap: 14px;
    }

    .footer-bottom-left {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.28);
    }

    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    .footer-bottom-links a {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.28);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-bottom-links a:hover {
      color: #00b4d8;
    }

    @media(max-width:1024px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      .cta-title {
        font-size: 2.4rem;
      }

      .products-title, .testi-title {
        font-size: 2.2rem;
      }

      .products-head-row {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media(max-width:768px) {
      .footer-top {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .testi-container, .products-container, .cta-container, .footer-container {
        padding: 0 20px;
      }

      .cta-title {
        font-size: 2rem;
      }

      .prod-scroll-wrap {
        margin: 0 -20px;
        padding: 0 20px;
      }

      .trust-stats {
        gap: 16px;
      }
    }


    /* ===================== TESTIMONIALS V2 */
    .testi-section {
      background: #0a2540;
      padding: 110px 0 120px;
      position: relative;
      overflow: hidden;
    }

    .testi-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 180, 216, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .testi-blob {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(80px);
    }

    .testi-blob-1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 180, 216, 0.1), transparent 65%);
      top: -150px;
      right: -100px;
    }

    .testi-blob-2 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(0, 196, 140, 0.07), transparent 65%);
      bottom: -100px;
      left: -80px;
    }

    .testi-container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
      z-index: 2;
    }

    .testi-head {
      text-align: center;
      margin-bottom: 64px;
    }

    .testi-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 180, 216, 0.12);
      border: 1px solid rgba(0, 180, 216, 0.25);
      color: #00b4d8;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 30px;
      margin-bottom: 20px;
    }

    .testi-title {
      font-size: 2.9rem;
      font-weight: 900;
      color: #fff;
      line-height: 1.18;
      letter-spacing: -1px;
      margin-bottom: 14px;
    }

    .testi-title span {
      background: linear-gradient(135deg, #00b4d8, #48cae4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .testi-subtitle {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.45);
      max-width: 500px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ---- Marquee ---- */
    .testi-marquee-wrap {
      overflow: hidden;
      position: relative;
    }

    .testi-marquee-wrap::before,
    .testi-marquee-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 3;
      pointer-events: none;
    }

    .testi-marquee-wrap::before {
      left: 0;
      background: linear-gradient(90deg, #0a2540, transparent);
    }

    .testi-marquee-wrap::after {
      right: 0;
      background: linear-gradient(-90deg, #0a2540, transparent);
    }

    .testi-marquee {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: marqueeL 50s linear infinite;
    }

    .testi-marquee:hover {
      animation-play-state: paused;
    }

    .testi-marquee.rev {
      animation: marqueeR 55s linear infinite;
      margin-top: 20px;
    }

    .testi-marquee.rev:hover {
      animation-play-state: paused;
    }

    @keyframes marqueeL {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    @keyframes marqueeR {
      0% {
        transform: translateX(-50%)
      }

      100% {
        transform: translateX(0)
      }
    }

    /* ---- Single card ---- */
    .tc {
      flex-shrink: 0;
      width: 360px;
      border-radius: 20px;
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
      cursor: default;
    }

    .tc:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
      border-color: rgba(0, 180, 216, 0.3);
    }

    /* Color variants */
    .tc-blue {
      background: linear-gradient(145deg, #0d2d4e, #0e3a62);
    }

    .tc-teal {
      background: linear-gradient(145deg, #063f35, #0a5247);
    }

    .tc-indigo {
      background: linear-gradient(145deg, #1e1b4b, #282466);
    }

    .tc-orange {
      background: linear-gradient(145deg, #431407, #5c1c08);
    }

    .tc-pink {
      background: linear-gradient(145deg, #500724, #6b0f30);
    }

    .tc-purple {
      background: linear-gradient(145deg, #2e1065, #3b1580);
    }

    /* Glow dot top-right */
    .tc::before {
      content: '';
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      top: -40px;
      right: -40px;
      opacity: 0.15;
      pointer-events: none;
    }

    .tc-blue::before {
      background: radial-gradient(circle, #00b4d8, transparent);
    }

    .tc-teal::before {
      background: radial-gradient(circle, #00c48c, transparent);
    }

    .tc-indigo::before {
      background: radial-gradient(circle, #818cf8, transparent);
    }

    .tc-orange::before {
      background: radial-gradient(circle, #fb923c, transparent);
    }

    .tc-pink::before {
      background: radial-gradient(circle, #f472b6, transparent);
    }

    .tc-purple::before {
      background: radial-gradient(circle, #a78bfa, transparent);
    }

    .tc-quote-icon {
      font-size: 2rem;
      line-height: 1;
      margin-bottom: 14px;
      opacity: 0.4;
    }

    .tc-blue .tc-quote-icon {
      color: #00b4d8;
    }

    .tc-teal .tc-quote-icon {
      color: #00c48c;
    }

    .tc-indigo .tc-quote-icon {
      color: #818cf8;
    }

    .tc-orange .tc-quote-icon {
      color: #fb923c;
    }

    .tc-pink .tc-quote-icon {
      color: #f472b6;
    }

    .tc-purple .tc-quote-icon {
      color: #a78bfa;
    }

    .tc-stars {
      font-size: 0.8rem;
      letter-spacing: 3px;
      margin-bottom: 12px;
    }

    .tc-blue .tc-stars {
      color: #00b4d8;
    }

    .tc-teal .tc-stars {
      color: #00c48c;
    }

    .tc-indigo .tc-stars {
      color: #818cf8;
    }

    .tc-orange .tc-stars {
      color: #fb923c;
    }

    .tc-pink .tc-stars {
      color: #f472b6;
    }

    .tc-purple .tc-stars {
      color: #a78bfa;
    }

    .tc-text {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.72;
      margin-bottom: 22px;
      font-style: italic;
    }

    .tc-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.07);
      margin-bottom: 18px;
    }

    .tc-footer {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .tc-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.88rem;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }

    .tc-blue .tc-avatar {
      background: rgba(0, 180, 216, 0.25);
    }

    .tc-teal .tc-avatar {
      background: rgba(0, 196, 140, 0.25);
    }

    .tc-indigo .tc-avatar {
      background: rgba(129, 140, 248, 0.25);
    }

    .tc-orange .tc-avatar {
      background: rgba(251, 146, 60, 0.25);
    }

    .tc-pink .tc-avatar {
      background: rgba(244, 114, 182, 0.25);
    }

    .tc-purple .tc-avatar {
      background: rgba(167, 139, 250, 0.25);
    }

    .tc-name {
      font-size: 0.88rem;
      font-weight: 700;
      color: #fff;
    }

    .tc-role {
      font-size: 0.74rem;
      color: rgba(255, 255, 255, 0.38);
      margin-top: 2px;
    }

    .tc-badge {
      margin-left: auto;
      font-size: 0.67rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 10px;
      border: 1px solid;
      white-space: nowrap;
    }

    .tc-blue .tc-badge {
      color: #00b4d8;
      border-color: rgba(0, 180, 216, 0.25);
      background: rgba(0, 180, 216, 0.08);
    }

    .tc-teal .tc-badge {
      color: #00c48c;
      border-color: rgba(0, 196, 140, 0.25);
      background: rgba(0, 196, 140, 0.08);
    }

    .tc-indigo .tc-badge {
      color: #818cf8;
      border-color: rgba(129, 140, 248, 0.25);
      background: rgba(129, 140, 248, 0.08);
    }

    .tc-orange .tc-badge {
      color: #fb923c;
      border-color: rgba(251, 146, 60, 0.25);
      background: rgba(251, 146, 60, 0.08);
    }

    .tc-pink .tc-badge {
      color: #f472b6;
      border-color: rgba(244, 114, 182, 0.25);
      background: rgba(244, 114, 182, 0.08);
    }

    .tc-purple .tc-badge {
      color: #a78bfa;
      border-color: rgba(167, 139, 250, 0.25);
      background: rgba(167, 139, 250, 0.08);
    }

    /* Stats row inside section */
    .testi-stats-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-top: 64px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 20px;
      padding: 36px 48px;
      flex-wrap: wrap;
    }

    .testi-stat {
      text-align: center;
      flex: 1;
      min-width: 140px;
      padding: 0 20px;
    }

    .testi-stat+.testi-stat {
      border-left: 1px solid rgba(255, 255, 255, 0.07);
    }

    .testi-stat-num {
      font-size: 2.2rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1px;
      line-height: 1;
      margin-bottom: 6px;
    }

    .testi-stat-num span {
      color: #00b4d8;
    }

    .testi-stat-label {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.38);
      line-height: 1.4;
    }

    /* ===================== CTA V2 */
    .cta-section {
      position: relative;
      overflow: hidden;
      padding: 0;
    }

    .cta-bg-wrap {
      position: relative;
      background:
        linear-gradient(135deg, rgba(7, 25, 46, 0.96) 0%, rgba(10, 37, 64, 0.93) 50%, rgba(13, 59, 110, 0.9) 100%),
        url('https://images.unsplash.com/photo-1556742031-c6961e8560b0?w=1800&q=80') center/cover no-repeat fixed;
      padding: 130px 0;
      overflow: hidden;
    }

    .cta-grid-overlay {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 180, 216, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .cta-blob-1 {
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 180, 216, 0.12), transparent 65%);
      top: -200px;
      right: -150px;
      pointer-events: none;
      filter: blur(50px);
    }

    .cta-blob-2 {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 196, 140, 0.08), transparent 65%);
      bottom: -120px;
      left: -100px;
      pointer-events: none;
      filter: blur(60px);
    }

    .cta-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 180, 216, 0.12);
      border: 1px solid rgba(0, 180, 216, 0.3);
      color: #00b4d8;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 30px;
      margin-bottom: 28px;
    }

    .cta-eyebrow .dot {
      width: 7px;
      height: 7px;
      background: #00c48c;
      border-radius: 50%;
      animation: blink 1.6s ease-in-out infinite;
    }

    .cta-title {
      font-size: 3.5rem;
      font-weight: 900;
      color: #fff;
      line-height: 1.12;
      letter-spacing: -1.5px;
      margin-bottom: 20px;
    }

    .cta-title span {
      background: linear-gradient(135deg, #00b4d8, #48cae4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cta-sub {
      font-size: 1.08rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.75;
      margin: 0 auto 44px;
      max-width: 580px;
    }

    .cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 52px;
    }

    .cta-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #00b4d8;
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      padding: 15px 36px;
      border-radius: 10px;
      text-decoration: none;
      transition: all 0.25s;
      box-shadow: 0 8px 28px rgba(0, 180, 216, 0.35);
    }

    .cta-btn-primary:hover {
      background: #0096c7;
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(0, 180, 216, 0.45);
    }

    .cta-btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.07);
      color: rgba(255, 255, 255, 0.88);
      font-size: 1rem;
      font-weight: 600;
      padding: 14px 30px;
      border-radius: 10px;
      text-decoration: none;
      border: 1.5px solid rgba(255, 255, 255, 0.18);
      transition: all 0.2s;
    }

    .cta-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.13);
      color: #fff;
    }

    /* Feature grid inside CTA */
    .cta-features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 44px;
    }

    .cta-feature {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 14px;
      padding: 20px 16px;
      text-align: center;
      transition: border-color 0.25s, background 0.25s;
    }

    .cta-feature:hover {
      border-color: rgba(0, 180, 216, 0.3);
      background: rgba(0, 180, 216, 0.06);
    }

    .cta-feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin: 0 auto 10px;
    }

    .cta-feature-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .cta-feature-desc {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.5;
    }

    .cta-trust-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      padding-top: 36px;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .cta-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.4);
      font-weight: 500;
    }

    .cta-trust-item i {
      color: #00c48c;
      font-size: 0.95rem;
    }

    @media(max-width:768px) {
      .testi-title {
        font-size: 2rem;
      }

      .testi-stats-row {
        padding: 28px 20px;
        gap: 16px;
      }

      .testi-stat+.testi-stat {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding-top: 16px;
      }

      .cta-title {
        font-size: 2.2rem;
      }

      .cta-features {
        grid-template-columns: 1fr 1fr;
      }

      .testi-container, .cta-container {
        padding: 0 20px;
      }
    }

















    /* ===========================
   MOBILE MENU - FRESH & CLEAN
   =========================== */
    @media (max-width: 1024px) {
      .nav-items {
        display: none !important;
      }

      .nav-right {
        display: none !important;
      }

      .nav-hamburger {
        display: flex !important;
      }

    }

    @media (min-width: 1025px) {
      .nav-hamburger {
        display: none !important;
      }

      #mobileMenuDrawer {
        display: none !important;
      }

      .mobile-nav-overlay {
        display: none !important;
      }
    }

    .nav-hamburger {
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      font-size: 1.6rem;
      color: #0a2540;
      line-height: 1;
      display: none;
    }

    /* DRAWER */
    #mobileMenuDrawer {
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      bottom: 0;
      background: #07192e;
      z-index: 9999;
      overflow-y: auto;
      padding: 24px 20px 40px;
      transform: translateX(100%);
      opacity: 0;
      visibility: hidden;
      transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s ease;
    }

    #mobileMenuDrawer.show {
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
    }

    body.menu-open {
      overflow: hidden;
    }

    /* NAV LIST */
    #mobileMenuDrawer ul.m-nav-list {
      list-style: none;
      padding: 0;
      margin: 0 0 28px 0;
    }

    #mobileMenuDrawer ul.m-nav-list>li {
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    #mobileMenuDrawer ul.m-nav-list>li>a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 4px;
      font-size: 1.05rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.92);
      text-decoration: none;
      width: 100%;
    }

    #mobileMenuDrawer ul.m-nav-list>li>a .chevron {
      transition: transform 0.3s ease;
      color: rgba(255, 255, 255, 0.35);
      font-size: 0.85rem;
    }

    #mobileMenuDrawer ul.m-nav-list>li.open>a .chevron {
      transform: rotate(180deg);
      color: #00b4d8;
    }

    /* SUBMENU */
    #mobileMenuDrawer .m-submenu {
      display: none;
      padding: 0 0 16px 12px;
    }

    #mobileMenuDrawer .m-submenu.open {
      display: block;
    }

    #mobileMenuDrawer .m-submenu h6 {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.25);
      margin: 14px 0 8px;
    }

    #mobileMenuDrawer .m-submenu ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    #mobileMenuDrawer .m-submenu ul li a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 6px;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      border-radius: 8px;
      transition: all 0.2s;
    }

    #mobileMenuDrawer .m-submenu ul li a:hover {
      color: #00b4d8;
      background: rgba(0, 180, 216, 0.07);
      padding-left: 12px;
    }

    #mobileMenuDrawer .m-submenu ul li a .m-icon {
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: #00b4d8;
      flex-shrink: 0;
    }

    #mobileMenuDrawer .m-submenu ul li a .m-title {
      font-size: 0.88rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.85);
      display: block;
    }

    #mobileMenuDrawer .m-submenu ul li a .m-desc {
      font-size: 0.74rem;
      color: rgba(255, 255, 255, 0.3);
      display: block;
      margin-top: 1px;
    }

    /* BUTTONS */
    #mobileMenuDrawer .m-nav-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    #mobileMenuDrawer .m-btn-login {
      display: block;
      width: 100%;
      padding: 16px;
      text-align: center;
      border: 1.5px solid rgba(255, 255, 255, 0.18);
      background: transparent;
      color: rgba(255, 255, 255, 0.9);
      border-radius: 12px;
      font-size: 0.98rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
    }

    #mobileMenuDrawer .m-btn-cta {
      display: block;
      width: 100%;
      padding: 18px;
      text-align: center;
      background: linear-gradient(135deg, #00b4d8, #48cae4);
      color: #fff;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
      transition: all 0.2s;
    }

    #mobileMenuDrawer .m-btn-cta:hover {
      transform: translateY(-2px);
    }





    /* Desktop section — mobile এ hide */
    @media (max-width: 1024px) {
      .card-falling-section {
        display: none !important;
      }
    }

    /* ===========================
   MOBILE PRODUCTS SECTION
   =========================== */

    /* Desktop এ hide */
    .mob-products {
      display: none;
    }

    @media (max-width: 1024px) {

      /* Desktop section hide */
      .card-falling-section {
        display: none !important;
      }

      /* Mobile section show */
      .mob-products {
        display: block;
        padding: 60px 20px 40px;
        background: #f4f8fb;
      }

      /* Heading */
      .mob-prod-head {
        margin-bottom: 36px;
      }

      .mob-prod-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 119, 182, 0.08);
        border: 1px solid rgba(0, 119, 182, 0.15);
        color: #0077b6;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 6px 16px;
        border-radius: 30px;
        margin-bottom: 16px;
      }

      .mob-prod-title {
        font-size: 1.9rem;
        font-weight: 900;
        color: #0a2540;
        line-height: 1.2;
        letter-spacing: -0.5px;
      }

      .mob-prod-title span {
        background: linear-gradient(135deg, #0077b6, #00b4d8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      /* Each card */
      .mob-prod-card {
        background: #fff;
        border: 1.5px solid #eaf0f7;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 24px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      }

      /* Image */
      .mob-prod-img-wrap {
        width: 100%;
        height: 250px;
        overflow: hidden;
        background: #f0f6fa;
        text-align: center;
      }

      .mob-prod-img-wrap img {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }

      /* Body */
      .mob-prod-body {
        padding: 20px;
      }

      .mob-prod-badge {
        display: inline-block;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 20px;
        margin-bottom: 10px;
      }

      .mob-prod-card-title {
        font-size: 1.15rem;
        font-weight: 800;
        color: #0a2540;
        margin-bottom: 8px;
        line-height: 1.3;
      }

      .mob-prod-desc {
        font-size: 0.86rem;
        color: #6b7280;
        line-height: 1.65;
        margin-bottom: 16px;
      }

      /* Feature list */
      .mob-prod-features {
        list-style: none;
        padding: 0;
        margin: 0 0 18px 0;
      }

      .mob-prod-features li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.84rem;
        color: #374151;
        font-weight: 500;
        margin-bottom: 8px;
        line-height: 1.5;
      }

      .mob-prod-features li i {
        color: #00c48c;
        font-size: 0.9rem;
        margin-top: 2px;
        flex-shrink: 0;
      }

      /* Footer */
      .mob-prod-foot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 16px;
        border-top: 1px solid #f0f4f8;
        margin-top: 4px;
      }

      .mob-prod-stat {
        font-size: 0.78rem;
        color: #9ca3af;
        font-weight: 500;
      }

      .mob-prod-stat span {
        font-size: 1.1rem;
        font-weight: 900;
        color: #0a2540;
        display: block;
        line-height: 1;
        margin-bottom: 2px;
      }

      .mob-prod-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #0a2540;
        color: #fff;
        font-size: 0.82rem;
        font-weight: 700;
        padding: 10px 18px;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.2s;
      }

      .mob-prod-cta:hover {
        background: #0077b6;
        color: #fff;
      }
    }