/* ============================================================
   FLWR — Features Pages CSS
   ============================================================ */

/* ── Feature Hero ──────────────────────────────────────────── */

.feat-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.feat-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-50) 0%, #fff 50%, var(--purple-50) 100%);
}

.feat-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.feat-hero-content {
  flex: 1;
  max-width: 520px;
}

.back-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--purple-600); }

.feat-pill {
  display: inline-block;
  background: var(--purple-100);
  color: var(--purple-700);
  border: 1px solid var(--purple-200);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.feat-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 24px;
}
.feat-hero-content h1 em {
  font-style: italic;
  color: var(--purple-600);
}

.feat-hero-content p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 36px;
}

.feat-hero-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.feat-hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 500;
}
.check-pill svg { color: var(--purple-500); flex-shrink: 0; }

.feat-hero-visual {
  flex: 0 0 500px;
}

/* ── Dashboard Animation ──────────────────────────────────── */

.dashboard {
  display: flex;
  background: white;
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 32px 80px rgba(109,40,217,0.16);
  overflow: hidden;
  animation: mockupFloat 6s ease-in-out infinite;
  max-width: 500px;
}

.dash-sidebar {
  width: 160px;
  background: var(--purple-900);
  padding: 20px 0;
  flex-shrink: 0;
}
.dash-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--purple-300);
  padding: 0 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 12px;
}
.dash-nav { display: flex; flex-direction: column; gap: 2px; padding: 0 8px; }
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.2s;
}
.dash-nav-item svg { flex-shrink: 0; }
.dash-nav-item.active {
  background: rgba(139,92,246,0.25);
  color: var(--purple-300);
}

.dash-main { flex: 1; padding: 16px; min-width: 0; }
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.dash-title { font-size: 0.95rem; font-weight: 600; color: var(--gray-900); }
.dash-date { font-size: 0.72rem; color: var(--gray-400); }

.dash-stats { display: flex; gap: 8px; margin-bottom: 14px; }
.dash-stat-card {
  flex: 1;
  background: var(--purple-50);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dsc-label { font-size: 0.65rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; }
.dsc-value { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gray-900); }
.dsc-delta { font-size: 0.62rem; color: var(--gray-400); }
.dsc-delta.up { color: #16a34a; }

.dash-orders-title { font-size: 0.75rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.dash-orders { display: flex; flex-direction: column; gap: 6px; }
.dash-order {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--gray-100);
  border-radius: 8px;
  transition: background 0.3s;
}
.dash-order.new { background: var(--purple-50); }
.order-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.order-dot.green { background: #22c55e; }
.order-dot.yellow { background: #f59e0b; }
.order-dot.purple { background: var(--purple-400); }
.order-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.order-info strong { font-size: 0.75rem; color: var(--gray-900); font-weight: 600; }
.order-info small { font-size: 0.65rem; color: var(--gray-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-status { font-size: 0.62rem; font-weight: 600; padding: 2px 7px; border-radius: 10px; white-space: nowrap; }
.green-tag { background: #dcfce7; color: #16a34a; }
.yellow-tag { background: #fef9c3; color: #92400e; }
.purple-tag { background: var(--purple-100); color: var(--purple-700); }

/* ── Bundle Note ───────────────────────────────────────────── */

.bundle-note {
  background: var(--purple-50);
  border-top: 1px solid var(--purple-100);
  border-bottom: 1px solid var(--purple-100);
  padding: 20px 32px;
}
.bundle-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.bundle-inner strong { color: var(--purple-700); }
.bundle-icon { color: var(--purple-500); flex-shrink: 0; padding-top: 2px; }

/* ── Feature Sections ─────────────────────────────────────── */

.feat-section { padding: 100px 0; background: var(--off-white); }
.feat-section-alt { background: white; }
.feat-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── Feature Blocks ───────────────────────────────────────── */

.feature-blocks { display: flex; flex-direction: column; gap: 100px; margin-top: 80px; }

.feat-block {
  display: flex;
  align-items: center;
  gap: 80px;
}
.feat-block-reverse { flex-direction: row-reverse; }

.feat-block-content { flex: 1; max-width: 480px; }
.feat-block-visual { flex: 1; }

.feat-block-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-500);
  margin-bottom: 14px;
}

.feat-block-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 18px;
}

.feat-block-content p {
  font-size: 0.98rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700, #3f3f46);
  line-height: 1.4;
}
.feat-list li svg { color: var(--purple-500); flex-shrink: 0; margin-top: 1px; }

/* ── Mini Dashboard Mockups ───────────────────────────────── */

.mini-dash {
  background: white;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 16px 48px rgba(109,40,217,0.1);
  overflow: hidden;
}

.md-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700, #3f3f46);
}

.md-btn {
  display: block;
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  padding: 10px;
  background: var(--purple-600);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.md-btn:hover { background: var(--purple-700); }

/* Staff Dash */
.staff-list { display: flex; flex-direction: column; gap: 0; padding: 8px 0; }
.staff-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--gray-100);
}
.staff-row:last-child { border-bottom: none; margin-bottom: 8px; }
.staff-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.staff-info { flex: 1; display: flex; flex-direction: column; }
.staff-info strong { font-size: 0.82rem; color: var(--gray-900); font-weight: 600; }
.staff-info small { font-size: 0.7rem; color: var(--gray-400); margin-top: 1px; }
.staff-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}
.staff-badge.owner { background: var(--purple-100); color: var(--purple-700); }
.staff-badge.staff { background: var(--gray-100); color: var(--gray-600); }

/* Appointment Dash */
.appt-list { display: flex; flex-direction: column; padding: 8px 0; }
.appt-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--gray-100);
}
.appt-row:last-child { border-bottom: none; }
.appt-row.active-row { background: var(--purple-50); }
.appt-time { font-size: 0.72rem; color: var(--gray-400); white-space: nowrap; width: 58px; flex-shrink: 0; }
.appt-info { flex: 1; display: flex; flex-direction: column; }
.appt-info strong { font-size: 0.8rem; color: var(--gray-900); font-weight: 600; }
.appt-info small { font-size: 0.68rem; color: var(--gray-400); }
.appt-actions { display: flex; gap: 4px; }
.appt-btn {
  width: 24px; height: 24px;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.appt-btn.move { color: var(--purple-500); }
.appt-btn.cancel { color: #ef4444; }
.appt-btn:hover { background: var(--gray-100); }

/* Kitchen Dash */
.kitchen-sources { display: flex; gap: 4px; }
.source-tag {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.source-tag.web { background: var(--purple-100); color: var(--purple-700); }
.source-tag.dd { background: #fef3c7; color: #92400e; }
.source-tag.ue { background: #fce7f3; color: #9d174d; }

.kitchen-orders { display: flex; flex-direction: column; gap: 8px; padding: 10px; }
.kitchen-ticket {
  border-radius: 10px;
  padding: 12px;
  border-left: 4px solid;
}
.green-ticket { background: #f0fdf4; border-color: #22c55e; }
.yellow-ticket { background: #fffbeb; border-color: #f59e0b; }
.kt-top { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.kt-num { font-size: 0.8rem; font-weight: 700; color: var(--gray-900); }
.kt-src { font-size: 0.65rem; font-weight: 700; padding: 1px 6px; border-radius: 4px; }
.kt-src.web { background: var(--purple-100); color: var(--purple-700); }
.kt-src.dd { background: #fef3c7; color: #92400e; }
.kt-time { font-size: 0.65rem; color: var(--gray-400); margin-left: auto; }
.kt-items { display: flex; flex-direction: column; gap: 3px; font-size: 0.75rem; color: var(--gray-700, #3f3f46); margin-bottom: 10px; }
.kt-note { font-size: 0.68rem; color: #f59e0b; font-style: italic; }
.kt-footer { display: flex; align-items: center; justify-content: space-between; }
.kt-footer span { font-size: 0.68rem; color: var(--gray-400); }
.kt-btn { font-size: 0.68rem; font-weight: 600; background: var(--purple-600); color: white; border: none; border-radius: 6px; padding: 4px 10px; cursor: pointer; font-family: var(--font-body); }

/* Notifications */
.notif-list { display: flex; flex-direction: column; padding: 8px 0; }
.notif-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--gray-100);
}
.notif-row:last-child { border-bottom: none; }
.notif-row.notif-new { background: var(--purple-50); }
.notif-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.notif-dot.green { background: #22c55e; }
.notif-dot.purple { background: var(--purple-400); }
.notif-dot.yellow { background: #f59e0b; }
.notif-dot.gray { background: var(--gray-300, #d4d4d8); }
.notif-body { display: flex; flex-direction: column; gap: 2px; }
.notif-body strong { font-size: 0.8rem; color: var(--gray-900); font-weight: 600; }
.notif-body small { font-size: 0.68rem; color: var(--gray-400); }

/* Analytics */
.chart-area { padding: 12px 16px 8px; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}
.chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.chart-bar {
  width: 100%;
  height: var(--h);
  background: linear-gradient(to top, var(--purple-600), var(--purple-300));
  border-radius: 4px 4px 0 0;
  animation: barGrow 1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
@keyframes barGrow {
  from { height: 0; }
}
.chart-bar-wrap:nth-child(1) .chart-bar { animation-delay: 0.1s; }
.chart-bar-wrap:nth-child(2) .chart-bar { animation-delay: 0.15s; }
.chart-bar-wrap:nth-child(3) .chart-bar { animation-delay: 0.2s; }
.chart-bar-wrap:nth-child(4) .chart-bar { animation-delay: 0.25s; }
.chart-bar-wrap:nth-child(5) .chart-bar { animation-delay: 0.3s; }
.chart-bar-wrap:nth-child(6) .chart-bar { animation-delay: 0.35s; }
.chart-bar-wrap:nth-child(7) .chart-bar { animation-delay: 0.4s; }
.chart-bar-wrap span { font-size: 0.6rem; color: var(--gray-400); }
.analytics-totals {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px 12px;
  border-top: 1px solid var(--gray-100);
}
.at-item { display: flex; flex-direction: column; gap: 1px; }
.at-item span { font-size: 0.65rem; color: var(--gray-400); }
.at-item strong { font-size: 0.82rem; color: var(--gray-900); }

/* ── Fee Section ───────────────────────────────────────────── */

.fee-section {
  background: var(--purple-900);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.fee-bg { position: absolute; inset: 0; }

.fee-explainer { max-width: 800px; }

.fee-flow {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.fee-step {
  flex: 1;
  min-width: 160px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fee-icon { color: var(--purple-300); }
.fee-label { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
.fee-note { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.highlight-note { color: #4ade80 !important; font-weight: 600; }

.fee-arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.fee-fine {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
}
.fee-fine em { color: var(--purple-300); font-style: italic; }

/* ── Hardware Grid ─────────────────────────────────────────── */

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.hw-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--transition);
  text-align: center;
}
.hw-card:hover {
  border-color: var(--purple-300);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(109,40,217,0.1);
}
.hw-icon {
  color: var(--purple-500);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.hw-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.hw-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 20px;
}
.hw-tag {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── POS Terminal Mockup ───────────────────────────────────── */

.pos-mockup {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: mockupFloat 6s ease-in-out infinite;
}

.pos-tablet {
  background: #1a1a2e;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2), 0 24px 64px rgba(0,0,0,0.2);
}
.pos-tablet-screen {
  background: white;
  border-radius: 10px;
  overflow: hidden;
}
.pos-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--purple-700);
  color: white;
}
.pos-biz-name { font-weight: 600; font-size: 0.88rem; }
.pos-time { font-size: 0.78rem; opacity: 0.7; }
.pos-order-area { padding: 12px 16px; }
.pos-order-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.pos-order-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.poi-name { flex: 1; color: var(--gray-900); }
.poi-qty { color: var(--gray-400); font-size: 0.75rem; }
.poi-price { color: var(--gray-900); font-weight: 500; }
.pos-divider { height: 1px; background: var(--gray-200); margin-bottom: 10px; }
.pos-totals { display: flex; flex-direction: column; gap: 4px; }
.pos-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gray-600);
}
.pos-grand {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
  padding-top: 6px;
  border-top: 2px solid var(--gray-900);
  margin-top: 4px;
}
.pos-charge-btn {
  padding: 10px 16px 14px;
}
.pos-charge-inner {
  background: var(--purple-600);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s;
  animation: chargePulse 3s ease-in-out infinite;
}
@keyframes chargePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109,40,217,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(109,40,217,0); }
}

.pos-hardware-row {
  display: flex;
  gap: 16px;
}

.pos-reader {
  flex: 1;
  background: #1a1a2e;
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.pos-reader-screen {
  background: #0d0d1a;
  border-radius: 9px;
  padding: 16px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pos-reader-amount { font-size: 1.3rem; font-weight: 700; color: white; font-family: var(--font-display); }
.pos-reader-tap { font-size: 0.68rem; color: rgba(255,255,255,0.5); }
.pos-reader-icons { display: flex; align-items: center; justify-content: center; gap: 8px; }
.pos-nfc {
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--purple-600);
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
}

.pos-printer {
  flex: 0 0 120px;
  background: #f4f4f5;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.pos-printer-slot {
  height: 3px;
  background: linear-gradient(90deg, #e4e4e7, #d4d4d8, #e4e4e7);
  margin: 10px 10px 0;
  border-radius: 2px;
}
.pos-printer-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.pos-printer-label { font-size: 0.6rem; color: var(--gray-400); text-align: center; text-transform: uppercase; letter-spacing: 0.06em; }
.pos-printer-light {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.green-light {
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse 2s infinite;
}

/* ── Offline Dash ──────────────────────────────────────────── */

.offline-header { justify-content: space-between; }
.offline-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  background: #fef3c7;
  color: #92400e;
  padding: 3px 8px;
  border-radius: 20px;
}
.offline-body {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.offline-icon { color: var(--gray-300, #d4d4d8); }
.offline-msg { font-size: 0.82rem; color: var(--gray-600); line-height: 1.5; }
.offline-queue {
  width: 100%;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 10px 12px;
}
.oq-row { display: flex; justify-content: space-between; font-size: 0.78rem; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
.oq-amt { color: var(--purple-600); }
.oq-note { font-size: 0.68rem; color: var(--gray-400); }
.offline-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
  background: #dcfce7;
  padding: 6px 12px;
  border-radius: 6px;
  width: 100%;
}

/* ── Refund Dash ───────────────────────────────────────────── */

.refund-body { padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.refund-txn { background: var(--gray-100); border-radius: 8px; padding: 12px; }
.rtxn-label { font-size: 0.75rem; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
.rtxn-items { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.rtxn-item { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--gray-600); }
.rtxn-total { font-size: 0.78rem; font-weight: 600; color: var(--gray-900); border-top: 1px solid var(--gray-200); padding-top: 6px; }
.refund-options { display: flex; flex-direction: column; gap: 6px; }
.refund-btn {
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  background: white;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  color: var(--gray-700, #3f3f46);
  text-align: left;
}
.refund-btn.active-btn {
  background: var(--purple-600);
  border-color: var(--purple-600);
  color: white;
}
.refund-note { font-size: 0.68rem; color: var(--gray-400); line-height: 1.5; }

/* ── POS Report Dash ───────────────────────────────────────── */

.pos-report-stats { padding: 12px 16px; display: flex; flex-direction: column; gap: 0; margin-bottom: 8px; }
.prs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.82rem;
}
.prs-row:last-child { border-bottom: none; }
.prs-row span { color: var(--gray-600); }
.prs-row strong { color: var(--gray-900); font-weight: 600; }
.prs-total { font-weight: 700; }
.prs-total span, .prs-total strong { color: var(--gray-900); font-size: 0.88rem; }

/* ── Pricing Dash ──────────────────────────────────────────── */

.pricing-breakdown { padding: 12px 16px; display: flex; flex-direction: column; gap: 0; }
.pb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.82rem;
}
.pb-row:last-child { border-bottom: none; }
.pb-row span { color: var(--gray-600); }
.pb-row strong { color: var(--gray-900); font-weight: 600; }
.free-green { color: #16a34a !important; font-weight: 700 !important; }
.pb-divider { height: 1px; background: var(--gray-200); margin: 4px 0; }
.pb-highlight { padding-top: 12px; }
.pb-highlight span { font-weight: 600; color: var(--gray-900); }
.pb-highlight strong { font-size: 0.92rem; color: var(--purple-600); }
.pb-example {
  font-size: 0.75rem;
  color: var(--gray-400);
  line-height: 1.5;
  padding: 12px 16px;
  border-top: 1px solid var(--gray-100);
}

/* ── Nav active ────────────────────────────────────────────── */

.nav-active {
  color: var(--purple-600) !important;
  font-weight: 500 !important;
}

/* ── CTA Section ───────────────────────────────────────────── */

.feat-cta {
  background: var(--purple-700);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 32px;
}
.feat-cta .cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.feat-cta .cta-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 300;
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 1000px) {
  .feat-hero-inner { flex-direction: column; padding: 60px 24px; }
  .feat-hero-visual { width: 100%; flex: none; }
  .dashboard { max-width: 100%; }
  .feat-block, .feat-block-reverse { flex-direction: column; gap: 40px; }
  .feat-block-content { max-width: 100%; }
  .dash-sidebar { width: 130px; }
}

@media (max-width: 640px) {
  .dash-sidebar { display: none; }
  .fee-flow { flex-direction: column; }
  .fee-arrow { transform: rotate(90deg); }
  .pos-hardware-row { flex-direction: column; }
  .feat-hero-pills { flex-direction: column; }
}
