/* ─────────────────────────────
   HERO
───────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 4% 80px;
  overflow: hidden;
  background: linear-gradient(155deg, #f0f7e6 0%, #ffffff 40%, #e8f3fb 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(139, 195, 74, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 195, 74, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(139, 195, 74, 0.15) 0%, rgba(30, 100, 117, 0.06) 45%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  top: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, var(--green-light), #f0faf5);
  border: 1px solid var(--border2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 22px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--teal) 60%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.btn-hero-primary {
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(107, 163, 42, 0.35);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(107, 163, 42, 0.45);
}

.btn-hero-outline {
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--border2);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text2);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: #fff;
  border-color: var(--green-bright);
  color: var(--green);
}

.app-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
}

.app-btn:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.app-icon {
  font-size: 22px;
}

.app-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-small {
  font-size: 10px;
  color: var(--text-faint);
  font-weight: 400;
}

.app-big {
  font-size: 14px;
  font-weight: 700;
  color: var(--text2);
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

/* .hs-item {} */

.hs-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hs-num span {
  color: var(--green);
}

.hs-label {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 3px;
}

/* Phone mockup */

.phone-mockup {
  position: relative;
  width: 290px;
  max-width: 100%;
  animation: floatPhone 6s ease-in-out infinite;
  z-index: 2;
}

.phone-app-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 40px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, .12),
    0 10px 30px rgba(97, 166, 34, .15);
}

/* Existing floating animation */
@keyframes floatPhone {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}


.hero-visual {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}

/* .phone-mockup {
  position: relative;
  width: 252px;
  height: 508px;
  background: linear-gradient(165deg, #ffffff, #f5faf0);
  border-radius: 40px;
  border: 1.5px solid var(--border);
  box-shadow: 0 0 0 8px rgba(139, 195, 74, 0.06), 0 40px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(139, 195, 74, 0.15);
  overflow: hidden;
  z-index: 5;
  animation: phoneFloat 6s ease-in-out infinite;
} */

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }

  50% {
    transform: translateY(-14px) rotate(-1.5deg);
  }
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: var(--text);
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  inset: 0;
  padding: 48px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.phone-greeting {
  font-size: 10px;
  color: var(--text-faint);
}

.phone-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-display);
}

.phone-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.phone-balance {
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: 14px;
  padding: 14px;
  color: #fff;
}

.phone-bal-lbl {
  font-size: 9px;
  opacity: 0.8;
  margin-bottom: 3px;
}

.phone-bal-amt {
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.phone-bal-sub {
  font-size: 9px;
  opacity: 0.85;
  margin-top: 2px;
}

.phone-svcs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.psvc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 7px 3px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.psvc-icon {
  font-size: 16px;
}

.psvc-lbl {
  font-size: 7px;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.1;
}

.phone-txn-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
}

.phone-txns {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ptxn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.ptxn-ico {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.ptxn-ico-g {
  background: var(--green-light);
  border: 1px solid var(--border2);
}

.ptxn-ico-t {
  background: var(--teal-pale);
  border: 1px solid rgba(59, 184, 216, 0.25);
}

.ptxn-info {
  flex: 1;
}

.ptxn-name {
  font-size: 9px;
  font-weight: 600;
  color: var(--text);
}

.ptxn-date {
  font-size: 8px;
  color: var(--text-faint);
}

.ptxn-amt {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-display);
}

.ptxn-green {
  color: var(--green-dark);
}

.ptxn-teal {
  color: var(--teal);
}

/* Floating cards */
.float-card {
  position: absolute;
  z-index: 6;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.fc1 {
  top: 5%;
  right: -15px;
  animation: fc1 7s ease-in-out infinite;
}

@keyframes fc1 {

  0%,
  100% {
    transform: translateY(0) rotate(2.5deg);
  }

  50% {
    transform: translateY(-12px) rotate(2.5deg);
  }
}

.fc2 {
  bottom: 18%;
  left: -25px;
  animation: fc2 8s ease-in-out infinite 2s;
}

@keyframes fc2 {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

.fc3 {
  top: 52%;
  right: -35px;
  animation: fc1 9s ease-in-out infinite 1s;
}

.fc-label {
  font-size: 9px;
  color: var(--text-faint);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fc-val {
  font-size: 13px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--text);
}

.fc-val-g {
  color: var(--green-dark);
}

.fc-sub {
  font-size: 8px;
  color: var(--text-faint);
  margin-top: 1px;
}

.fc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

.fc-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.fc-upi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.fc-upi-item {
  font-size: 8px;
  color: var(--text-faint);
}

.fc-upi-val {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
  font-family: var(--font-display);
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: pFloat linear infinite;
}

@keyframes pFloat {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-80px) translateX(var(--drift));
    opacity: 0;
  }
}

/* ─────────────────────────────
   COMMON
───────────────────────────── */
section {
  position: relative;
  z-index: 1;
}

.container {
  /* max-width: 1180px; */
  width: 80%;
  margin: 0 auto;
  padding: 0 4%;
}

.section-pad {
  padding: 110px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 18px;
  padding: 5px 13px;
  background: var(--green-light);
  border: 1px solid var(--border2);
  border-radius: 50px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.07;
  color: var(--text);
  margin-bottom: 18px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 540px;
  font-weight: 400;
}

/* ─────────────────────────────
   TRUST BAR
───────────────────────────── */
#trust {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
}

.trust-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 18px;
}

.trust-track {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: trustScroll 25s linear infinite;
}

@keyframes trustScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.trust-logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-faint);
  white-space: nowrap;
}

.trust-dot {
  width: 4px;
  height: 4px;
  background: var(--border2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─────────────────────────────
   WHY
───────────────────────────── */
#why {
  background: linear-gradient(180deg, var(--white), var(--bg2), var(--white));
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.why-card-big {
  grid-column: span 2;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(139, 195, 74, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.card:hover::before {
  opacity: 1;
}

.card-big {
  display: flex;
  align-items: center;
  gap: 40px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.ci-g {
  background: var(--green-light);
  border: 1px solid var(--border2);
}

.ci-t {
  background: var(--teal-pale);
  border: 1px solid rgba(30, 100, 117, 0.2);
}

.ci-gold {
  background: #fef3c7;
  border: 1px solid #fcd34d;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.68;
}

.zfb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-light), var(--teal-pale));
  border: 2px solid var(--border2);
}

.zfb-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}

.zfb-lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 3px;
}



/* ===========================
   WHY SECTION RESPONSIVE
=========================== */

@media (max-width:768px){

    .why-grid{
        grid-template-columns:1fr !important;
        gap:20px;
    }

    .why-card-big{
        grid-column:auto !important;
        grid-row:auto !important;
    }

    .card{
        width:100%;
    }

}


/* ─────────────────────────────
   START YOUR JOURNEY
───────────────────────────── */

/* ── SECTION WRAPPER ── */
.zp-tab-section {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--white), var(--bg2), var(--white));
  position: relative;
  overflow: hidden;
}

.zp-tab-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(139, 195, 74, 0.08), transparent);
  pointer-events: none;
}

/* ── SECTION HEADER ── */
.zp-section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

.zp-section-head .section-desc {
  margin: 0 auto;
}

/* ── TOGGLE ── */
.zp-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.zp-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 6px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.zp-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.zp-toggle-btn:hover:not(.active) {
  color: var(--green);
  background: var(--green-light);
}

.zp-toggle-btn.active {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 4px 18px rgba(107, 163, 42, 0.35);
}

.zp-tb-icon {
  font-size: 16px;
}

/* ── PANELS ── */
.zp-panels {
  position: relative;
}

.zp-panel {
  display: none;
  animation: zpFadeIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.zp-panel.active {
  display: block;
}

@keyframes zpFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zp-panel-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}

/* ── PANEL CONTENT ── */
.zp-panel-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.zp-panel-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.zp-sub-block {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  margin-top: 20px;
  transition: all 0.3s;
}

.zp-sub-block:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow-md);
}

.zp-sub-full {
  margin-top: 20px;
}

.zp-sub-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.zp-sub-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.zp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.zp-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.zp-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-size: 13px;
  top: 1px;
}

.zp-list-sm li {
  font-size: 14px;
}

.zp-recharge-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.zp-panel-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.zp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(107, 163, 42, 0.3);
}

.zp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(107, 163, 42, 0.4);
}

.zp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.zp-btn-outline:hover {
  background: #fff;
  border-color: var(--green-bright);
  color: var(--green);
}

/* ── RETAILER CARDS ── */
.zp-retailer-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.zp-rc-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  transition: all 0.3s;
}

.zp-rc-card:hover {
  border-color: var(--border2);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.zp-rc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.ci-gold {
  background: #fef3c7;
  border: 1px solid #fcd34d;
}

.ci-purple {
  background: #f3f0ff;
  border: 1px solid #c4b5fd;
}

.zp-rc-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.zp-rc-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

/* ── VISUAL: DISCOUNT CARDS ── */
.zp-panel-visual {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zp-visual-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 4px;
}

.zp-discount-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zp-dc-card {
  padding: 22px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}

.zp-dc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.zp-dc-blue {
  background: linear-gradient(135deg, rgba(30, 100, 117, 0.12), rgba(59, 184, 216, 0.1));
  border: 1.5px solid rgba(30, 100, 117, 0.2);
}

.zp-dc-green {
  background: linear-gradient(135deg, rgba(107, 163, 42, 0.12), rgba(139, 195, 74, 0.08));
  border: 1.5px solid rgba(107, 163, 42, 0.25);
}

.zp-dc-gold {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(251, 191, 36, 0.08));
  border: 1.5px solid rgba(217, 119, 6, 0.2);
}

.zp-dc-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.zp-dc-blue .zp-dc-amount {
  color: var(--teal);
}

.zp-dc-green .zp-dc-amount {
  color: var(--green);
}

.zp-dc-gold .zp-dc-amount {
  color: var(--gold);
}

.zp-dc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Zero fee badge */
.zp-zerofee-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--green-light), #f0faf5);
  border: 1.5px solid var(--border2);
  border-radius: 16px;
  transition: all 0.3s;
}

.zp-zerofee-badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.zp-zf-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--teal));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.zp-zf-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.zp-zf-lbl {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.2;
}

.zp-zf-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.zp-zf-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── RETAILER STATS ── */
.zp-retailer-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.zp-rs-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  transition: all 0.3s;
}

.zp-rs-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.zp-rs-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.zp-rs-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zp-rs-lbl {
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.3;
}

/* Merchant ID card */
.zp-merchant-card {
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: 18px;
  padding: 22px;
  color: #fff;
  box-shadow: 0 12px 36px rgba(107, 163, 42, 0.25);
  transition: all 0.3s;
}

.zp-merchant-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(107, 163, 42, 0.35);
}

.zp-mc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.zp-mc-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
}

.zp-mc-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}

.zp-mc-dot {
  width: 7px;
  height: 7px;
  background: #7fff6e;
  border-radius: 50%;
  animation: mcPulse 2s ease infinite;
}

@keyframes mcPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.zp-mc-id {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  opacity: 0.95;
}

.zp-mc-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.zp-mc-svc {
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 12px;
  border-radius: 50px;
}

.zp-mc-footer {
  font-size: 12px;
  opacity: 0.75;
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .zp-panel-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zp-panel-visual {
    position: static;
  }

  .zp-discount-cards {
    flex-direction: row;
  }

  .zp-dc-card {
    flex: 1;
  }

  .zp-retailer-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width:640px) {
  .zp-toggle {
    flex-direction: column;
    border-radius: 16px;
    padding: 4px;
  }

  .zp-toggle-btn {
    justify-content: center;
    border-radius: 12px;
  }

  .zp-discount-cards {
    flex-direction: column;
  }

  .zp-retailer-stats {
    grid-template-columns: 1fr 1fr;
  }

  .zp-recharge-bullets {
    grid-template-columns: 1fr;
  }

  .zp-panel-actions {
    flex-direction: column;
  }

  .zp-btn-primary,
  .zp-btn-outline {
    justify-content: center;
  }
}


/* ─────────────────────────────
   FEATURES
───────────────────────────── */
.feat-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.feat-card:hover {
  border-color: var(--border2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feat-card:hover::after {
  transform: scaleX(1);
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.feat-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.feat-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.feat-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  background: var(--green-light);
  border: 1px solid var(--border2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green-dark);
}

/* ─────────────────────────────
   SAVINGS
───────────────────────────── */
.savings-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.savings-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s;
}

.metric-row:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow-md);
}

.metric-lbl {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mv-g {
  color: var(--green);
}

.mv-t {
  color: var(--teal);
}

.mv-gold {
  color: var(--gold);
}

.bar-wrap {
  flex: 1;
  max-width: 140px;
}

.bar-track {
  height: 5px;
  background: var(--surface3);
  border-radius: 50px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 50px;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.bf-g {
  background: linear-gradient(90deg, var(--green), var(--green-bright));
}

.bf-t {
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
}

.bf-gold {
  background: linear-gradient(90deg, #d97706, #fbbf24);
}

.compare-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
}

.compare-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.compare-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
}

.cmp-col {
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}

.cmp-others {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.cmp-zapurse {
  background: var(--green-light);
  border: 1px solid var(--border2);
}

.cmp-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cmp-others .cmp-lbl {
  color: #b91c1c;
}

.cmp-zapurse .cmp-lbl {
  color: var(--green-dark);
}

.cmp-fee {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.cmp-others .cmp-fee {
  color: var(--red);
}

.cmp-zapurse .cmp-fee {
  color: var(--green);
}

.cmp-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.cmp-vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  z-index: 2;
}

.savings-callout {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--green-light);
  border: 1px solid var(--border2);
  border-radius: 14px;
}

.sc-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.sc-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
}

.sc-sub {
  font-size: 11px;
  color: var(--text-faint);
}



/* ===============================
   SAVINGS RESPONSIVE
================================ */

/* Laptop */
@media (max-width:1200px){

    .savings-layout{
        gap:50px;
    }

    .compare-card{
        padding:24px;
    }

}

/* Tablet */
@media (max-width:992px){

    .savings-layout{
        grid-template-columns:1fr;
        gap:40px;
    }

    .blg-head{
        flex-direction:column;
        gap:20px;
    }

    .section-desc{
        max-width:100% !important;
    }

    .compare-card{
        max-width:600px;
        margin:auto;
    }

}

/* Mobile */
@media (max-width:768px){

    .savings-layout{
        gap:30px;
    }

    .metric-row{
        padding:16px;
        gap:16px;
        flex-wrap:wrap;
    }

    .metric-val{
        font-size:22px;
    }

    .bar-wrap{
        width:100%;
        max-width:100%;
        flex:none;
    }

    .compare-card{
        padding:20px;
        border-radius:18px;
    }

    .compare-title{
        font-size:14px;
    }

    .compare-split{
        grid-template-columns:1fr;
        gap:14px;
    }

    .cmp-vs{
        position:relative;
        top:auto;
        left:auto;
        transform:none;
        margin:0 auto;
        order:2;
    }

    .cmp-col{
        padding:18px 14px;
    }

    .cmp-fee{
        font-size:26px;
    }

    .sc-val{
        font-size:18px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .section-title br{
        display:none;
    }

    .metric-row{
        padding:14px;
    }

    .metric-lbl{
        font-size:13px;
    }

    .metric-val{
        font-size:20px;
    }

    .cmp-fee{
        font-size:22px;
    }

    .cmp-lbl{
        font-size:9px;
    }

    .cmp-sub{
        font-size:10px;
    }

    .compare-card{
        padding:16px;
    }

    .savings-callout{
        padding:14px;
    }

}




/* =========================
RESPONSIVE
========================= */

/* Large Tablet */
@media (max-width:1200px) {

  .svc-mega-grid {
    grid-template-columns:
      repeat(2, 1fr);
    gap: 22px;
  }

}


/* Tablet */
@media (max-width:768px) {

  #services-colorful {
    padding: 80px 0;
  }

  .svc-head {
    margin-bottom: 42px;
    padding: 0 10px;
  }

  .svc-head .section-title {
    font-size: 42px;
    line-height: 1.1;
  }

  .svc-head .section-desc {
    font-size: 15px;
    max-width: 100%;
  }

  .svc-mega-grid {

    grid-template-columns:
      1fr;

    gap: 18px;

  }

  .svc-mega-card {

    padding:
      30px 24px;

    border-radius:
      22px;

    min-height:
      unset;

  }

  .smc-icon-wrap {

    width: 64px;

    height: 64px;

    font-size: 30px;

    margin-bottom: 18px;

  }

  .svc-mega-card h3 {

    font-size: 22px;

  }

  .svc-mega-card p {

    font-size: 14px;

    line-height: 1.7;

  }

  .smc-link {

    font-size: 14px;

  }

  .smc-deco {

    width: 100px;

    height: 100px;

    right: -20px;

    bottom: -20px;

  }

}


/* Small Mobile */
@media (max-width:576px) {

  #services-colorful {

    padding: 70px 0;

  }

  .svc-head .section-title {

    font-size: 34px;

  }

  .section-label {

    font-size: 12px;

  }

  .svc-mega-card {

    padding:
      26px 20px;

  }

  .svc-mega-card h3 {

    font-size: 20px;

  }

  .svc-mega-card p {

    font-size: 13px;

  }

  .smc-icon-wrap {

    width: 58px;

    height: 58px;

    font-size: 26px;

    border-radius: 16px;

  }

  .smc-link {

    font-size: 13px;

  }

}


/* Extra Small */
@media (max-width:380px) {

  .svc-head .section-title {

    font-size: 30px;

  }

  .svc-mega-card {

    padding: 22px 18px;

  }

  .smc-icon-wrap {

    width: 52px;

    height: 52px;

    font-size: 24px;

  }

}


/* ─────────────────────────────
   STATS RESPONSIVE
───────────────────────────── */
@media (max-width: 768px) {

  #stats {
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .stat-box {
    padding: 24px 16px;
  }

  .stat-num {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .stat-lbl {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 22px 18px;
  }

  .stat-num {
    font-size: 30px;
  }

  .stat-lbl {
    font-size: 14px;
  }
}

/* ─────────────────────────────
   SECURITY
───────────────────────────── */
#security {
  background: linear-gradient(180deg, var(--white), var(--bg2), var(--white));
}

.security-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.security-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.sec-badge {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s;
}

.sec-badge:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow-md);
}

.sec-badge-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.sec-badge h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-display);
  color: var(--text);
}

.sec-badge p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.shield-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}



/* ==========================
SECURITY VISUAL
========================== */

.security-layout {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 64px;

  align-items: center;

}

/* RIGHT IMAGE */

.shield-visual {

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  order: 2;

}

.security-media {

  position: relative;

  width: 100%;

  max-width: 560px;

  min-height: 520px;

}

/* MAIN IMAGE */

.security-main {

  width: 100%;

  height: 520px;

  object-fit: cover;

  display: block;

  border-radius: 32px;

  box-shadow:
    0 40px 90px rgba(0, 0, 0, .18);

}

/* FLOAT IMAGES */

.security-card {

  position: absolute;

  width: 180px;

  height: 220px;

  object-fit: cover;

  border-radius: 24px;

  background: #fff;

  padding: 8px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, .14);

  transition: .4s;

}

.security-card:hover {

  transform:
    translateY(-8px);

}

.security-card-1 {

  top: -20px;

  left: -40px;

  transform:
    rotate(-8deg);

}

.security-card-2 {

  bottom: -20px;

  right: -40px;

  transform:
    rotate(8deg);

}

/* FLOAT LABEL */

.security-float {

  position: absolute;

  background: #fff;

  padding: 14px 18px;

  border-radius: 999px;

  font-weight: 700;

  box-shadow:
    0 18px 50px rgba(0, 0, 0, .12);

  z-index: 5;

}

.security-float-1 {

  top: 30px;

  right: -20px;

}

.security-float-2 {

  bottom: 40px;

  left: -30px;

}

/* OLD CENTER ICON */

.shield-center {

  width: 92px;

  height: 92px;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      var(--green-light),
      var(--teal-pale));

  border: 2px solid var(--border2);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 38px;

  z-index: 2;

  box-shadow: var(--shadow-md);

}


/* ==========================
TABLET
========================== */

@media(max-width:900px) {

  .security-layout {

    display: flex;

    flex-direction: column;

    gap: 48px;

  }

  /* CONTENT FIRST */

  .security-layout>div:first-child {

    order: 1;

  }

  /* IMAGE SECOND */

  .shield-visual {

    order: 2;

    width: 100%;

  }

  .security-media {

    max-width: 100%;

    min-height: auto;

  }

  .security-main {

    height: 420px;

  }

  .security-card {

    width: 120px;

    height: 150px;

  }

  .security-card-1 {

    left: 0;

    top: -10px;

  }

  .security-card-2 {

    right: 0;

    bottom: -10px;

  }

}


/* MOBILE FIX — CONTENT FIRST IMAGE SECOND */

@media (max-width:900px) {

  .security-layout {

    display: flex !important;

    flex-direction: column !important;

  }

  /* LEFT CONTENT */
  .security-layout>.reveal:first-child {

    order: 1 !important;

    width: 100%;

  }

  /* RIGHT IMAGE */
  .security-layout>.shield-visual {

    order: 2 !important;

    width: 100%;

    margin-top: 40px;

  }

  .security-media {

    max-width: 100%;

    min-height: auto;

  }

  .security-main {

    height: 420px;

  }

}

@media (max-width:768px) {

  .security-main {

    height: 340px;

  }

}

@media (max-width:480px) {

  .security-main {

    height: 300px;

  }

  .security-card {

    display: none;

  }

}

/* ─────────────────────────────
   TESTIMONIALS
───────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  transition: all 0.3s;
}

.testi-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.testi-stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 18px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
}

.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.testi-role {
  font-size: 11px;
  color: var(--text-faint);
}



/* ==========================
   TESTIMONIALS RESPONSIVE
========================== */

@media (max-width:768px){

    .testi-grid{
        display:grid;
        grid-template-columns:1fr !important;
        gap:20px;
    }

    .testi-card{
        width:100%;
        margin:0;
    }

}
/* ─────────────────────────────
   FAQ
───────────────────────────── */
.faq-grid {
  max-width: 740px;
  margin: 54px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--border2);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  gap: 14px;
}

.faq-arrow {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--green);
  transition: all 0.3s;
  background: var(--surface2);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--green-light);
  border-color: var(--border2);
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s;
  padding: 0 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.72;
}

.faq-item.open .faq-ans {
  max-height: 280px;
  padding-bottom: 18px;
}

/* ─────────────────────────────
   DOWNLOAD
───────────────────────────── */
#download {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--teal-pale) 60%, var(--green-light) 100%);
}

#download::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(139, 195, 74, 0.2), transparent), radial-gradient(ellipse 60% 80% at 80% 50%, rgba(30, 100, 117, 0.12), transparent);
}

.download-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

.download-inner .section-label {
  justify-content: center;
}

.download-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.07;
  margin-bottom: 18px;
  color: var(--text);
}

.download-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.dl-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
}

.dl-play {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 8px 28px rgba(107, 163, 42, 0.35);
}

.dl-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(107, 163, 42, 0.45);
}

.dl-apple {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.dl-apple:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border2);
}

.dl-icon {
  font-size: 22px;
}

.dl-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.dl-small {
  font-size: 10px;
  opacity: 0.65;
  font-weight: 400;
}

.dl-big {
  font-size: 15px;
  font-weight: 700;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.ti-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-muted);
}

.ti-icon {
  color: var(--green);
  font-size: 15px;
}





/* ── BLG: Latest Blogs Section ── */
    .blg-section {
        padding: 110px 0;
        background: var(--bg2);
    }

    .blg-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 24px;
        margin-bottom: 48px;
        flex-wrap: wrap;
    }

    .blg-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }

    .blg-card {
        display: flex;
        flex-direction: column;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 20px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .blg-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--border2);
    }

    /* Featured card spans 2 rows on the left */
    .blg-featured {
        grid-row: span 2;
        flex-direction: column;
    }

    .blg-featured .blg-img-wrap {
        height: 280px;
    }

    .blg-featured h3 {
        font-size: 24px;
    }

    .blg-img-wrap {
        position: relative;
        width: 100%;
        height: 170px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .blg-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .blg-card:hover .blg-img-wrap img {
        transform: scale(1.08);
    }

    .blg-cat {
        position: absolute;
        top: 14px;
        left: 14px;
        padding: 5px 13px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 800;
        color: #fff;
        backdrop-filter: blur(4px);
    }

    .blg-cat-green {
        background: rgba(107, 163, 42, 0.92);
    }

    .blg-cat-teal {
        background: rgba(30, 100, 117, 0.92);
    }

    .blg-cat-gold {
        background: rgba(217, 119, 6, 0.92);
    }

    .blg-body {
        padding: 20px 22px 22px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .blg-meta {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13.5px;
        color: var(--text-faint);
        margin-bottom: 10px;
    }

    .blg-dot {
        opacity: 0.5;
    }

    .blg-card h3 {
        font-family: var(--font-display);
        font-size: 20px;
        font-weight: 700;
        color: var(--text);
        line-height: 1.3;
        letter-spacing: -0.01em;
        margin-bottom: 8px;
    }

    .blg-card p {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 16px;
        flex: 1;
    }

    .blg-link {
        font-size: 12.5px;
        font-weight: 800;
        color: var(--green);
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: gap 0.25s ease;
    }

    .blg-card:hover .blg-link {
        gap: 8px;
    }

    .blg-cta-row {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    /* ── Responsive ── */
    @media(max-width:900px) {
        .blg-grid {
            grid-template-columns: 1fr;
            grid-template-rows: auto;
        }

        .blg-featured {
            grid-row: auto;
        }

        .blg-featured .blg-img-wrap {
            height: 220px;
        }
    }

    @media(max-width:600px) {
        .blg-head {
            flex-direction: column;
            align-items: flex-start;
        }
    }



    /* ── ZMS: Mobile Showcase Section ── */
.zms-section{
  padding:110px 0;
  background:linear-gradient(180deg,var(--white),var(--bg2),var(--white));
  overflow:hidden;
}

.zms-layout{
  display:grid;grid-template-columns:1fr 1fr;
  gap:64px;align-items:center;
}

/* Visual collage */
.zms-visual{position:relative;display:flex;justify-content:center;}
.zms-img-main{
  width:100%;max-width:420px;border-radius:24px;overflow:hidden;
  box-shadow:var(--shadow-xl);border:4px solid #fff;
  position:relative;z-index:2;
}
.zms-img-main img{
  width:100%;height:460px;object-fit:cover;display:block;
  transition:transform 0.6s ease;
}
.zms-visual:hover .zms-img-main img{transform:scale(1.05);}

.zms-img-float{
  position:absolute;width:140px;height:140px;border-radius:18px;
  overflow:hidden;border:4px solid #fff;box-shadow:var(--shadow-lg);
  z-index:3;
}
.zms-img-float img{width:100%;height:100%;object-fit:cover;display:block;}
.zms-img-float-1{
  bottom:-24px;left:-30px;
  animation:zmsFloat1 6s ease-in-out infinite;
}
@keyframes zmsFloat1{
  0%,100%{transform:translateY(0) rotate(-4deg);}
  50%{transform:translateY(-14px) rotate(-4deg);}
}

.zms-badge-card{
  position:absolute;top:18px;right:-20px;
  background:#fff;border-radius:16px;padding:14px 18px;
  display:flex;align-items:center;gap:12px;
  box-shadow:var(--shadow-lg);border:1.5px solid var(--border2);
  z-index:4;
}
.zms-badge-float{animation:zmsFloat2 7s ease-in-out infinite 1s;}
@keyframes zmsFloat2{
  0%,100%{transform:translateY(0) rotate(3deg);}
  50%{transform:translateY(-12px) rotate(3deg);}
}
.zms-badge-icon{font-size:24px;}
.zms-badge-amt{font-family:var(--font-display);font-size:17px;font-weight:800;color:var(--green);letter-spacing:-0.02em;}
.zms-badge-lbl{font-size:10px;color:var(--text-faint);}

.zms-stat-chip{
  position:absolute;bottom:20px;right:-10px;
  background:var(--text);color:#fff;
  padding:9px 18px;border-radius:50px;
  font-size:12px;font-weight:600;
  display:flex;align-items:center;gap:8px;
  box-shadow:var(--shadow-md);z-index:4;
}
.zms-chip-dot{width:7px;height:7px;border-radius:50%;background:var(--green-bright);animation:zmsPulse 2s ease infinite;}
@keyframes zmsPulse{0%,100%{opacity:1;}50%{opacity:0.4;}}

/* Content side */
.zms-feature-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;
  margin:28px 0 32px;
}
.zms-feature{
  display:flex;align-items:flex-start;gap:10px;
  padding:14px;background:#fff;border:1px solid var(--border);
  border-radius:14px;transition:all 0.3s;
}
.zms-feature:hover{border-color:var(--border2);box-shadow:var(--shadow-sm);transform:translateY(-2px);}
.zms-feature-ico{font-size:18px;flex-shrink:0;}
.zms-feature-txt{font-size:13px;color:var(--text-muted);line-height:1.5;}
.zms-feature-txt strong{color:var(--text2);font-weight:700;}

.zms-operator-row{
  display:flex;align-items:center;gap:6px;margin-bottom:28px;
}
.zms-op-avatar{
  width:34px;height:34px;border-radius:50%;object-fit:cover;
  border:2.5px solid #fff;box-shadow:var(--shadow-sm);
  margin-left:-10px;
}
.zms-op-avatar:first-child{margin-left:0;}
.zms-op-text{font-size:13px;color:var(--text-muted);margin-left:10px;}

/* ── Responsive ── */
/* ── Responsive ── */

@media(max-width:900px){

.zms-layout{

grid-template-columns:1fr;

gap:48px;

}

/* HEADING FIRST */
.zms-content{

order:1;

}

/* IMAGE SECOND */
.zms-visual{

order:2;

}

.zms-img-main{

max-width:100%;

}

.zms-img-main img{

height:380px;

}

.zms-img-float{

width:110px;

height:110px;

left:-15px;

}

}

@media(max-width:480px){

.zms-feature-grid{

grid-template-columns:1fr;

}

.zms-badge-card{

right:0;

top:-10px;

padding:10px 14px;

}

.zms-img-float{

display:none;

}

.zms-img-main img{

height:320px;

}

}





