﻿
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Inter, Arial, sans-serif;
    }

    :root {
      --cream: #f5efe6;
      --white: #ffffff;
      --navy: #06142b;
      --navy-soft: #101d36;
      --orange: #ff6a00;
      --orange-soft: #fff0e5;
      --muted: #706a63;
      --border: #e8ded2;
      --soft: #faf7f2;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--cream);
      color: var(--navy);
      overflow-x: hidden;
    }

    header {
      margin: 20px auto;
      width: 86%;
      padding: 14px 22px;
      background: rgba(255, 255, 255, 0.85);
      color: var(--navy);
      border-radius: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 8px 30px rgba(6,20,43,0.08);
      position: sticky;
      top: 15px;
      z-index: 1000;
      backdrop-filter: blur(8px);
      transition: all 0.2s ease;
    }

    header:hover {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 12px 40px rgba(6,20,43,0.12);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 22px;
    }

    .logo .accent {
      color: var(--orange);
    }

    .logo img {
      width: 38px;
      height: 38px;
      object-fit: contain;
      border-radius: 8px;
    }

    .brand {
      display: inline-flex;
      gap: 0;
      align-items: center;
      font-weight: 900;
      font-size: 22px;
    }

    nav {
      display: flex;
      gap: 30px;
    }

    nav a {
      color: var(--navy);
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      transition: color 0.2s ease;
      padding-bottom: 4px;
      border-bottom: 2px solid transparent;
    }

    nav a:hover {
      color: var(--orange);
      border-bottom-color: var(--orange);
    }

    .btn-dark,
    .btn-light,
    .btn-orange {
      padding: 13px 24px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 800;
      border: none;
      cursor: pointer;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .btn-dark:hover,
    .btn-light:hover,
    .btn-orange:hover {
      transform: translateY(-2px);
    }

    .btn-dark {
      background: var(--navy);
      color: white;
    }

    .btn-light {
      background: white;
      color: var(--navy);
      box-shadow: 0 12px 30px rgba(0,0,0,0.07);
    }

    .btn-orange {
      background: var(--orange);
      color: white;
    }

    .menu-toggle {
      display: none;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: var(--orange);
      color: white;
      border: none;
      font-size: 24px;
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      padding: 0 7% 20px;
    }

    .mobile-menu.active {
      display: grid;
      gap: 12px;
    }

    .mobile-menu a {
      background: white;
      padding: 16px;
      border-radius: 18px;
      color: var(--navy);
      text-decoration: none;
      font-weight: 800;
    }

    .hero {
      text-align: center;
      padding: 35px 8% 55px;
      position: relative;
      overflow: hidden;
    }

    .trusted {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 22px;
      background: rgba(255,255,255,0.55);
      padding: 8px 15px;
      border-radius: 999px;
      position: relative;
    }

    .avatars {
      display: flex;
    }

    .avatars span {
      width: 24px;
      height: 24px;
      background: linear-gradient(135deg, var(--orange), var(--navy));
      border-radius: 50%;
      border: 2px solid var(--cream);
      margin-left: -6px;
    }

    .plus-one {
      color: var(--orange);
      font-size: 13px;
      animation: popPlus 1.4s ease-in-out infinite;
    }

    @keyframes popPlus {
      0% {
        opacity: 0;
        transform: translateY(8px) scale(0.7);
      }

      40% {
        opacity: 1;
        transform: translateY(0) scale(1.1);
      }

      100% {
        opacity: 0;
        transform: translateY(-12px) scale(0.9);
      }
    }

    h1 {
      font-size: clamp(42px, 6vw, 76px);
      line-height: 1.05;
      letter-spacing: -3px;
      max-width: 900px;
      margin: auto;
    }

    .hero p {
      max-width: 620px;
      margin: 18px auto 28px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 54px;
    }

    .phone-area {
      position: relative;
      max-width: 870px;
      margin: auto;
      height: 540px;
    }

    .circle {
      position: absolute;
      inset: 0;
      margin: auto;
      width: 700px;
      height: 700px;
      border: 1px solid rgba(6,20,43,0.08);
      border-radius: 50%;
    }

    .circle.two {
      width: 530px;
      height: 530px;
    }

    .circle.three {
      width: 360px;
      height: 360px;
    }

    .hand-phone {
      width: 330px;
      height: 520px;
      background: var(--navy);
      border-radius: 48px;
      padding: 14px;
      margin: auto;
      position: relative;
      z-index: 2;
      transform: rotate(10deg);
      box-shadow: 0 45px 100px rgba(0,0,0,0.24);
    }

    .screen {
      background: #fbfbfb;
      height: 100%;
      border-radius: 36px;
      padding: 22px;
      color: var(--navy);
      text-align: left;
      overflow: hidden;
      scroll-behavior: smooth;
    }

    .screen::-webkit-scrollbar {
      display: none;
    }

    .screen-top,
    .wallet-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .balance {
      margin: 24px 0 18px;
    }

    .balance small {
      color: #777;
    }

    .balance h2 {
      font-size: 34px;
      margin-top: 8px;
    }

    .quick {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 18px;
    }

    .quick div {
      background: var(--orange-soft);
      color: var(--orange);
      padding: 12px 6px;
      border-radius: 18px;
      font-size: 12px;
      text-align: center;
      font-weight: 900;
    }

    .orange-card {
      background: var(--orange);
      color: white;
      border-radius: 20px;
      padding: 18px;
      margin-bottom: 16px;
    }

    .transaction {
      background: #f1f1f1;
      border-radius: 16px;
      padding: 13px;
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      font-size: 13px;
    }

    .logos {
      display: flex;
      justify-content: center;
      gap: 55px;
      flex-wrap: wrap;
      color: #8a857c;
      font-weight: 800;
      padding: 0 8% 70px;
    }

    section {
      padding: 90px 10%;
      background: rgba(255, 255, 255, 0.4);
      transition: background 0.3s ease;
    }

    .stats-section {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 60px;
      align-items: center;
      border-radius: 44px 44px 0 0;
    }

    .stats-section h2 {
      font-size: 32px;
      letter-spacing: -1px;
      max-width: 460px;
    }

    .stats {
      display: flex;
      gap: 70px;
      justify-content: flex-end;
    }

    .stats h3 {
      font-size: 45px;
      color: var(--orange);
    }

    .stats p {
      color: #777;
      font-size: 13px;
    }

    .section-head {
      text-align: center;
      margin-bottom: 65px;
    }

    .section-head span,
    .eyebrow {
      color: var(--orange);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 1px;
    }

    .section-head h2 {
      font-size: clamp(34px, 5vw, 54px);
      margin-top: 14px;
      letter-spacing: -2px;
    }

    .section-head p {
      color: var(--muted);
      margin-top: 12px;
      line-height: 1.7;
    }

    .features-wrap,
    .app-flow-card,
    .how-grid,
    .wallet-section,
    .benefit,
    .testimonial-grid {
      max-width: 1120px;
      margin-left: auto;
      margin-right: auto;
    }

    .features-wrap {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 24px;
      background: rgba(250, 247, 242, 0.6);
      border-radius: 34px;
      padding: 24px;
      overflow: hidden;
      transition: all 0.3s ease;
      max-width: 980px;
    }

    .features-wrap:hover {
      background: rgba(250, 247, 242, 0.9);
    }

    .feature-list {
      display: grid;
      gap: 12px;
    }

    .feature-item {
      background: rgba(255, 255, 255, 0.6);
      padding: 16px;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.02);
      border: 1px solid rgba(232, 222, 210, 0.5);
      transition: all 0.3s ease;
    }

    .feature-item:hover {
      background: rgba(255, 255, 255, 0.85);
      transform: translateY(-4px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    }

    .feature-item h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .feature-item p {
      color: #777;
      font-size: 14px;
      line-height: 1.5;
    }

    .app-flow-card {
      background: rgba(255, 255, 255, 0.55);
      border-radius: 28px;
      padding: 16px;
      min-height: 260px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.02);
      border: 1px solid rgba(232, 222, 210, 0.4);
      display: grid;
      grid-template-columns: repeat(3, minmax(140px, 1fr));
      gap: 12px;
      align-items: stretch;
    }

    .flow-step {
      background: rgba(250, 247, 242, 0.5);
      border: 1px solid rgba(232, 222, 210, 0.3);
      border-radius: 22px;
      padding: 16px 10px;
      text-align: center;
      position: relative;
      overflow: hidden;
      animation: floatStep 3s ease-in-out infinite;
      transition: all 0.2s ease;
    }

    .flow-step:hover {
      background: rgba(250, 247, 242, 0.8);
    }

    .flow-step:nth-child(2) {
      animation-delay: 0.2s;
    }

    .flow-step:nth-child(3) {
      animation-delay: 0.4s;
    }

    .flow-step:nth-child(4) {
      animation-delay: 0.6s;
    }

    .flow-step:nth-child(5) {
      animation-delay: 0.8s;
    }

    .flow-step::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 10px;
      width: 38px;
      height: 4px;
      background: var(--orange);
      border-radius: 20px;
      transform: translateX(-50%);
    }

    .flow-icon {
      width: 48px;
      height: 48px;
      background: var(--orange);
      color: white;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: 0 auto 18px;
      font-size: 20px;
    }

    .flow-step h3 {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .flow-step p {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }

    @keyframes floatStep {
      0%, 100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    .benefit {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      background: rgba(255, 255, 255, 0.5);
      padding: 60px 40px;
      border-radius: 40px;
      margin: 0 20px;
      transition: all 0.3s ease;
    }

    .benefit:hover {
      background: rgba(255, 255, 255, 0.8);
    }

    .benefit-visual {
      background: var(--cream);
      border-radius: 34px;
      padding: 35px;
      min-height: 440px;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
      max-width: 100%;
    }

    .benefit-card {
      background: rgba(255, 255, 255, 0.7);
      border-radius: 30px;
      padding: 28px;
      width: 90%;
      max-width: 430px;
      margin: auto;
      box-shadow: 0 15px 40px rgba(0,0,0,0.04);
      border: 1px solid rgba(232, 222, 210, 0.5);
      transition: all 0.3s ease;
    }

    .benefit-card h3 {
      font-size: 26px;
      margin-bottom: 20px;
    }

    .benefit-list {
      display: grid;
      gap: 14px;
      max-width: 100%;
    }

    .benefit-list div {
      background: rgba(250, 247, 242, 0.6);
      border-radius: 18px;
      padding: 13px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 14px;
      max-width: 100%;
      transition: all 0.2s ease;
    }

    .benefit-list div:hover {
      background: rgba(250, 247, 242, 0.9);
    }

    .benefit-list span {
      background: var(--orange);
      color: white;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .benefit .eyebrow {
      color: var(--orange);
    }

    .benefit h2 {
      font-size: clamp(34px, 5vw, 56px);
      letter-spacing: -2px;
      margin: 14px 0;
    }

    .benefit p {
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .how-section {
      background: rgba(255, 255, 255, 0.4);
    }

    .how-grid {
      display: flex;
      gap: 22px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 12px;
      -webkit-overflow-scrolling: touch;
    }

    .how-grid::-webkit-scrollbar {
      height: 8px;
    }

    .how-grid::-webkit-scrollbar-track {
      background: rgba(255,255,255,0.7);
      border-radius: 999px;
    }

    .how-grid::-webkit-scrollbar-thumb {
      background: rgba(6,20,43,0.25);
      border-radius: 999px;
    }

    .how-card {
      background: rgba(248, 248, 245, 0.65);
      border-radius: 32px;
      padding: 32px;
      min-height: 220px;
      min-width: 300px;
      flex: 0 0 300px;
      border: 1px solid rgba(232, 222, 210, 0.4);
      transition: all 0.3s ease;
      scroll-snap-align: start;
    }

    .how-card:hover {
      background: rgba(248, 248, 245, 0.95);
      transform: translateY(-8px);
      box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    }

    .step-num {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--orange);
      color: white;
      display: grid;
      place-items: center;
      font-size: 22px;
      font-weight: 900;
      margin-bottom: 22px;
    }

    .how-card h3 {
      font-size: 21px;
      margin-bottom: 8px;
    }

    .how-card p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.5;
    }

    .wallet-section {
      background: #fafafa;
      display: grid;
      grid-template-columns: 0.8fr 1fr;
      gap: 90px;
      align-items: center;
      overflow: hidden;
    }

    .wallet-phone {
      max-width: 340px;
      background: var(--navy);
      border-radius: 48px;
      padding: 16px;
      box-shadow: 0 35px 90px rgba(0,0,0,0.18);
    }

    .phone-notch {
      width: 130px;
      height: 26px;
      background: #17233b;
      border-radius: 30px;
      margin: 0 auto 18px;
    }

    .wallet-screen {
      background: #f9f9fb;
      border-radius: 36px;
      padding: 22px;
    }

    .wallet-top span {
      color: #25c768;
      font-weight: 900;
      font-size: 14px;
    }

    .balance-card {
      background: linear-gradient(135deg, var(--orange), #ff8b3d);
      color: white;
      border-radius: 28px;
      padding: 24px;
      margin: 26px 0;
    }

    .balance-card h2 {
      font-size: 34px;
      margin-top: 14px;
    }

    .wallet-actions {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 30px;
    }

    .wallet-actions div {
      background: rgba(255, 255, 255, 0.5);
      border-radius: 20px;
      padding: 14px 8px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02);
      font-size: 13px;
      transition: all 0.2s ease;
    }

    .wallet-actions div:hover {
      background: rgba(255, 255, 255, 0.85);
    }

    .wallet-row {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #ddd;
      padding: 14px 0;
      font-size: 15px;
    }

    .wallet-content span {
      background: var(--orange-soft);
      color: var(--orange);
      padding: 14px 24px;
      border-radius: 30px;
      font-weight: 900;
      display: inline-block;
      margin-bottom: 35px;
    }

    .wallet-content h2 {
      font-size: clamp(42px, 5vw, 65px);
      letter-spacing: -2px;
      margin-bottom: 25px;
    }

    .wallet-content p {
      font-size: 21px;
      line-height: 1.45;
      color: var(--muted);
      max-width: 650px;
    }

    .wallet-content ul {
      list-style: none;
      margin-top: 28px;
    }

    .wallet-content li {
      font-size: 20px;
      margin-bottom: 18px;
      color: #292929;
    }

    .wallet-content li::before {
      content: "✓ ";
      color: var(--orange);
      font-weight: 900;
    }

    .status-section {
      background: rgba(255, 255, 255, 0.4);
      padding-top: 70px;
    }

    .status-card {
      background: var(--navy);
      color: white;
      border-radius: 34px;
      padding: 38px;
      position: relative;
      box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    }

    .live-badge {
      position: absolute;
      top: 35px;
      right: 35px;
      background: rgba(255,106,0,0.14);
      color: var(--orange);
      padding: 12px 22px;
      border-radius: 24px;
      font-weight: 900;
    }

    .status-card p {
      color: #cbd5e1;
      letter-spacing: 1px;
      font-weight: 700;
    }

    .status-card h2 {
      font-size: 38px;
      margin: 14px 0;
    }

    .status-card small {
      color: #cbd5e1;
      font-size: 16px;
    }

    .status-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin: 28px 0;
    }

    .status-grid div {
      background: rgba(16, 29, 54, 0.4);
      padding: 24px;
      border-radius: 18px;
      transition: all 0.2s ease;
    }

    .status-grid div:hover {
      background: rgba(16, 29, 54, 0.6);
    }

    .status-grid span {
      display: block;
      color: #cbd5e1;
      margin-bottom: 14px;
    }

    .status-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .status-actions button {
      border: none;
      border-radius: 18px;
      padding: 18px;
      font-size: 16px;
      font-weight: 900;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .status-actions button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .status-actions button:active {
      transform: translateY(0);
    }

    .status-actions button:first-child {
      background: var(--orange);
      color: white;
    }

    .status-actions button:last-child {
      background: var(--navy-soft);
      color: white;
    }

    .status-footer {
      display: flex;
      justify-content: space-between;
      margin-top: 22px;
      color: #cbd5e1;
    }

    .testimonials-section {
      background: var(--navy);
      color: white;
    }

    .section-head.dark h2 {
      color: white;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .small-reviews {
      max-width: 1050px;
    }

    .testimonial-card {
      background: var(--navy-soft);
      border-radius: 30px;
      padding: 24px;
      min-height: auto;
    }

    .review-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
    }

    .review-top strong {
      font-size: 18px;
      color: white;
    }

    .review-top span {
      color: var(--orange);
      font-weight: 800;
      font-size: 13px;
    }

    .review-mini-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .testimonial-grid.small-reviews {
      grid-template-columns: 1fr;
    }

    .testimonial-main {
      background: rgba(16, 29, 54, 0.5);
      border-radius: 30px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      transition: all 0.3s ease;
    }

    .testimonial-main:hover {
      background: rgba(16, 29, 54, 0.75);
    }

    .testimonial-main .main-quote {
      color: #e5e7eb;
      font-size: 20px;
      line-height: 1.6;
    }

    .other-reviews {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 6px;
    }

    .mini-card {
      background: rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 12px;
      min-width: 160px;
      flex: 1 1 160px;
      transition: all 0.2s ease;
    }

    .mini-card:hover {
      background: rgba(255,255,255,0.14);
    }

    .mini-card .review-top strong { font-size: 14px; }
    .mini-card .review-mini-grid p { font-size: 13px; margin: 6px 0; }

    .review-mini-grid p {
      background: rgba(255,255,255,0.06);
      border-radius: 14px;
      padding: 13px;
      font-size: 14px;
      line-height: 1.4;
      color: #e5e7eb;
    }

    .cta {
      background: var(--cream);
      text-align: center;
    }

    .cta-box {
      background: var(--navy);
      color: white;
      border-radius: 44px;
      padding: 80px 30px;
      transition: all 0.3s ease;
    }

    .cta-box:hover {
      box-shadow: 0 20px 50px rgba(0,0,0,0.2);
      transform: translateY(-4px);
    }

    .cta h2 {
      font-size: clamp(38px, 6vw, 70px);
      letter-spacing: -3px;
      max-width: 800px;
      margin: auto;
      margin-bottom: 20px;
    }

    .cta p {
      color: #cbd5e1;
      max-width: 580px;
      margin: auto;
      margin-bottom: 30px;
      line-height: 1.7;
    }

    footer {
      background: var(--cream);
      color: var(--muted);
      padding: 30px 10%;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 15px;
    }
    
   /* MODAL BACKDROP */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 999;
}

/* ACTIVE STATE */
.modal.show {
  display: flex;
}

/* BOTTOM SHEET */
.modal-content {
  background: #fff;
  width: 100%;
  max-width: 520px;
  border-radius: 20px 20px 0 0;
  padding: 20px 16px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  animation: sheetFadeIn 0.2s ease;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
}

/* SLIDE UP WHEN OPEN */
.modal.show .modal-content {
  transform: translateY(0);
}

/* HANDLE BAR (top drag indicator) */
.sheet-handle {
  width: 45px;
  height: 5px;
  background: #ddd;
  border-radius: 10px;
  margin: 0 auto 12px auto;
}

/* HEADER */
.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.sheet-header h3 {
  font-size: 16px;
  margin: 0;
}

.sheet-header button {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

/* VIDEO */
.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* OPTIONAL KEYFRAME */
@keyframes sheetFadeIn {
  from {
    opacity: 0.6;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

    @media (max-width: 900px) {
      nav {
        display: none;
      }

      header .btn-orange {
        display: inline-block;
      }

      .menu-toggle {
        display: none;
      }

      .mobile-menu {
        display: none !important;
      }

      .stats-section,
      .features-wrap,
      .benefit,
      .how-grid,
      .wallet-section,
      .status-grid,
      .testimonial-grid {
        grid-template-columns: 1fr;
      }

      .testimonial-grid.small-reviews {
        display: block;
      }

      .testimonial-grid.small-reviews .other-reviews {
        display: flex;
        flex-wrap: nowrap;
        gap: 18px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        width: 100%;
        min-width: 100%;
      }

      .testimonial-grid.small-reviews .other-reviews::-webkit-scrollbar {
        height: 8px;
      }

      .testimonial-grid.small-reviews .other-reviews::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.1);
        border-radius: 999px;
      }

      .testimonial-grid.small-reviews .other-reviews::-webkit-scrollbar-thumb {
        background: rgba(255,165,0,0.5);
        border-radius: 999px;
      }

      .testimonial-grid.small-reviews .mini-card {
        min-width: 60vw;
        flex: 0 0 60vw;
        scroll-snap-align: start;
      }

      .app-flow-card {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        min-height: auto;
        padding: 10px 14px;
        scroll-padding-inline: 14px;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        scrollbar-width: auto;
        -ms-overflow-style: auto;
        width: 100%;
      }

      .app-flow-card::-webkit-scrollbar {
        height: 8px;
      }

      .app-flow-card::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.7);
        border-radius: 999px;
      }

      .app-flow-card::-webkit-scrollbar-thumb {
        background: rgba(6,20,43,0.25);
        border-radius: 999px;
      }

      .flow-step {
        animation: none;
        min-width: 200px;
        flex: 0 0 200px;
        scroll-snap-align: start;
        border-radius: 20px;
        padding: 12px;
      }

      .feature-list {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 18px;
        padding-bottom: 16px;
      }

      .feature-list::-webkit-scrollbar {
        height: 8px;
      }

      .feature-list::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.7);
        border-radius: 999px;
      }

      .feature-list::-webkit-scrollbar-thumb {
        background: rgba(6,20,43,0.25);
        border-radius: 999px;
      }

      .feature-item {
        min-width: 220px;
        flex: 0 0 220px;
        scroll-snap-align: start;
      }

      .stats {
        justify-content: flex-start;
        flex-wrap: wrap;
      }

      .phone-area {
        height: 500px;
      }

      .hand-phone {
        width: 280px;
        height: 470px;
      }

      .circle {
        width: 460px;
        height: 460px;
      }

      .wallet-phone {
        margin: auto;
      }

      .status-actions {
        grid-template-columns: 1fr;
      }

      .status-footer {
        flex-direction: column;
        gap: 12px;
      }

      .live-badge {
        position: static;
        width: fit-content;
        margin-bottom: 20px;
      }

      .benefit-visual {
        min-height: auto;
        padding: 22px;
      }

      .benefit-card {
        width: 100%;
        padding: 22px;
      }

      .benefit-list div {
        font-size: 14px;
        align-items: flex-start;
      }

      .benefit {
        margin: 0;
        padding: 40px 20px;
      }
    }

    @media (max-width: 480px) {
      header {
        width: 90%;
      }

      .hero,
      section {
        padding-left: 6%;
        padding-right: 6%;
      }

      h1 {
        font-size: 40px;
        letter-spacing: -2px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions a {
        width: 100%;
      }

      .phone-area {
        height: 440px;
      }

      .hand-phone {
        width: 230px;
        height: 405px;
      }

      .circle {
        width: 360px;
        height: 360px;
      }

      .screen {
        padding: 14px;
        max-height: 100%;
        min-height: 0;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .screen-top {
        gap: 10px;
      }

      .balance {
        margin: 18px 0 12px;
      }

      .quick {
        gap: 10px;
      }

      .quick div {
        padding: 10px 8px;
        font-size: 13px;
      }

      .orange-card {
        padding: 16px;
      }

      .transaction {
        padding: 10px;
        margin-bottom: 8px;
      }

      .balance h2 {
        font-size: 26px;
      }

      .benefit-list div {
        word-break: break-word;
        line-height: 1.4;
      }
    }

    