:root {
  --green: #2E7D32;
  --green-light: #43A047;
  --green-pale: #E8F5E9;
  --green-mid: #C8E6C9;
  --orange: #F57C00;
  --orange-light: #FB8C00;
  --orange-pale: #FFF3E0;
  --orange-mid: #FFE0B2;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --text: #1B1B1B;
  --text-mid: #444;
  --text-light: #777;
  --border: #E0E0E0;
  --radius: 14px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Roboto", sans-serif;
  background: var(--off-white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--green);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.logo {
  font-size: 22px; font-weight: 800;
  color: var(--green);
  display: flex; align-items: center; gap: 6px;
}

.logo img{
    width: 100px;
    
}

.logo-dot { color: var(--orange); }
.nav-links {
  display: flex; gap: 24px; align-items: center;
}
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-size: 14px; font-weight: 600;
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--orange); color: #fff;
  border: none; padding: 9px 20px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer;
}
.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text); }

/*-- play icon--*/
.playicons a{
    text-decoration: none;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--orange-pale) 100%);
  padding: 60px 5% 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(46,125,50,0.03) 0px, rgba(46,125,50,0.03) 1px, transparent 1px, transparent 40px);
}
.hero-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
  animation: fadeDown .6s ease both;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 14px;
  animation: fadeDown .7s .1s ease both;
}
.hero h1 span {
  color: var(--orange);
}
.hero p {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 32px;
  animation: fadeDown .7s .2s ease both;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown .7s .3s ease both;
}
.btn-green {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-orange:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 11px 26px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
}
.btn-google {
  background: #1B1B1B;
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-google:hover {
  background: #000000;
  transform: translateY(-2px);
}
.google-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

/* ── HERO CARDS ── */
.hero-cards {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
  animation: fadeUp .7s .4s ease both;
}
.hero-stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  min-width: 120px;
}
.hero-stat .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
}
.hero-stat .lbl {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}
/* ── HERO CARDS ── */
.hero-cards {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 44px;
  animation: fadeUp .7s .4s ease both;
}
.hero-stat {
  background: var(--white); border-radius: var(--radius);
  padding: 16px 22px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  min-width: 120px;
}
.hero-stat .num { font-size: 24px; font-weight: 800; color: var(--green); }
.hero-stat .lbl { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.hero-btns a > img{
    width:20px;
}

/* ── SECTIONS ── */
section { padding: 60px 5%; }
.section-label {
  display: inline-block;
  background: var(--green-pale); color: var(--green);
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 10px; border: 1px solid var(--green-mid);
}
.section-label.orange-label {
  background: var(--orange-pale); color: var(--orange);
  border-color: var(--orange-mid);
}
h2 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800; color: var(--text); margin-bottom: 10px;
  line-height: 1.2;
}
h2 .accent-green { color: var(--green); }
h2 .accent-orange { color: var(--orange); }
.section-sub { font-size: 15px; color: var(--text-light); max-width: 540px; margin-bottom: 36px; }

/* ── FEATURES GRID ── */
.features-section { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 8px;
}
.feat-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transition: transform .3s;
}
.feat-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(46,125,50,0.12); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-card.orange-card::before { background: var(--orange); }
.feat-card.orange-card:hover { border-color: var(--orange); box-shadow: 0 8px 24px rgba(245,124,0,0.12); }
.feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  background: var(--green-pale);
}
.orange-card .feat-icon { background: var(--orange-pale); }
.feat-card h3 { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.feat-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; }
.feat-tag {
  display: inline-block; margin-top: 12px;
  background: var(--green-pale); color: var(--green);
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 50px;
}
.orange-card .feat-tag { background: var(--orange-pale); color: var(--orange); }

/* ── HOW IT WORKS ── */
.how-section { background: var(--green-pale); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--green-mid);
  z-index: 0;
}
.step-card {
  background: var(--white); border-radius: var(--radius);
  padding: 22px 18px; text-align: center;
  border: 1.5px solid var(--green-mid);
  position: relative; z-index: 1;
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(46,125,50,0.12); }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.step-card h4 { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.step-card p { font-size: 12px; color: var(--text-light); }
.step-emoji { font-size: 26px; margin-bottom: 8px; }

/* ── BOOKING PLANS ── */
.booking-section { background: var(--white); }
.plans-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.tab-btn {
  padding: 9px 20px; border-radius: 50px;
  border: 2px solid var(--border); background: transparent;
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--text-light); cursor: pointer; transition: all .2s;
}
.tab-btn.active { background: var(--green); border-color: var(--green); color: #fff; }
.tab-btn:hover:not(.active) { border-color: var(--green); color: var(--green); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.plan-card {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  transition: all .25s; position: relative;
}
.plan-card:hover { border-color: var(--green); box-shadow: 0 6px 20px rgba(46,125,50,0.1); transform: translateY(-3px); }
.plan-card.popular { border-color: var(--orange); }
.popular-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 3px 14px; border-radius: 50px; white-space: nowrap;
}
.plan-name { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.plan-price { font-size: 28px; font-weight: 800; color: var(--green); margin-bottom: 2px; }
.plan-price sub { font-size: 13px; font-weight: 600; color: var(--text-light); }
.plan-desc { font-size: 13px; color: var(--text-light); margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.plan-features { list-style: none; margin-bottom: 18px; }
.plan-features li {
  font-size: 13px; color: var(--text-mid);
  padding: 5px 0; display: flex; align-items: flex-start; gap: 8px;
}
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.plan-card.popular .plan-features li::before { color: var(--orange); }
.plan-note { font-size: 12px; color: var(--text-light); font-style: italic; margin-bottom: 14px; }

/* Bulk info */
.bulk-info { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bulk-card {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.bulk-card h4 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.bulk-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; margin-bottom: 10px; }
.bulk-list { list-style: none; }
.bulk-list li { font-size: 13px; color: var(--text-mid); padding: 4px 0; display: flex; gap: 8px; align-items: flex-start; }
.bulk-list li::before { content: '→'; color: var(--orange); font-weight: 800; flex-shrink: 0; }

/* Change plan */
.change-info { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.info-box {
  background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px;
}
.info-box h4 { font-size: 15px; font-weight: 800; margin-bottom: 10px; color: var(--text); display: flex; gap: 8px; }
.info-box p { font-size: 13px; color: var(--text-light); line-height: 1.65; margin-bottom: 8px; }
.info-box ul { list-style: none; }
.info-box ul li { font-size: 13px; color: var(--text-mid); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; }
.info-box ul li:last-child { border-bottom: none; }
.badge-green { background: var(--green-pale); color: var(--green); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 50px; }
.badge-orange { background: var(--orange-pale); color: var(--orange); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 50px; }

/* ── WALLET ── */
.wallet-section {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 60%, #388E3C 100%);
  color: #fff;
}
.wallet-section .section-label { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); }
.wallet-section h2 { color: #fff; }
.wallet-section .section-sub { color: rgba(255,255,255,0.7); }

.wallet-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.wallet-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg); padding: 28px;
  backdrop-filter: blur(10px);
}
.wallet-card-header { display: flex; justify-content: space-between; margin-bottom: 22px; align-items: flex-start; }
.wc-title { font-size: 13px; font-weight: 700; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }
.wc-logo { font-size: 20px; }
.wc-balance-label { font-size: 12px; opacity: 0.6; margin-bottom: 4px; }
.wc-balance { font-size: 42px; font-weight: 800; margin-bottom: 22px; }
.wc-balance span { font-size: 20px; opacity: 0.7; }

.wallet-actions-row { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.w-action-btn {
  flex: 1; min-width: 90px; padding: 10px 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; color: #fff; font-family: 'Nunito', sans-serif;
  font-size: 12px; font-weight: 700; cursor: pointer; text-align: center;
  transition: background .2s;
}
.w-action-btn:hover { background: rgba(255,255,255,0.22); }
.w-action-btn .wab-icon { font-size: 18px; display: block; margin-bottom: 3px; }

.txn-list { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 14px; }
.txn-title { font-size: 11px; opacity: 0.5; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.txn-item { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.txn-item:last-child { border-bottom: none; }
.txn-left { display: flex; align-items: center; gap: 10px; }
.txn-dot { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.txn-name { font-size: 13px; font-weight: 600; }
.txn-when { font-size: 11px; opacity: 0.5; }
.txn-amt { font-size: 14px; font-weight: 800; }
.txn-amt.debit { color: #FFAB91; }
.txn-amt.credit { color: #A5D6A7; }

/* QR Panel */
.qr-panel { display: flex; flex-direction: column; gap: 20px; }
.qr-panel h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.qr-panel > p { font-size: 14px; color: rgba(255,255,255,0.65); }

.qr-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 22px; display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  max-width: 220px;
}
.qr-label { font-size: 12px; color: var(--text-light); font-weight: 600; }
.qr-id { font-size: 15px; font-weight: 800; color: var(--green); }

.qr-how {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 18px;
}
.qr-how h4 { font-size: 14px; font-weight: 800; margin-bottom: 12px; color: #fff; }
.qr-steps { display: flex; flex-direction: column; gap: 10px; }
.qr-step { display: flex; align-items: flex-start; gap: 10px; }
.qrs-num { width: 22px; height: 22px; min-width: 22px; background: var(--orange); border-radius: 50%; color: #fff; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.qrs-text { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; }

.pay-options { display: flex; gap: 10px; flex-wrap: wrap; }
.pay-opt {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; padding: 10px 14px; text-align: center;
  flex: 1; min-width: 80px;
}
.pay-opt .po-icon { font-size: 20px; margin-bottom: 3px; }
.pay-opt .po-name { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 700; }

/* ── SETTLEMENT ── */
.settlement-section { background: var(--orange-pale); }
.settle-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.earn-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 26px;
  border: 1.5px solid var(--orange-mid);
  box-shadow: 0 4px 16px rgba(245,124,0,0.08);
}
.ec-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.ec-title { font-size: 16px; font-weight: 800; color: var(--text); }
.ec-week { font-size: 11px; color: var(--text-light); background: var(--orange-pale); padding: 4px 10px; border-radius: 50px; }

.bar-item { margin-bottom: 12px; }
.bar-top { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-mid); margin-bottom: 5px; font-weight: 600; }
.bar-bg { height: 9px; background: var(--orange-mid); border-radius: 50px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--orange), var(--orange-light)); transition: width 1s ease; }

.settle-total-row {
  margin-top: 20px; background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 12px; padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.stl-label { font-size: 12px; color: rgba(255,255,255,0.8); }
.stl-amount { font-size: 26px; font-weight: 800; color: #fff; }
.stl-badge { background: rgba(255,255,255,0.2); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; }

.settle-info h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.settle-info > p { font-size: 14px; color: var(--text-light); margin-bottom: 22px; line-height: 1.65; }
.settle-steps { display: flex; flex-direction: column; gap: 14px; }
.ss-item { display: flex; gap: 14px; align-items: flex-start; }
.ss-num { width: 32px; height: 32px; min-width: 32px; background: var(--orange); border-radius: 50%; color: #fff; font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.ss-body strong { display: block; font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.ss-body span { font-size: 12px; color: var(--text-light); }

.fee-box {
  background: var(--white); border: 1.5px solid var(--orange-mid); border-radius: var(--radius); padding: 16px 18px; margin-top: 18px;
}
.fee-box h4 { font-size: 14px; font-weight: 800; color: var(--orange); margin-bottom: 10px; }
.fee-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text-mid); }
.fee-row:last-child { border: none; font-weight: 800; color: var(--text); }

/* ── SELLER ── */
.seller-section { background: var(--white); }
.seller-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.seller-app-mock {
  background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.sam-header {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  padding: 18px 20px; display: flex; align-items: center; gap: 14px;
}
.sam-icon { font-size: 28px; }
.sam-title { font-size: 16px; font-weight: 800; color: #fff; }
.sam-sub { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 1px; }
.sam-status { margin-left: auto; background: rgba(255,255,255,0.2); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }

.sam-body { padding: 18px; }
.sam-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.sstat {
  background: var(--white); border-radius: 10px; padding: 12px; text-align: center;
  border: 1px solid var(--border);
}
.sstat .sv { font-size: 20px; font-weight: 800; color: var(--green); }
.sstat .sk { font-size: 11px; color: var(--text-light); }

.menu-section-title { font-size: 11px; font-weight: 800; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.menu-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border-radius: 10px; padding: 10px 14px; margin-bottom: 8px;
  border: 1px solid var(--border);
}
.menu-row-left { display: flex; align-items: center; gap: 10px; }
.menu-emoji { font-size: 18px; }
.menu-name { font-size: 13px; font-weight: 700; color: var(--text); }
.menu-price { font-size: 11px; color: var(--text-light); }

.toggle-pill {
  width: 36px; height: 20px; border-radius: 10px; border: none; cursor: pointer;
  position: relative; transition: background .2s; flex-shrink: 0;
  background: var(--border);
}
.toggle-pill.on { background: var(--green); }
.toggle-pill::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; background: #fff; border-radius: 50%;
  transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-pill.on::after { transform: translateX(16px); }

.sam-footer { padding: 0 18px 18px; }
.update-btn {
  width: 100%; background: var(--green); color: #fff; border: none;
  padding: 14px; border-radius: 12px; font-family: 'Nunito', sans-serif;
  font-size: 15px; font-weight: 800; cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.update-btn:hover { background: var(--green-light); }

.seller-info h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.seller-info > p { font-size: 14px; color: var(--text-light); margin-bottom: 22px; line-height: 1.65; }
.perks-list { display: flex; flex-direction: column; gap: 12px; }
.perk-row {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px;
  transition: border-color .2s;
}
.perk-row:hover { border-color: var(--green); }
.perk-icon { font-size: 22px; flex-shrink: 0; }
.perk-title { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.perk-desc { font-size: 12px; color: var(--text-light); line-height: 1.55; }

.join-box {
  margin-top: 22px; background: var(--green-pale); border: 1.5px solid var(--green-mid); border-radius: var(--radius); padding: 20px;
}
.join-box h4 { font-size: 15px; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.join-box p { font-size: 13px; color: var(--text-mid); margin-bottom: 14px; line-height: 1.55; }
.join-steps { display: flex; flex-direction: column; gap: 6px; }
.join-step { font-size: 12px; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.join-step::before { content: '✓'; color: var(--green); font-weight: 800; }

/* ── FAQ ── */
/* ── FAQ ── */
.faq-section { background: var(--green-pale); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-item {
  background: var(--white); 
  border-radius: var(--radius); 
  padding: 18px 20px;
  border: 1px solid var(--green-mid);
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { 
  border-color: var(--green); 
  box-shadow: 0 4px 14px rgba(46,125,50,0.08); 
}
.faq-q {
  display: flex; 
  justify-content: space-between; 
  align-items: flex-start; 
  gap: 10px;
  font-size: 14px; 
  font-weight: 800; 
  color: var(--text);
  cursor: pointer;
  user-select: none;
}
.faq-chevron { 
  font-size: 16px; 
  color: var(--green); 
  flex-shrink: 0; 
  transition: transform .3s; 
}
.faq-item.open .faq-chevron { 
  transform: rotate(180deg); 
}
.faq-a {
  font-size: 13px; 
  color: var(--text-light); 
  margin-top: 0;
  line-height: 1.65;
  max-height: 0; 
  overflow: hidden; 
  transition: max-height 0.35s ease-out, margin-top 0.2s ease-out;
}
.faq-item.open .faq-a { 
  max-height: 300px;
  margin-top: 10px;
}
/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, #388E3C 100%);
  text-align: center; padding: 70px 5%;
}
.cta-section h2 { color: #fff; font-size: clamp(24px,4vw,40px); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 520px; margin: 0 auto 32px; }
.app-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.app-badge {
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px; padding: 10px 22px;
  display: flex; align-items: center; gap: 10px; color: #fff;
  text-decoration: none; cursor: pointer; transition: background .2s;
}
.app-badge:hover { background: rgba(255,255,255,0.2); }
.app-badge .ab-icon { font-size: 22px; }
.ab-text .ab-sub { font-size: 10px; opacity: 0.7; }
.ab-text .ab-name { font-size: 14px; font-weight: 800; }

/* ── FOOTER (UPDATED) ── */
footer {
  background: #1B1B1B; padding: 50px 5% 24px; color: rgba(255,255,255,0.85);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand {
  max-width: 300px;
}
.footer-logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--green-light);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-logo span { color: var(--orange); }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 18px;
}
.footer-logo img{
    width: 300px;
}
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.social-icons img{
    width: 30px;
}
.social-icons a:hover {
  background: #fff;
  color: #fff;
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--green-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--orange-light);
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.contact-detail span:first-child { font-size: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.privacy-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.privacy-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 12px;
}
.privacy-links a:hover {
  color: var(--orange-light);
}
.footer-tagline {
  font-weight: 800;
  color: var(--orange-light);
  font-size: 13px;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .privacy-links { justify-content: center; }
}

/* ── OTHER UTILITIES ── */
.info-strip {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 18px;
  display: flex; align-items: flex-start; gap: 10px; margin-top: 14px;
}
.is-icon { font-size: 18px; flex-shrink: 0; }
.is-text { font-size: 13px; color: var(--text-mid); line-height: 1.55; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-bottom: 2px solid var(--green);
  padding: 10px 5%; position: sticky; top: 60px; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--text-mid); font-size: 14px; font-weight: 600;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .wallet-layout, .settle-layout, .seller-layout { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .bulk-info, .change-info { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  nav .nav-links { display: none; }
  nav .nav-cta { display: none; }
  .hamburger { display: block; }
  .sam-stats { grid-template-columns: 1fr 1fr; }
  .hero-cards { gap: 10px; }
  .hero-stat { min-width: 100px; padding: 14px 14px; }
}