/* Airtime Sure - Marketing Site */

:root {
  --bg: #F7F7F7;
  --navy: #06143D;
  --navy-2: #0A1D5A;
  --orange: #F85B06;
  --text: #0B1220;
  --muted: rgba(11, 18, 32, 0.65);
  --card: #FFFFFF;
  --border: rgba(6, 20, 61, 0.12);
  --shadow: 0 16px 50px rgba(6, 20, 61, 0.12);

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 12px;

  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Satoshi", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F85B06 50%, #E65205 100%);
  color: #fff;
  box-shadow: 0 8px 16px rgba(248, 91, 6, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.btn.primary:hover {
  box-shadow: 0 12px 24px rgba(248, 91, 6, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn.secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.btn.secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn.ghost {
  background: linear-gradient(135deg, rgba(6, 20, 61, 0.04), rgba(6, 20, 61, 0.02));
  border-color: rgba(6, 20, 61, 0.12);
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(6, 20, 61, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.btn.ghost:hover {
  border-color: rgba(6, 20, 61, 0.24);
  box-shadow: 0 8px 16px rgba(6, 20, 61, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn.badge {
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
}

.btn.badge.dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn.badge.dark:hover {
  border-color: rgba(255, 255, 255, 0.34);
}

.btn.badge.light {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(6, 20, 61, 0.14);
}

.btn.badge.light:hover {
  border-color: rgba(6, 20, 61, 0.24);
}

.btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
}

/* Top navigation: Premium whiter glass effect */
.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 92%);
  z-index: 1000;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow:
    0 12px 40px rgba(6, 20, 61, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 28px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 18px;
}

.navlinks a {
  color: rgba(6, 20, 61, 0.86);
  font-weight: 600;
  font-size: 14px;
}

.navlinks a:hover {
  color: var(--navy);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  display: none;
  border: 1px solid rgba(6, 20, 61, 0.1);
  border-radius: 12px;
  background: rgba(6, 20, 61, 0.03);
  padding: 8px;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s ease;
  align-items: center;
  justify-content: center;
}

.menu-btn:hover {
  background: rgba(6, 20, 61, 0.06);
  border-color: rgba(6, 20, 61, 0.2);
}

.menu-btn svg {
  display: block;
}

.mobile-panel {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy), #040C22);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  /* Soft blurred effect for subtle, "almost blurred out" lines */
  filter: blur(0.5px);
  /* Highly concentrated middle grid: fades quickly for a subtle look */
  -webkit-mask-image: radial-gradient(circle at center, black 5%, transparent 35%);
  mask-image: radial-gradient(circle at center, black 5%, transparent 35%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' seed='2'/%3E%3C/filter%3E%3Crect width='400' height='400' fill='white' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-size: 150px 150px;
  opacity: 0.25;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}

.hero-inner {
  position: relative;
  padding: 120px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.hero-inner>div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.hero h1 {
  margin: 16px auto 12px;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-transform: capitalize;
}

.hero p {
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: center;
}

.hero-note {
  margin: 24px auto 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.phone-wrap {
  position: relative;
  width: min(390px, 100%);
  transform: translateY(100px);
  /* Increased to sink into the bottom more */
  margin-bottom: -100px;
  /* Pull the section bottom up to the phone */
}

.iphone {
  position: relative;
  border-radius: 46px;
  padding: 12px;
  background: linear-gradient(180deg, #f8fafc, #cfd6e3);
  box-shadow:
    0 30px 60px -12px rgba(0, 0, 0, 0.45),
    0 18px 36px -18px rgba(0, 0, 0, 0.5),
    0 10px 30px rgba(6, 20, 61, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.22);
  animation: floatMockup 6s ease-in-out infinite;
}

@keyframes floatMockup {

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

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

.iphone::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 40px;
  border: 1px solid rgba(6, 20, 61, 0.12);
  pointer-events: none;
}

.iphone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 42%;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: rgba(0, 0, 0, 0.55);
}

.iphone .screen {
  overflow: hidden;
  border-radius: 38px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.iphone .screen img {
  width: 100%;
  height: auto;
}

/* Hero phone: straight bottom edge (no curves) */
.iphone.iphone--hero {
  border-radius: 46px 46px 0 0;
}

.iphone.iphone--hero::after {
  border-radius: 40px 40px 0 0;
}

.iphone.iphone--hero .screen {
  border-radius: 38px 38px 0 0;
}

/* smaller (step) iphone frames */
.iphone.iphone--sm {
  border-radius: 34px;
  padding: 10px;
  box-shadow: 0 18px 60px rgba(6, 20, 61, 0.18);
}

.iphone.iphone--sm::after {
  inset: 5px;
  border-radius: 30px;
}

.iphone.iphone--sm::before {
  top: 8px;
  height: 14px;
  width: 46%;
  border-radius: 0 0 12px 12px;
}

.iphone.iphone--sm .screen {
  border-radius: 26px;
}

.float-card {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  border: 1px solid rgba(6, 20, 61, 0.10);
  box-shadow: var(--shadow);
  min-width: 160px;
  z-index: 4;
}

.float-card .label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(6, 20, 61, 0.70);
}

.float-card .value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.float-card .big {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.float-card.small {
  min-width: 140px;
  padding: 10px 12px;
}

.float-card.large {
  min-width: 220px;
  padding: 14px 14px;
  border-radius: 18px;
}

.float-card .sub {
  font-size: 12px;
  color: rgba(6, 20, 61, 0.62);
  font-weight: 700;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  background: rgba(6, 20, 61, 0.72);
  border: 2px solid #fff;
  margin-left: -8px;
}

.avatars span:first-child {
  margin-left: 0;
}

.pill {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--orange);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Hero stat cards (touching the phone) */
.hero-card {
  /* Minimalist and straight design with sentence format */
  transform: none !important;
  border-radius: 12px;
  padding: 8px 12px !important;
  /* Force minimal padding */
  background: #FFFFFF;
  /* Forced white background */
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: row;
  /* Icon and text on same line */
  gap: 8px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  /* Softer shadow for white card */
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-width: 160px !important;
  /* Force uniform width */
  max-width: 200px;
  /* Keep them compact */
}

.hero-card p {
  margin: 0;
  font-size: 11px;
  /* Small font to fit sentences */
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  text-align: left;
  /* Explicitly left-aligned */
}

.hero-card svg {
  color: var(--orange);
  /* Use brand color for icons */
  flex-shrink: 0;
}

.hero-card.tl {
  top: 15%;
  left: -110px;
}

.hero-card.left {
  bottom: 25%;
  left: -140px;
}

.hero-card.right {
  bottom: 35%;
  right: -140px;
}

@media (max-width: 1160px) {

  /* keep cards closer on smaller desktops but still mostly outside */
  .hero-card.tl {
    left: -80px;
    transform: none !important;
  }

  .hero-card.left {
    left: -100px;
    transform: none !important;
  }

  .hero-card.right {
    right: -100px;
    transform: none !important;
  }
}

/* side mini screenshots in hero (reference-style) */
.mini-phone {
  position: absolute;
  width: 152px;
  border-radius: 32px;
  padding: 10px;
  background: linear-gradient(180deg, #f8fafc, #cfd6e3);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  opacity: 0.98;
}

.mini-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 52%;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  background: rgba(0, 0, 0, 0.55);
}

.mini-phone .screen {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.mini-left {
  left: clamp(-150px, -10vw, -110px);
  top: 168px;
  transform: rotate(-4deg);
}

.mini-right {
  right: clamp(-150px, -10vw, -110px);
  top: 176px;
  transform: rotate(4deg);
}

/* Section helpers */
section {
  padding: 100px 0;
  /* Increased from 48px for better breathing room */
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 48px;
  /* Increased from 28px */
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 4vw, 42px);
  /* Increased from 32px max to 42px max */
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--navy);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
  max-width: 52ch;
}

/* Centered section headers */
#solutions .section-head,
#how-it-works .section-head,
#app-gallery .section-head,
#faq .section-head {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 32px;
}

#solutions .section-head h2,
#how-it-works .section-head h2,
#app-gallery .section-head h2 {
  color: #fff;
}

#solutions .section-head p,
#how-it-works .section-head p,
#app-gallery .section-head p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  max-width: 52ch;
}

#how-it-works .section-head h2,
#app-gallery .section-head h2,
#faq .section-head h2 {
  color: var(--navy);
}

#how-it-works .section-head p,
#app-gallery .section-head p,
#faq .section-head p {
  color: var(--muted);
}

/* Per-section padding overrides */
#solutions {
  padding: 100px 0;
}

#how-it-works {
  padding: 100px 0;
}

#app-gallery {
  padding: 100px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(6, 20, 61, 0.3);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: none;
}

.card h3 {
  margin: 10px 0 8px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(248, 91, 6, 0.12);
  border: 1px solid rgba(248, 91, 6, 0.20);
  color: var(--orange);
  font-weight: 900;
}

/* Solutions Section Theme */
#solutions {
  background: #eef1f4;
  /* Same as features-split */
}

#solutions .section-head h2 {
  color: var(--navy);
}

#solutions .section-head p {
  color: var(--muted);
}

/* Bento Grid Context */
/* Solutions Grid (Reference Style) */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(6, 20, 61, 0.3);
  /* Made thick and dark to match image border */
  border-radius: 24px;
  padding: 32px 32px 40px;
  /* Increased bottom padding for space below image */
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: none;
  /* Removed shadow for clean transparent look */
}

.solution-card:hover {
  transform: translateY(-8px);
}

.solution-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.solution-card .card-icon {
  width: 36px;
  height: 36px;
  background: rgba(30, 58, 138, 0.05);
  color: #1e3a8a;
  display: grid;
  place-items: center;
  border-radius: 10px;
  margin-bottom: 0;
  /* Reset from bento */
}

.solution-card .card-icon svg {
  width: 18px;
  height: 18px;
}

.solution-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.solution-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 100%;
}

.solution-card .card-image {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
  /* Slightly reduced height for better proportions */
  overflow: visible;
  /* Changed to visible to show the border clearly */
}

.solution-card .card-image img {
  width: 90%;
  /* Made image smaller to fit better */
  height: 90%;
  /* Made image smaller to fit better */
  object-fit: contain;
  /* Show the entire image without cutting */
  border-radius: 16px;
  /* Added border radius to the image as requested */
  border: 1px solid rgba(6, 20, 61, 0.3);
  /* Wider and darker border as requested */
  transition: transform 0.4s ease;
  background: #fff;
  /* White background to make the border pop on transparent card */
}

.solution-card:hover .card-image img {
  transform: scale(1.05);
}

@media (max-width: 980px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    padding: 24px 24px 0;
  }

  .solution-card .card-image {
    height: 200px;
  }
}



/* Service Pills Section (After Hero) */
.services-pills {
  padding: 48px 0 0;
  background: #eef1f4;
  position: relative;
  z-index: 5;
}

.pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-pill {
  padding: 10px 20px;
  border-radius: 99px;
  background: rgba(6, 20, 61, 0.03);
  border: 1px solid rgba(6, 20, 61, 0.08);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.service-pill:hover {
  background: #fff;
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 4px 12px rgba(248, 91, 6, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 520px) {
  .services-pills {
    padding: 32px 0;
  }

  .service-pill {
    padding: 6px 12px;
    font-size: 11px;
  }

  .pills-wrap {
    gap: 6px;
  }
}



/* Bento Background Variants */
.bg-purple {
  background-color: #F8F5FF;
  border-color: rgba(124, 58, 237, 0.1);
}

.bg-blue {
  background-color: #F0F7FF;
  border-color: rgba(37, 99, 235, 0.1);
}

.bg-indigo {
  background-color: #F5F7FF;
  border-color: rgba(79, 70, 229, 0.1);
}

.bg-cyan {
  background-color: #F0FDFA;
  border-color: rgba(13, 148, 136, 0.1);
}

.bg-green {
  background-color: #F0FDF4;
  border-color: rgba(22, 163, 74, 0.1);
}

.bg-yellow {
  background-color: #FFFBEB;
  border-color: rgba(217, 119, 6, 0.1);
}

.bg-red {
  background-color: #FEF2F2;
  border-color: rgba(220, 38, 38, 0.1);
}

.bg-navy-light {
  background-color: #F1F4F9;
  border-color: rgba(6, 20, 61, 0.1);
}

.bg-blue-light {
  background-color: #F0F9FF;
  border-color: rgba(2, 132, 199, 0.1);
}


.trustbar {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid rgba(6, 20, 61, 0.06);
  border-bottom: 1px solid rgba(6, 20, 61, 0.06);
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

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

  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

.logo-pill {
  border: 1px solid rgba(6, 20, 61, 0.08);
  background: rgba(6, 20, 61, 0.02);
  color: var(--navy);
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.logo-pill:hover {
  background: #fff;
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(248, 91, 6, 0.1);
}

/* Features Split Section */
.features-split {
  padding: 100px 0;
  background: #eef1f4;
}

.split-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.chip-alt {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(248, 91, 6, 0.1);
  color: var(--orange);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.split-content h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.split-content p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
}

.feature-cards {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(6, 20, 61, 0.08);
  border-radius: 24px;
  transition: all 0.3s ease;
  cursor: default;
  text-align: left;
}

.feature-card:hover {
  border-color: rgba(6, 20, 61, 0.15);
  box-shadow: 0 10px 20px rgba(6, 20, 61, 0.04);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(248, 91, 6, 0.08);
  color: var(--orange);
  border: 1.5px solid rgba(248, 91, 6, 0.12);
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(248, 91, 6, 0.06);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 10px 20px rgba(248, 91, 6, 0.2);
}

.feature-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.feature-text h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.feature-text p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Feature list icon boxes */
.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-list li:hover .feature-icon-box {
  transform: scale(1.1);
}

/* Payment Mockup Display */
.split-media-modern {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* Extremely soft fade: middle visible, surroundings 90-95% faded */
  -webkit-mask-image: radial-gradient(circle, black 10%, transparent 90%);
  mask-image: radial-gradient(circle, black 10%, transparent 90%);
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.02));
}

.payment-mockup {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 28px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(6, 20, 61, 0.04);
}

.payment-mockup:hover {
  transform: translateY(-12px) scale(1.01);
}

@media (max-width: 980px) {
  .split-media-modern {
    justify-content: center;
    margin-top: 32px;
    /* Ensure fade effect is strong on mobile */
    -webkit-mask-image: radial-gradient(circle, black 10%, transparent 80%);
    mask-image: radial-gradient(circle, black 10%, transparent 80%);
  }

  .payment-mockup {
    max-width: 280px;
    border: none;
    /* Remove border to prevent it showing in the fade */
    box-shadow: none;
    /* Remove shadow to let mask handle the flow */
  }
}

.stat-card {
  background: #f8fafc;
  padding: 30px 20px;
  border-radius: 24px;
  border: 1px solid rgba(6, 20, 61, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: #fff;
  border-color: rgba(6, 20, 61, 0.1);
  box-shadow: 0 20px 40px rgba(6, 20, 61, 0.05);
  transform: translateY(-5px);
}

.stat-val {
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 980px) {
  .split-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .feature-list li {
    justify-content: center;
    text-align: left;
  }

  .features-split {
    padding: 48px 0;
  }

  .split-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .split-content p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .feature-list {
    gap: 16px;
  }

  .feature-list li {
    gap: 12px;
  }

  .feature-icon-box {
    width: 38px;
    height: 38px;
  }

  .feature-icon-box svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.step-media {
  /* Eonace-like “image card” area */
  height: 260px;
  overflow: hidden;
  /* creates the straight bottom edge clip */
  border-radius: 18px;
  border: 1px solid rgba(6, 20, 61, 0.10);
  background:
    radial-gradient(340px 220px at 10% 10%, rgba(248, 91, 6, 0.12), transparent 60%),
    radial-gradient(320px 220px at 90% 10%, rgba(6, 20, 61, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(6, 20, 61, 0.04), rgba(6, 20, 61, 0.00));
  display: grid;
  place-items: end center;
  margin: -18px -18px 14px;
  /* flush to the card edges */
  padding: 14px 14px 0;
}

.step-media .iphone {
  width: min(240px, 100%);
  transform: translateY(24px);
  /* “drop” into the card and clip the bottom */
}

.step .num {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: var(--navy);
}

.step h3 {
  margin: 12px 0 8px;
  color: var(--navy);
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* App Gallery Carousel */
.app-carousel-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 48px 0; /* Added padding to prevent shadow clipping */
  /* Edge fade masks */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.app-carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: appScroll 28s linear infinite;
  cursor: grab;
}

.app-carousel-track:active {
  cursor: grabbing;
}

.app-carousel-wrap:hover .app-carousel-track {
  animation-play-state: paused;
}

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

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

.app-shot {
  flex-shrink: 0;
  width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 20, 61, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-shot:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(6, 20, 61, 0.14);
}

.app-shot img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

@media (max-width: 520px) {
  .app-shot {
    width: 150px;
    border-radius: 16px;
  }

  .app-carousel-track {
    gap: 12px;
  }
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quote {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quote p {
  margin: 0 0 12px;
  line-height: 1.5;
  color: rgba(6, 20, 61, 0.8);
  font-size: 13.5px;
}

.quote .who {
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
}

.quote .role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

.quote-stars {
  font-size: 14px;
  color: #F59E0B;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.quote-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(6, 20, 61, 0.04);
}

.quote-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 99px;
  border: 1px solid rgba(6, 20, 61, 0.08);
  background: rgba(6, 20, 61, 0.02);
  color: var(--navy);
}

.quote-source.whatsapp {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.2);
  background: rgba(37, 211, 102, 0.06);
}

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: inherit;
  /* Ensure it uses Satoshi from body */
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  text-align: left;
}

.logo-pill:hover svg {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

.faq-a {
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14.5px;
  display: none;
}

.faq-item[data-open="true"] .faq-a {
  display: block;
}

.chev {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6, 20, 61, 0.12);
  color: rgba(6, 20, 61, 0.65);
}

.faq-item[data-open="true"] .chev {
  transform: rotate(180deg);
}

.cta {
  padding: 80px 0;
  background: #fff;
}

.cta-box {
  background: #E0F7FA;
  /* Light cyan background */
  border-radius: 32px;
  padding: 40px 20px 0;
  /* Reduced top padding */
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  /* Even smaller gap between text/buttons and image */
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.cta-box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.cta-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-copy h2 {
  margin: 0 0 8px;
  /* Further reduced margin */
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
}

.cta-copy p {
  margin: 0 0 16px;
  /* Further reduced margin */
  color: rgba(6, 20, 61, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  transition: transform 0.2s ease;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  height: 44px;
  align-items: center;
}

.btn-store img {
  height: 100%;
  width: auto;
  display: block;
}

.support-btn {
  display: none !important;
  background: #fff !important;
  border: 1px solid rgba(6, 20, 61, 0.1) !important;
  font-weight: 700 !important;
  padding: 0 20px !important;
  height: 44px !important;
  border-radius: 8px !important;
}

.cta-media {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 2;
  margin-top: 0;
  /* No margin at the top of media section */
}

.mockup-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0px auto;
  /* Ensure horizontal centering */
}

.phone-mockup {
  position: relative;
  width: 320px;
  background: #000;
  border-radius: 40px 40px 0 0;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 5px solid #1a1a1a;
  transform: translateY(120px);
  /* Reduced sinking from 220px to 120px */
  margin: 0 auto;
  /* Rock solid centering */
}

.phone-mockup img {
  width: 100%;
  height: auto;
  border-radius: 28px 28px 0 0;
  display: block;
}

.phone-back {
  display: none;
}

.phone-front {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .cta-box {
    padding: 40px 20px 0;
  }

  .phone-mockup {
    width: 280px;
    transform: translateY(100px);
    /* Reduced sinking from 200px */
  }

  .phone-front {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px 0;
    /* Reduced top padding */
    overflow: hidden;
    /* Updated background color to #e0f7fa as requested */
    background: #e0f7fa;
    box-shadow:
      inset 3px 3px 6px rgba(255, 255, 255, 0.8),
      inset -3px -3px 6px rgba(163, 177, 198, 0.3),
      var(--neu-outer);
  }

  .cta-copy {
    max-width: 100%;
  }

  .cta-copy p {
    margin-bottom: 16px;
  }

  .cta-actions {
    justify-content: center;
    margin-bottom: 48px;
    /* Increased for more space between buttons and image */
    gap: 12px;
  }

  .cta-media {
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 24px;
    /* Increased from 12px to 24px for clear separation */
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .mockup-container {
    height: 140px;
    /* Increased from 120px to show more of the image */
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .phone-mockup {
    position: relative;
    width: 220px;
    background: #000;
    border: 3px solid #1a1a1a;
    padding: 6px;
    border-radius: 28px 28px 0 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(40px);
    /* Reduced sinking from 100px to show more */
    margin-bottom: -20px;
  }

  .phone-mockup img {
    border-radius: 22px 22px 0 0;
  }

  .phone-back {
    display: none;
  }

  .phone-front {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    transform: translateY(40px);
    /* Consistent with .phone-mockup */
  }
}

@media (max-width: 520px) {
  .cta-box {
    padding: 24px 16px 0;
  }

  .cta-copy h2 {
    font-size: 24px;
    margin-bottom: 12px;
    padding: 8px 20px 0; /* Added horizontal padding */
  }

  .cta-copy p {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .cta-actions {
    margin-bottom: 32px;
    /* Added breathing space on small phones */
    gap: 8px;
  }

  .btn-store {
    height: 38px;
    /* Slightly smaller for mobile */
  }

  .support-btn {
    height: 38px !important;
  }

  .cta-media {
    min-height: 0;
  }

  .mockup-container {
    height: 160px;
    /* Increased from 100px */
  }

  .phone-mockup {
    width: 180px;
    transform: translateY(30px);
    /* Reduced sinking from 80px */
  }
}

.btn-iphone-guide {
  background: #000 !important;
  color: #fff !important;
  padding: 0 16px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-align: left !important;
  height: 44px !important;
  transition: transform 0.2s ease !important;
  border: none !important;
  font-family: 'Satoshi', sans-serif !important;
}

.btn-iphone-guide .btn-text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.1 !important;
}

.btn-iphone-guide .tiny {
  font-size: 8px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2px !important;
}

.btn-iphone-guide .bold {
  font-size: 15px !important;
  font-weight: 700 !important;
}

.btn-iphone-guide:hover {
  transform: translateY(-2px);
  background: #1a1a1a !important;
}

.btn-iphone-guide svg {
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .btn-iphone-guide {
    height: 38px !important;
    padding: 0 10px !important;
  }

  .btn-iphone-guide .tiny {
    font-size: 7px !important;
  }

  .btn-iphone-guide .bold {
    font-size: 12px !important;
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  padding: 40px 18px;
  overflow-y: auto;
}

.modal[data-open="true"] {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.modal-card {
  width: min(860px, 100%);
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.35);
}

.modal-head {
  background: #fff;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(6, 20, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.modal-head h3 {
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.modal-close {
  border: 1px solid rgba(6, 20, 61, 0.14);
  background: #fff;
  color: var(--navy);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
}

.modal-body {
  padding: 16px 16px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.modal-box {
  background: rgba(6, 20, 61, 0.02);
  border: 1px solid rgba(6, 20, 61, 0.10);
  border-radius: 18px;
  padding: 14px;
}

.modal-box h4 {
  margin: 0 0 10px;
  color: var(--navy);
}

.modal-box ol {
  margin: 0;
  padding-left: 18px;
}

.modal-box li {
  margin: 8px 0;
}

.kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 8px;
  border: 1px solid rgba(6, 20, 61, 0.16);
  background: #fff;
  color: rgba(6, 20, 61, 0.86);
  font-weight: 800;
}

@media (max-width: 980px) {
  .modal-grid {
    grid-template-columns: 1fr;
  }
}

/* Pages */
.page-hero {
  padding: 120px 0 26px;
  /* Increased from 48px to clear floating nav */
}

@media (max-width: 980px) {
  .page-hero {
    padding-top: 100px;
    /* Specific mobile adjustment */
  }
}

.page-hero h1 {
  margin: 0 0 10px;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-size: clamp(30px, 3.3vw, 44px);
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
}

.prose {
  padding: 10px 0 72px;
}

.prose .card {
  padding: 22px;
}

.prose h2 {
  margin: 18px 0 10px;
  color: var(--navy);
}

.prose ul {
  margin: 8px 0 18px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.prose p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 14px;
}

/* Footer */
footer {
  background: #fff;
  border-top: 1px solid rgba(6, 20, 61, 0.06);
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}

.footer-grid h4 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.footer-grid a {
  display: block;
  padding: 4px 0;
  /* Reduced vertical spacing */
  color: rgba(6, 20, 61, 0.7);
  font-weight: 500;
  /* Less bold as requested */
  font-size: 14px;
  /* Slightly smaller font */
}

.footer-grid a:hover {
  color: var(--navy);
}

.footer-note {
  margin: 0;
  color: rgba(6, 20, 61, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-socials a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(6, 20, 61, 0.04);
  color: var(--navy);
  transition: all 0.3s ease;
  padding: 0 !important;
}

.footer-socials a:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(6, 20, 61, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-giant-text {
  width: 100%;
  text-align: center;
  font-size: clamp(60px, 15vw, 180px);
  font-weight: 900;
  color: rgba(6, 20, 61, 0.03);
  letter-spacing: -0.05em;
  line-height: 0.8;
  margin-top: 20px;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

/* Responsive */
@media (max-width: 980px) {
  .section-head {
    padding: 0 20px;
  }

  .section-head h2 {
    font-size: clamp(28px, 5vw, 38px);
  }

  .topbar {
    top: 8px;
    width: min(1200px, 94%);
    /* Increased width for less side spacing */
    border-radius: 14px;
  }

  .nav {
    padding: 6px 0px;
    /* Reduced internal horizontal padding */
  }

  .brand img {
    height: 24px;
  }

  .menu-btn {
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero-inner {
    padding: 60px 0 0;
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(34px, 6.5vw, 52px);
    max-width: 16ch;
  }

  .hero p {
    font-size: 16px;
    max-width: 42ch;
    color: rgba(255, 255, 255, 0.8);
  }

  /* Mobile hero: hide cards to focus on the main mockup */
  .hero-card {
    display: none;
  }

  .phone-wrap {
    width: min(340px, 100%);
    transform: translateY(80px);
  }

  /* Pull cards inward so they stay within the screen */
  .hero-card.tl {
    left: -20px;
    top: 30px;
    transform: rotate(-2deg);
  }

  .hero-card.left {
    left: -30px;
    top: 130px;
    transform: rotate(1deg);
  }

  .hero-card.right {
    right: -30px;
    top: 90px;
    transform: rotate(2deg);
  }

  .mini-left,
  .mini-right {
    display: none;
  }

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

  .trust-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .bento-card.span-2,
  .bento-card.span-3 {
    grid-column: span 1;
  }

  .bento-card h3 {
    font-size: 24px;
    font-weight: 700;
  }

  .bento-card p {
    font-size: 14px;
    max-width: 100%;
  }

  .card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

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

@media (max-width: 820px) {

  .navlinks,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .mobile-panel {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    /* Compact width */
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 20px;
    margin-top: 10px;
    padding: 12px;
    box-shadow: var(--neu-outer-sm);
    z-index: 1001;
    overflow: hidden;
  }

  .mobile-panel[data-open="true"] {
    display: block;
  }

  .mobile-panel .links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* Very tight gap */
    padding: 0;
  }

  .mobile-panel .links a {
    font-size: 14px;
    /* Compact font */
    font-weight: 600;
    color: var(--navy);
    padding: 10px 14px;
    border-radius: 12px;
    background: transparent;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
  }

  .mobile-panel .links a:active,
  .mobile-panel .links a:hover {
    background: rgba(6, 20, 61, 0.04);
  }

  .mobile-panel .ctas {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }

  .mobile-panel .ctas .btn {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    height: 40px;
  }
}

@media (max-width: 520px) {
  section {
    padding: 80px 0;
    /* Increased from 48px for better mobile breathing room */
  }

  .feature-cards {
    margin-top: 24px;
  }

  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }

  .section-head {
    margin-bottom: 32px;
    /* Increased from 24px */
  }

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

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

  /* Compact hero */
  .hero-inner {
    padding: 50px 0 0;
    gap: 16px;
  }

  .hero h1 {
    margin: 12px auto 10px;
    font-size: 34px;
    line-height: 1.15;
    max-width: 11ch;
    /* improved line breaks */
    letter-spacing: -0.05em;
  }

  .hero p {
    margin: 0 auto 18px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.7);
  }

  .hero-actions {
    gap: 8px;
    margin-top: 10px;
    width: 100%;
    margin-bottom: 10px;
    /* Reduced from 20px to bring mockup closer */
    /* space before mockup */
  }

  .hero-actions .btn {
    width: 82%;
    padding: 12px 18px;
    font-size: 14px;
    border-radius: 10px;
    height: 48px;
    /* consistent compact height */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-note {
    font-size: 12px;
    margin: 16px auto 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
  }

  .chip {
    padding: 6px 12px;
    font-size: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    margin-bottom: 4px;
    letter-spacing: 0.1em;
  }

  /* Tighter hero on small phones */
  .phone-wrap {
    width: 260px;
    transform: translateY(60px);
    /* Slightly increased to sit behind the bottom a bit more */
    margin-bottom: -60px;
    margin-top: 10px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  }

  .hero-card {
    display: flex;
    /* Make cards visible on mobile */
    position: absolute;
    min-width: 110px !important;
    /* Slightly wider for better text flow */
    max-width: 140px;
    padding: 6px 10px !important;
    /* Fixed padding: 6px top/bottom, 10px left/right */
    z-index: 10;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    background: #FFFFFF !important;
    height: auto;
    min-height: 0;
    border-radius: 10px !important;
    /* Ensure consistent corners */
  }

  .hero-card p {
    display: block !important;
    /* Ensure text is visible */
    font-size: 8.5px !important;
    /* Smaller text for mobile */
    line-height: 1;
    /* Tight line height to remove vertical space */
    color: var(--navy) !important;
    margin: 0 !important;
    /* Remove any default margins */
  }

  .hero-card svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
  }

  .hero-card.tl {
    top: 15%;
    left: -40px;
  }

  .hero-card.left {
    bottom: 45%;
    left: -50px;
  }

  .hero-card.right {
    bottom: 55%;
    right: -50px;
  }
}