/* ═══════════════════════════════════════════════════════════════════
   Bonik AI — bonikai.app — Global Stylesheet
   ═══════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ────────────────────────────────────────────── */
:root {
  --primary:       #1B66E0;
  --primary-dark:  #1449B0;
  --primary-light: #EFF6FF;
  --accent:        #F59E0B;
  --accent-dark:   #D97706;
  --dark:          #0F172A;
  --dark-2:        #1E293B;
  --text:          #334155;
  --text-light:    #64748B;
  --border:        #E2E8F0;
  --bg:            #FFFFFF;
  --bg-light:      #F8FAFC;
  --success:       #10B981;
  --danger:        #EF4444;
  --warn:          #F59E0B;

  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:        0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.12);
  --shadow-blue:   0 8px 32px rgba(27,102,224,.25);

  --font-sans:     'Inter', system-ui, -apple-system, sans-serif;
  --font-bengali:  'Hind Siliguri', 'Inter', sans-serif;

  --header-h:      68px;
  --container:     1180px;
}

/* ─── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ─── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-bengali);
  line-height: 1.25;
  font-weight: 700;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { font-size: 1rem; color: var(--text); }

/* ─── Utilities ─────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.w-full { width: 100%; }

/* Section layout helpers */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-bengali);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 52px;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 10px 36px rgba(27,102,224,.35); }
.btn-ghost {
  color: var(--primary);
  border: 1.5px solid var(--primary);
  background: transparent;
}
.btn-ghost:hover { background: var(--primary-light); }
.btn-outline {
  color: var(--primary);
  border: 1.5px solid var(--border);
  background: transparent;
}
.btn-outline:hover { border-color: var(--primary); background: var(--primary-light); }
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm  { padding: 8px 18px; font-size: .875rem; }
.btn-lg  { padding: 15px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 36px; height: 36px; border-radius: 9px; }
.logo-text { font-size: 1.25rem; font-weight: 800; color: var(--dark); letter-spacing: -.02em; }
.logo-ai { color: var(--primary); }

/* Nav */
.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: all .15s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  border-top: 1px solid var(--border);
  padding: 12px 0 20px;
  background: #fff;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav-list { padding: 0 20px; }
.mobile-nav-link {
  display: block;
  padding: 12px 4px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.mobile-nav-link:hover { color: var(--primary); }
.mobile-nav-list li:last-child { margin-top: 16px; }

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: linear-gradient(160deg, #EFF6FF 0%, #FFFFFF 60%);
}

/* Background shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.shape-1 { width: 500px; height: 500px; background: #BFDBFE; top: -100px; right: -80px; }
.shape-2 { width: 300px; height: 300px; background: #FDE68A; bottom: 0; left: 10%; }
.shape-3 { width: 200px; height: 200px; background: #A5F3FC; top: 40%; left: -50px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FEF3C7;
  color: #92400E;
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid #FDE68A;
}

.hero-copy h1 {
  margin-bottom: 22px;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Hero Actions */
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

/* Trust badges */
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }

.phone-mockup { position: relative; }
.phone-frame {
  width: 260px;
  height: 520px;
  background: var(--dark);
  border-radius: 36px;
  padding: 16px 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
  position: relative;
  z-index: 2;
}
.phone-screen {
  background: #F8FAFC;
  border-radius: 24px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 12px;
}
.phone-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(27,102,224,.3), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 3s ease-in-out infinite;
}

/* Mock app UI */
.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  font-weight: 700;
  color: var(--dark);
}
.mock-plan-badge {
  background: var(--accent);
  color: white;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.mock-card {
  border-radius: 12px;
  padding: 12px;
  color: white;
}
.mock-card--blue { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.mock-label  { font-size: .65rem; opacity: .8; }
.mock-value  { font-size: 1.3rem; font-weight: 800; margin: 2px 0; }
.mock-sub    { font-size: .65rem; opacity: .75; }
.mock-row    { display: flex; gap: 8px; }
.mock-mini-card {
  flex: 1;
  background: white;
  border-radius: 10px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}
.mock-mini-label { font-size: .6rem; color: var(--text-light); }
.mock-mini-value { font-size: .9rem; font-weight: 700; color: var(--dark); }
.mock-order-item {
  background: white;
  border-radius: 8px;
  padding: 8px 10px;
  box-shadow: var(--shadow-sm);
}
.mock-order-status {
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 3px;
}
.mock-status--pickup { background: #DBEAFE; color: var(--primary); }
.mock-status--delivered { background: #D1FAE5; color: #059669; }
.mock-order-name { font-size: .78rem; font-weight: 600; color: var(--dark); }
.mock-order-detail { font-size: .65rem; color: var(--text-light); }
.mock-ai-badge {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  color: white;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: .7rem;
  font-weight: 600;
  animation: blink 1.5s ease-in-out infinite;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.float-card--tl { top: 60px; left: -30px; animation-delay: 0s; }
.float-card--br { bottom: 80px; right: -20px; animation-delay: 2s; }
.float-card-icon { font-size: 1.2rem; }
.float-card-text { font-size: .78rem; font-weight: 600; color: var(--dark); white-space: nowrap; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: .3; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.05); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .7; }
}

/* ═══════════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--dark);
  padding: 32px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 12px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  font-family: var(--font-bengali);
  line-height: 1;
}
.stat-unit {
  font-size: 1rem;
  margin-left: 4px;
  font-weight: 600;
  opacity: .8;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
}

/* ═══════════════════════════════════════════════════════════════════
   PROBLEM / SOLUTION
   ═══════════════════════════════════════════════════════════════════ */
.problem-solution {
  padding: 100px 0 60px;
  text-align: center;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.problem-card {
  background: #FFF7ED;
  border: 1px solid #FBBF24;
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem-icon { font-size: 2rem; }
.problem-card p { font-size: .9rem; color: var(--text); line-height: 1.6; }
.problem-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}
.problem-arrow svg { width: 36px; height: 36px; }

/* ═══════════════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════════════ */
.features {
  padding: 40px 0 100px;
}
.features .container > .section-title { text-align: center; }
.features .container > .section-sub   { margin: 0 auto 60px; text-align: center; }

/* Feature Showcase */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.feature-showcase:last-of-type { border-bottom: none; }
.feature-showcase--reverse .feature-showcase-copy  { order: 2; }
.feature-showcase--reverse .feature-showcase-visual { order: 1; }

.feature-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.feature-showcase-copy h3 { font-size: 1.8rem; margin-bottom: 16px; }
.feature-desc { font-size: 1rem; color: var(--text); line-height: 1.8; margin-bottom: 24px; }
.feature-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--text);
}
.feature-bullets li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.feature-time-save {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #D1FAE5;
  color: #065F46;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 600;
}
.time-icon { font-size: 1.1rem; }

/* Visual panels */
.feature-showcase-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Order extraction demo */
.feature-card-demo {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.demo-step {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.demo-step--ai { background: linear-gradient(135deg, #EDE9FE, #DDD6FE); }
.demo-step-num {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.demo-step-num.ai { background: transparent; font-size: 1.4rem; width: auto; height: auto; }
.demo-step-text { font-size: .9rem; font-weight: 500; color: var(--dark); }
.demo-arrow { text-align: center; color: var(--text-light); font-size: 1.2rem; }
.demo-extracted {
  background: #F0FDF4;
  border: 1px solid #A7F3D0;
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.demo-extracted-row { display: flex; justify-content: space-between; font-size: .82rem; }
.demo-label { color: var(--text-light); }
.demo-val { font-weight: 600; color: var(--dark); }
.demo-book-btn {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
}

/* Courier cards */
.courier-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 340px;
}
.courier-card {
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
}
.courier-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}
.steadfast { background: #1B66E0; }
.pathao    { background: #E9222C; }
.redx      { background: #FF5722; }
.courier-name { font-weight: 700; color: var(--dark); font-size: .95rem; flex: 1; }
.courier-status { font-size: .75rem; font-weight: 600; }
.connected { color: var(--success); }
.courier-stat-bar {
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  margin-top: 8px;
  max-width: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .85rem;
  color: var(--text);
  font-weight: 500;
}
.progress-bar { height: 8px; background: var(--border); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--primary); border-radius: 100px; transition: width .5s; }
.progress-text { font-weight: 700; color: var(--dark); font-size: .9rem; }

/* Post demo */
.post-demo {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 360px;
}
.post-demo-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 14px 20px;
  font-weight: 700;
  font-size: .9rem;
}
.post-demo-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .9rem;
  color: var(--dark);
  line-height: 1.7;
  font-family: var(--font-bengali);
}
.post-demo-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.post-lang-badge, .post-style-badge {
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.post-lang-badge  { background: var(--primary-light); color: var(--primary); }
.post-style-badge { background: #FEF3C7; color: #92400E; }

/* Fraud demo */
.fraud-demo {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fraud-alert {
  background: #FFF1F2;
  border: 1px solid #FDA4AF;
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.fraud-icon { font-size: 2rem; }
.fraud-text strong { font-size: .95rem; color: var(--danger); display: block; margin-bottom: 4px; }
.fraud-text p { font-size: .8rem; color: var(--text-light); }
.fraud-stats { display: flex; gap: 12px; }
.fraud-stat {
  flex: 1;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fraud-stat-val { font-size: 1.4rem; font-weight: 900; }
.fraud-stat-label { font-size: .7rem; color: var(--text-light); font-weight: 500; }
.fraud-stat-val.delivered { color: var(--success); }
.fraud-stat-val.cancelled { color: var(--danger); }
.fraud-stat-val.returned  { color: var(--warn); }
.fraud-tip {
  background: #FEF3C7;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .82rem;
  color: #92400E;
  font-weight: 500;
}

/* Finance demo */
.finance-demo {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.finance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.finance-row--profit { border-bottom: none; border-top: 2px solid var(--border); padding-top: 14px; }
.finance-label { font-size: .9rem; color: var(--text); font-weight: 500; }
.finance-val { font-weight: 700; font-size: 1rem; font-family: var(--font-bengali); }
.finance-val.income  { color: var(--success); }
.finance-val.expense { color: var(--danger); }
.finance-val.profit  { color: var(--primary); font-size: 1.2rem; }
.finance-entries { display: flex; flex-direction: column; gap: 8px; }
.entry {
  font-size: .82rem;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500;
}
.income-entry  { background: #D1FAE5; color: #065F46; }
.expense-entry { background: #FEE2E2; color: #991B1B; }

/* Feature Grid 3 */
.feature-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.feat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .2s;
}
.feat-card:hover { border-color: var(--primary); box-shadow: var(--shadow-blue); transform: translateY(-3px); }
.feat-card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.feat-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.feat-card p  { font-size: .88rem; color: var(--text-light); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-light);
  text-align: center;
}
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 52px 0 36px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 0 20px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: 900;
  font-size: .95rem;
  margin-bottom: 14px;
  font-family: var(--font-bengali);
}
.step-icon { font-size: 3rem; margin-bottom: 14px; display: block; }
.step h3   { margin-bottom: 10px; font-size: 1.15rem; }
.step p    { font-size: .9rem; color: var(--text-light); line-height: 1.65; }
.step-connector {
  flex-shrink: 0;
  margin-top: 70px;
  padding: 0 10px;
}
.step-connector svg { width: 50px; height: 22px; }
.how-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-blue);
}

/* ═══════════════════════════════════════════════════════════════════
   INTEGRATIONS
   ═══════════════════════════════════════════════════════════════════ */
.integrations { padding: 100px 0; text-align: center; }
.integration-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.integration-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all .2s;
}
.integration-card:hover { border-color: var(--primary); box-shadow: var(--shadow-blue); transform: translateY(-4px); }
.integration-logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
}
.integration-logo--steadfast { background: linear-gradient(135deg, #1B66E0, #0F3E8A); }
.integration-logo--pathao    { background: linear-gradient(135deg, #E9222C, #A00011); }
.integration-logo--redx      { background: linear-gradient(135deg, #FF5722, #BF360C); }
.integration-logo--woo       { background: linear-gradient(135deg, #7F54B3, #4B1A7A); }
.integration-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.integration-card p  { font-size: .87rem; color: var(--text-light); line-height: 1.65; margin-bottom: 14px; }
.integration-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 12px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
}

/* ═══════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--bg-light);
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
  align-items: start;
}
.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: left;
  position: relative;
  transition: all .2s;
}
.pricing-card:hover { border-color: var(--primary); box-shadow: var(--shadow-blue); transform: translateY(-4px); }
.pricing-card--popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-blue);
  transform: scale(1.03);
}
.pricing-card--popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name   { font-size: 1rem; font-weight: 700; color: var(--text-light); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .08em; }
.plan-price  { font-size: 1.8rem; font-weight: 900; color: var(--dark); margin-bottom: 4px; font-family: var(--font-bengali); }
.price-num   { font-size: 2.2rem; }
.price-period { font-size: .9rem; font-weight: 500; color: var(--text-light); }
.plan-tagline { font-size: .82rem; color: var(--text-light); margin-bottom: 20px; }
.plan-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.plan-features li { font-size: .83rem; display: flex; align-items: flex-start; gap: 8px; color: var(--text); line-height: 1.4; }
.check { color: var(--success); font-weight: 700; flex-shrink: 0; }
.cross { color: var(--border); font-weight: 700; flex-shrink: 0; }
.pricing-note {
  margin-top: 32px;
  font-size: .88rem;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════ */
.testimonials { padding: 100px 0; text-align: center; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  font-family: var(--font-bengali);
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  font-family: var(--font-bengali);
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.testimonial-role { font-size: .78rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 100px 0;
  text-align: center;
}
.final-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.final-cta h2 { color: white; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.final-cta p  { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 560px; line-height: 1.7; }
.cta-actions  { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.cta-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer-cta-strip {
  background: var(--dark);
  padding: 48px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-cta-text h2 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-family: var(--font-bengali);
}
.footer-cta-text p { color: rgba(255,255,255,.6); font-size: .95rem; }
.footer-cta-strip .btn-white img { height: 48px; }

.footer-main { background: #111827; padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-col .logo-text { color: white; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.5); margin: 16px 0 20px; line-height: 1.7; font-family: var(--font-bengali); }
.footer-social  { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.footer-social a:hover { background: var(--primary); color: white; }
.footer-social svg { width: 16px; height: 16px; }
.footer-heading {
  color: white;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.5);
  transition: color .15s;
}
.footer-links a:hover { color: white; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  color: rgba(255,255,255,.5);
}
.footer-contact svg { width: 14px; height: 14px; color: rgba(255,255,255,.35); flex-shrink: 0; }
.footer-contact a:hover { color: white; }
.footer-app-badge { margin-top: 16px; }
.footer-app-badge img { height: 40px; }

.footer-bottom {
  background: #0B0F1A;
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,.35); transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .pricing-grid        { grid-template-columns: repeat(3, 1fr); }
  .integration-cards   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand        { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .main-nav   { display: none; }
  .hamburger  { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy  { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-showcase { grid-template-columns: 1fr; gap: 32px; }
  .feature-showcase--reverse .feature-showcase-copy  { order: 0; }
  .feature-showcase--reverse .feature-showcase-visual { order: 0; }
  .feature-grid-3      { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid    { grid-template-columns: 1fr; }
  .pricing-grid        { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--popular { transform: none; }
  .steps               { flex-direction: column; align-items: center; }
  .step-connector      { transform: rotate(90deg); margin: 0; }
  .footer-cta-inner    { flex-direction: column; text-align: center; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .stats-grid          { gap: 0; }
  .stat-item           { padding: 12px 20px; }
  .stat-divider        { display: none; }
  .problem-grid        { grid-template-columns: 1fr; }
  .feature-grid-3      { grid-template-columns: 1fr; }
  .integration-cards   { grid-template-columns: 1fr; }
  .pricing-grid        { grid-template-columns: 1fr; }
  .testimonial-grid    { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-actions        { flex-direction: column; width: 100%; }
  .hero-actions .btn   { justify-content: center; }
  .cta-features        { gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════
   NEW INDEX.PHP COMPONENTS
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Section chips / labels ────────────────────────────────────── */
.section-chip {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.section-chip.text-center { display: block; text-align: center; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.section-title.text-center { text-align: center; }
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 640px; margin: 12px auto 0; }
.section-sub.text-center { text-align: center; }

/* ─── Hero redesign ─────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 60%, #EFF6FF 100%);
  padding: 100px 0 60px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}
.blob-1 { width: 520px; height: 520px; background: var(--primary); top: -120px; right: -80px; }
.blob-2 { width: 340px; height: 340px; background: var(--accent); bottom: -60px; left: 10%; }
.blob-3 { width: 220px; height: 220px; background: #A78BFA; top: 40%; left: 55%; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
.text-gradient {
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-time { font-size: clamp(1rem, 2.5vw, 1.6rem); color: var(--text-light); font-weight: 400; }
.hero-sub { font-size: 1.1rem; color: var(--text); margin: 20px 0; max-width: 560px; line-height: 1.7; }

/* Hero explainer */
.hero-explainer {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  max-width: 500px;
}
.explainer-label { font-size: .78rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; margin-bottom: 10px; }
.explainer-steps { display: flex; flex-direction: column; gap: 8px; }
.explainer-step { display: flex; align-items: center; gap: 12px; font-size: .9rem; }
.e-num {
  width: 26px; height: 26px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; flex-shrink: 0;
  font-family: var(--font-bengali);
}

/* Hero CTAs */
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0; }
.btn-xl { padding: 15px 28px; font-size: 1rem; }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-white {
  background: white; color: var(--primary);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: transform .15s, box-shadow .15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.2); }

/* Trust list */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
}
.hero-trust li {
  display: flex; align-items: center; gap: 6px;
  font-size: .84rem; color: var(--text-light);
}

/* ─── Phone mockup ──────────────────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-wrap { position: relative; }
.phone-frame {
  width: 260px;
  background: #0F172A;
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.3), 0 0 0 2px rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}
.phone-notch {
  width: 80px; height: 10px;
  background: #0F172A;
  border-radius: 0 0 8px 8px;
  margin: 0 auto 10px;
}
.phone-screen {
  background: #F1F5F9;
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-topbar {
  display: flex; align-items: center; gap: 6px;
  background: white; padding: 8px 10px; border-radius: 10px;
}
.mock-app-name { font-weight: 700; font-size: .8rem; color: var(--dark); flex: 1; }
.mock-plan-chip {
  background: var(--accent); color: white;
  font-size: .65rem; font-weight: 700;
  padding: 2px 7px; border-radius: 99px;
}
.mock-greeting { font-size: .78rem; color: var(--primary); font-weight: 600; padding: 0 2px; }
.mock-stat-card {
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  color: white; border-radius: 12px; padding: 12px;
}
.msc-label { font-size: .65rem; opacity: .8; }
.msc-amount { font-size: 1.3rem; font-weight: 800; margin: 2px 0; font-family: var(--font-bengali); }
.msc-trend { font-size: .65rem; opacity: .8; }
.mock-mini-row { display: flex; gap: 6px; }
.mock-mini {
  flex: 1; background: white; border-radius: 8px; padding: 8px 6px; text-align: center;
}
.mm-label { font-size: .58rem; color: var(--text-light); }
.mm-val { font-size: .82rem; font-weight: 700; color: var(--dark); font-family: var(--font-bengali); }
.mock-order {
  background: white; border-radius: 8px; padding: 8px 10px;
}
.mo-status { font-size: .62rem; font-weight: 700; margin-bottom: 2px; }
.mo-status.delivered { color: var(--success); }
.mo-status.pickup { color: var(--primary); }
.mo-name { font-size: .8rem; font-weight: 600; color: var(--dark); }
.mo-info { font-size: .65rem; color: var(--text-light); font-family: var(--font-bengali); }
.mock-ai-pill {
  background: #EDE9FE; color: #7C3AED;
  font-size: .68rem; font-weight: 600;
  padding: 6px 10px; border-radius: 8px; text-align: center;
}

/* Phone floating badges */
.phone-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 10px 12px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 8px;
  max-width: 150px;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}
.phone-badge-tl { top: 20px; left: -120px; animation-delay: 0s; }
.phone-badge-br { bottom: 40px; right: -110px; animation-delay: 1s; }
.phone-badge-tr { top: 140px; right: -110px; animation-delay: .5s; }
.pb-icon { font-size: 1.3rem; flex-shrink: 0; }
.pb-text { font-size: .67rem; font-weight: 600; color: var(--dark); line-height: 1.3; }

/* ─── Stats bar ─────────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 32px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 8px 40px;
}
.stat-value {
  font-size: 1.9rem;
  font-weight: 900;
  color: white;
  font-family: var(--font-bengali);
  line-height: 1;
}
.stat-value span { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.6); }
.stat-desc { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.stat-sep {
  width: 1px; height: 48px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ─── What Is section ───────────────────────────────────────────── */
.what-is {
  padding: 80px 0;
  background: var(--bg);
}
.what-is-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.what-copy h2 { margin-bottom: 16px; }
.what-copy p { margin-bottom: 14px; color: var(--text); }
.who-for { margin-top: 24px; }
.who-label { font-size: .8rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.who-list { display: flex; flex-direction: column; gap: 8px; }
.who-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--text);
}
.who-list svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Before/After comparison box */
.vs-box {
  display: flex;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.vs-col { flex: 1; padding: 24px; }
.vs-before { background: #FFF8F8; }
.vs-after  { background: #F0FDF4; }
.vs-head { font-size: .82rem; font-weight: 800; letter-spacing: .04em; padding: 8px 12px; border-radius: 8px; margin-bottom: 16px; text-align: center; }
.vs-head--bad  { background: #FEE2E2; color: #EF4444; }
.vs-head--good { background: #DCFCE7; color: #059669; }
.vs-list { display: flex; flex-direction: column; gap: 9px; }
.vs-list li { font-size: .82rem; color: var(--text); line-height: 1.4; font-family: var(--font-bengali); }
.vs-divider {
  width: 48px; flex-shrink: 0;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
}
.vs-arrow { font-size: 1.2rem; color: var(--primary); font-weight: 700; }

/* ─── Features section ──────────────────────────────────────────── */
.features {
  padding: 90px 0;
  background: var(--bg-light);
}
.features .section-title, .features .section-sub { margin-bottom: 0; }

/* Feature rows (alternating layout) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-of-type { border-bottom: none; }
.feature-row--reverse .feature-row-copy  { order: 2; }
.feature-row--reverse .feature-row-visual { order: 1; }
.feat-number {
  font-size: 3.5rem; font-weight: 900; color: var(--primary-light);
  line-height: 1; margin-bottom: 8px; font-family: var(--font-sans);
}
.feature-row-copy h3 { margin-bottom: 12px; }
.feat-lead { font-size: 1.05rem; font-weight: 500; color: var(--dark); margin-bottom: 12px; }
.feat-bullets { margin: 16px 0; display: flex; flex-direction: column; gap: 8px; }
.feat-bullets li { display: flex; align-items: flex-start; gap: 8px; font-size: .9rem; color: var(--text); }
.feat-bullets svg { flex-shrink: 0; margin-top: 2px; }

.time-save-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: var(--primary);
  font-size: .85rem;
  padding: 10px 16px;
  border-radius: var(--radius);
  margin-top: 8px;
}
.time-save-badge--red {
  background: #FFF5F5;
  border-color: #FECACA;
  color: #DC2626;
}

/* Feature demo panels */
.feature-row-visual { display: flex; justify-content: center; }
.feat-demo {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--border);
}
.fd-header {
  display: flex; align-items: center; gap: 8px;
  background: var(--dark); color: white;
  padding: 12px 16px; font-size: .82rem; font-weight: 600;
}
.fd-dot { width: 10px; height: 10px; border-radius: 50%; }
.fd-dot--blue { background: #3B82F6; }
.fd-dot--purple { background: #8B5CF6; }
.fd-dot--green { background: #10B981; }
.fd-title { color: rgba(255,255,255,.9); font-size: .82rem; }
.fd-step--input {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #F8FAFC; border-bottom: 1px solid var(--border);
  font-size: .85rem;
}
.fd-step-icon { font-size: 1.5rem; }
.fd-step-text { display: flex; flex-direction: column; }
.fd-step-text strong { color: var(--dark); font-size: .85rem; }
.fd-step-text span { color: var(--text-light); font-size: .75rem; }
.fd-arrow { text-align: center; padding: 10px; color: var(--primary); font-size: .8rem; font-weight: 600; background: var(--primary-light); }
.fd-extracted { padding: 12px 16px; display: flex; flex-direction: column; gap: 8px; }
.fd-row { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; }
.fd-k { color: var(--text-light); font-family: var(--font-bengali); }
.fd-v { font-weight: 600; }
.fd-ok { color: var(--success); }
.fd-action { padding: 12px 16px; background: var(--primary); color: white; text-align: center; font-size: .85rem; font-weight: 700; cursor: pointer; }

/* Post demo */
.fd-post-content { padding: 16px; font-size: .85rem; line-height: 1.6; font-family: var(--font-bengali); border-bottom: 1px solid var(--border); }
.fd-post-content p { margin-bottom: 6px; color: var(--dark); }
.fd-post-meta { padding: 12px 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.post-tag {
  font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 99px;
}
.post-tag--blue   { background: #DBEAFE; color: #1D4ED8; }
.post-tag--amber  { background: #FEF3C7; color: #D97706; }
.post-tag--green  { background: #DCFCE7; color: #059669; }

/* Courier panel */
.courier-panel {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px;
  width: 100%; max-width: 360px;
  border: 1px solid var(--border);
}
.cp-title { font-size: .8rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.cp-card { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cp-card:last-of-type { border-bottom: none; }
.cp-logo {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: white; flex-shrink: 0;
}
.cp-steadfast { background: #E11D48; }
.cp-pathao    { background: #7C3AED; }
.cp-redx      { background: #DC2626; }
.cp-info { flex: 1; display: flex; flex-direction: column; }
.cp-info strong { font-size: .88rem; color: var(--dark); }
.cp-info span { font-size: .72rem; color: var(--text-light); }
.cp-badge { font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 99px; }
.cp-badge--on { background: #DCFCE7; color: #059669; }
.cp-usage { margin-top: 14px; display: flex; align-items: center; gap: 10px; font-size: .78rem; color: var(--text-light); }
.cp-bar { flex: 1; height: 6px; background: var(--border); border-radius: 99px; overflow: hidden; }
.cp-fill { height: 100%; background: var(--primary); border-radius: 99px; }

/* Fraud card */
.fraud-card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px;
  width: 100%; max-width: 360px;
  border: 1px solid var(--border);
}
.fraud-alert-box {
  display: flex; align-items: flex-start; gap: 12px;
  background: #FFF5F5; border: 1px solid #FECACA;
  padding: 14px; border-radius: var(--radius); margin-bottom: 16px;
}
.fraud-alert-icon { font-size: 1.5rem; flex-shrink: 0; }
.fraud-alert-title { font-weight: 800; color: #DC2626; font-size: .9rem; }
.fraud-alert-sub { font-size: .78rem; color: #EF4444; margin-top: 2px; font-family: var(--font-bengali); }
.fraud-history { display: flex; gap: 10px; margin-bottom: 14px; }
.fh-item {
  flex: 1; text-align: center; padding: 10px 6px; border-radius: var(--radius); font-size: .75rem;
  display: flex; flex-direction: column; gap: 4px;
}
.fh-item .fh-num { font-size: 1.2rem; font-weight: 800; font-family: var(--font-bengali); }
.fh-delivered { background: #DCFCE7; color: #059669; }
.fh-cancelled { background: #FEE2E2; color: #DC2626; }
.fh-returned  { background: #FEF3C7; color: #D97706; }
.fraud-tip { font-size: .78rem; color: var(--text-light); background: var(--bg-light); border-radius: var(--radius); padding: 10px; font-family: var(--font-bengali); }

/* Finance card */
.finance-card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px;
  width: 100%; max-width: 360px;
  border: 1px solid var(--border);
}
.fc-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: .9rem; }
.fc-income { color: var(--success); font-weight: 700; font-family: var(--font-bengali); }
.fc-expense { color: var(--danger); font-weight: 700; font-family: var(--font-bengali); }
.fc-divider { height: 1px; background: var(--border); margin: 4px 0; }
.fc-profit-row { }
.fc-profit { color: var(--primary); font-size: 1.2rem; font-weight: 800; font-family: var(--font-bengali); }
.fc-entries { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.fc-entry { font-size: .78rem; padding: 6px 10px; border-radius: 6px; font-family: var(--font-bengali); }
.fc-entry--in  { background: #DCFCE7; color: #059669; }
.fc-entry--out { background: #FEE2E2; color: #DC2626; }
.fc-ai { margin-top: 12px; font-size: .78rem; color: var(--primary); background: var(--primary-light); padding: 10px; border-radius: var(--radius); }

/* WooCommerce card */
.woo-card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px;
  width: 100%; max-width: 360px;
  border: 1px solid var(--border);
}
.woo-header {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: var(--dark); font-weight: 600;
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.woo-logo-badge {
  width: 32px; height: 32px; background: #7F54B3;
  color: white; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; flex-shrink: 0;
}
.woo-order { padding: 12px 0; border-bottom: 1px solid var(--border); }
.woo-order:last-child { border-bottom: none; }
.woo-order-num { font-size: .75rem; color: var(--text-light); font-weight: 600; }
.woo-order-status { display: inline-block; font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: 99px; margin: 4px 0; }
.woo-processing { background: #FEF3C7; color: #D97706; }
.woo-completed  { background: #DCFCE7; color: #059669; }
.woo-order-info { font-size: .82rem; color: var(--dark); font-family: var(--font-bengali); }
.woo-order-action { font-size: .78rem; color: var(--primary); font-weight: 600; margin-top: 4px; cursor: pointer; }

/* Other features grid */
.other-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.of-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.of-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.of-icon { font-size: 2rem; margin-bottom: 12px; }
.of-card h3 { margin-bottom: 8px; font-size: 1rem; }
.of-card p { font-size: .87rem; color: var(--text-light); line-height: 1.6; font-family: var(--font-bengali); }

/* ─── How It Works ──────────────────────────────────────────────── */
.how-it-works {
  padding: 90px 0;
  background: var(--bg);
}
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 50px 0 36px;
  flex-wrap: wrap;
}
.step-item {
  flex: 0 1 260px;
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px;
  background: var(--primary); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800;
  font-family: var(--font-bengali);
}
.step-icon { font-size: 2.2rem; margin-bottom: 12px; margin-top: 8px; }
.step-item h3 { margin-bottom: 8px; font-size: 1rem; }
.step-item p { font-size: .85rem; color: var(--text-light); line-height: 1.6; font-family: var(--font-bengali); }
.step-connector { display: flex; align-items: center; padding: 0 12px; opacity: .5; }
.how-highlight {
  text-align: center;
  background: var(--primary-light);
  color: var(--primary);
  padding: 16px 28px;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  display: inline-block;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  font-family: var(--font-bengali);
}

/* ─── Integrations ──────────────────────────────────────────────── */
.integrations {
  padding: 90px 0;
  background: var(--bg-light);
}
.int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.int-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 28px 22px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.int-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.int-logo {
  width: 52px; height: 52px; border-radius: 14px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: white;
}
.int-logo--steadfast { background: #E11D48; }
.int-logo--pathao    { background: #7C3AED; }
.int-logo--redx      { background: #DC2626; }
.int-logo--woo       { background: #7F54B3; }
.int-card h3 { margin-bottom: 8px; font-size: 1rem; }
.int-card p { font-size: .85rem; color: var(--text-light); line-height: 1.5; font-family: var(--font-bengali); margin-bottom: 14px; }
.int-tag {
  display: inline-block;
  background: var(--primary-light); color: var(--primary);
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 99px;
}

/* ─── Pricing ───────────────────────────────────────────────────── */
.pricing {
  padding: 90px 0;
  background: var(--bg);
}
.pricing-note-top {
  text-align: center;
  font-size: .87rem;
  color: var(--text-light);
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  padding: 12px 20px;
  border-radius: var(--radius);
  margin: 24px auto;
  max-width: 560px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
  align-items: start;
}
.plan-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.plan-card:hover { box-shadow: var(--shadow-lg); }
.plan-card--popular {
  border-color: #F59E0B;
  box-shadow: 0 0 0 2px #FDE68A, var(--shadow-lg);
  transform: translateY(-8px);
}
.plan-card--elite {
  border-color: #7C3AED;
  box-shadow: 0 0 0 2px #DDD6FE;
}
.plan-popular-banner {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: #F59E0B; color: white;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  padding: 4px 14px; border-radius: 99px;
  white-space: nowrap;
  display: flex; align-items: center; gap: 4px;
}
.plan-popular-banner--elite {
  background: #7C3AED;
}
.plan-emoji { font-size: 1.6rem; margin-bottom: 8px; }
.plan-name { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.plan-price-wrap {
  display: flex; align-items: baseline; gap: 3px; margin-bottom: 4px;
}
.plan-currency { font-size: .9rem; font-weight: 700; color: var(--primary); }
.plan-amount { font-size: 1.8rem; font-weight: 900; color: var(--primary); font-family: var(--font-bengali); line-height: 1; }
.plan-period { font-size: .8rem; color: var(--text-light); }
.plan-tagline { font-size: .78rem; color: var(--text-light); margin-bottom: 18px; font-family: var(--font-bengali); }
.plan-features-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.plan-features-list li { font-size: .78rem; font-family: var(--font-bengali); display: flex; align-items: flex-start; gap: 6px; }
.feat-yes { color: var(--text); }
.feat-yes::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.feat-no  { color: var(--text-light); }
.feat-no::before  { content: '✗'; color: var(--border); font-weight: 700; flex-shrink: 0; }
.plan-btn {
  display: block; width: 100%; text-align: center;
  padding: 10px; border-radius: var(--radius);
  font-size: .82rem; font-weight: 700;
  transition: background .15s, color .15s, transform .1s;
}
.plan-btn--primary { background: var(--primary); color: white; }
.plan-btn--primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.plan-btn--outline { border: 1.5px solid var(--border); color: var(--primary); }
.plan-btn--outline:hover { border-color: var(--primary); background: var(--primary-light); }
.pricing-footnote {
  text-align: center; font-size: .82rem; color: var(--text-light);
  margin-top: 28px; font-family: var(--font-bengali);
}

/* ─── Testimonials ──────────────────────────────────────────────── */
.testimonials {
  padding: 90px 0;
  background: var(--bg-light);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.t-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 28px;
  box-shadow: var(--shadow);
}
.t-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 12px; }
.t-text { font-size: .9rem; color: var(--text); line-height: 1.7; font-family: var(--font-bengali); margin-bottom: 20px; font-style: normal; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px; background: var(--primary);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; flex-shrink: 0;
  font-family: var(--font-bengali);
}
.t-name { display: block; font-weight: 700; font-size: .88rem; color: var(--dark); font-style: normal; font-family: var(--font-bengali); }
.t-role { display: block; font-size: .75rem; color: var(--text-light); }

/* ─── FAQ ───────────────────────────────────────────────────────── */
.faq-section {
  padding: 90px 0;
  background: var(--bg);
}
.faq-grid {
  max-width: 780px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  background: white;
  transition: background .15s;
  font-family: var(--font-bengali);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question[aria-expanded="true"] { color: var(--primary); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); color: var(--primary); }
.faq-icon { transition: transform .2s; flex-shrink: 0; }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { font-size: .9rem; color: var(--text); line-height: 1.7; font-family: var(--font-bengali); }
.faq-more {
  text-align: center;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.faq-more p { color: var(--text-light); font-size: .9rem; }

/* ─── Final CTA ─────────────────────────────────────────────────── */
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
  padding: 90px 0;
  text-align: center;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .2; }
.cta-blob-1 { width: 400px; height: 400px; background: white; top: -100px; left: -100px; }
.cta-blob-2 { width: 300px; height: 300px; background: var(--accent); bottom: -80px; right: -60px; }
.final-cta-inner { position: relative; z-index: 1; }
.cta-app-icon { margin: 0 auto 24px; border-radius: 18px; box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.final-cta h2 { color: white; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 520px; margin: 0 auto 32px; font-family: var(--font-bengali); }
.cta-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px;
  margin-top: 24px;
}
.cta-trust li { color: rgba(255,255,255,.75); font-size: .85rem; }

/* ─── Responsive additions ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .int-grid { grid-template-columns: repeat(2, 1fr); }
  .other-features-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card--popular { transform: none; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { display: none; }
  .hero-explainer { max-width: 100%; }
  .what-is-inner { grid-template-columns: 1fr; }
  .vs-box { flex-direction: column; }
  .vs-divider { width: 100%; height: 36px; }
  .vs-arrow { transform: rotate(90deg); }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row--reverse .feature-row-copy  { order: 0; }
  .feature-row--reverse .feature-row-visual { order: 1; }
  .other-features-grid { grid-template-columns: repeat(2, 1fr); }
  .int-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); }
}

@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-card--popular { transform: none; }
  .int-grid { grid-template-columns: 1fr; }
  .other-features-grid { grid-template-columns: 1fr; }
  .stat-sep { display: none; }
  .stat-item { padding: 12px 20px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .faq-more { flex-direction: column; }
  .hero-trust { justify-content: center; }
}

/* ─── Keyframe animations ───────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.85); }
}
