/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #fc4c51;
  --red-soft: #fef2f2;
  --red-border: #fecaca;
  --dark: #111827;
  --mid: #6b7280;
  --light: #f9fafb;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 12px; font-weight: 700;
  font-size: 15px; cursor: pointer; border: none; transition: all 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 16px rgba(252,76,81,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(252,76,81,0.45); }
.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red-soft); }
.btn-ghost { background: transparent; color: var(--dark); border: 2px solid var(--border); }
.btn-ghost:hover { border-color: #9ca3af; }
.btn-nav {
  background: var(--red); color: #fff; padding: 9px 20px; font-size: 14px;
  border-radius: 10px; box-shadow: 0 2px 8px rgba(252,76,81,0.3);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(252,76,81,0.4); }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; margin-top: 20px; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229,231,235,0.8);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 64px;
}
.logo { font-size: 20px; font-weight: 900; color: var(--dark); letter-spacing: -0.5px; display: inline-flex; align-items: center; gap: 8px; }
.logo span { color: var(--red); }
.logo-img { width: 32px; height: 32px; border-radius: 8px; display: block; flex-shrink: 0; }
.nav-links { display: flex; gap: 28px; margin-right: auto; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--mid); transition: color 0.15s; }
.nav-links a:hover { color: var(--dark); }
.burger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--dark); margin-left: auto; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 16px; border-top: 1px solid var(--border); background: #fff; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 600; color: var(--dark); padding: 8px 0; }

/* ── HERO ── */
.hero {
  background: #fff;
  position: relative; overflow: hidden;
  padding: 80px 0 88px;
}
.hero-glow {
  position: absolute; top: -160px; right: -160px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(252,76,81,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-content { position: relative; z-index: 1; }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-soft); color: var(--red);
  font-size: 13px; font-weight: 700; border-radius: 20px;
  padding: 6px 14px; margin-bottom: 28px; border: 1px solid var(--red-border);
}
.badge-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Headline */
.hero h1 {
  font-size: clamp(38px, 5vw, 62px); font-weight: 900; line-height: 1.07;
  color: var(--dark); margin-bottom: 20px; letter-spacing: -2px;
}
.highlight { color: var(--red); }

.hero-sub {
  font-size: 17px; color: var(--mid);
  margin-bottom: 36px; line-height: 1.65; max-width: 460px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* Hero stats */
.hero-stats {
  display: inline-flex; align-items: stretch;
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}
.hero-stat {
  padding: 14px 24px; display: flex; flex-direction: column;
  justify-content: center; gap: 3px;
}
.hero-stat + .hero-stat { border-left: 1px solid var(--border); }
.hero-stat-val { font-size: 18px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; white-space: nowrap; }
.hero-stat-lbl { font-size: 12px; color: var(--mid); white-space: nowrap; }
.hero-stat-dot { display: none; }

/* ── PHONE MOCKUP ── */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-wrap { position: relative; padding: 40px; }

.phone {
  width: 310px;
  height: 640px; /* iPhone 14 Pro: 147.5 × 71.5 mm → ~2.06:1 */
  background: #fff;
  border-radius: 54px;
  border: 12px solid #16162a;
  box-shadow:
    0 0 0 1px #2a2a50,
    0 48px 96px rgba(0,0,0,0.35),
    0 8px 24px rgba(0,0,0,0.15);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
/* Dynamic Island */
.phone-notch {
  width: 108px; height: 34px;
  background: #16162a;
  border-radius: 20px;
  margin: 12px auto 14px;
  flex-shrink: 0;
}
.phone-screen { padding: 0 16px 8px; flex: 1; overflow: hidden; }
.phone-home-bar {
  height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
}
.phone-home-bar::after {
  content: ''; width: 96px; height: 5px;
  background: #16162a; border-radius: 3px;
}

/* App UI */
.app-statusbar { text-align: right; font-size: 10px; font-weight: 700; color: #111; padding: 0 2px 6px; }

.app-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.app-greeting { font-size: 14px; font-weight: 800; color: #0d0d14; }
.app-header-sub { font-size: 10px; color: #9ca3af; margin-top: 2px; }
.app-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: #fde8e8; color: var(--red);
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Balance card */
.app-balance-card {
  background: linear-gradient(135deg, #e85558 0%, var(--red) 100%);
  border-radius: 16px; padding: 14px 14px 12px;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(252,76,81,0.4);
}
.app-balance-label { font-size: 10px; color: rgba(255,255,255,0.72); font-weight: 600; }
.app-balance-amount { font-size: 26px; font-weight: 900; color: #fff; line-height: 1.1; margin: 4px 0 10px; letter-spacing: -1px; }
.app-balance-divider { height: 1px; background: rgba(255,255,255,0.2); margin-bottom: 10px; }
.app-balance-stats { display: flex; justify-content: space-between; }
.app-bal-stat { text-align: center; flex: 1; }
.app-bal-icon { font-size: 13px; margin-bottom: 3px; }
.app-bal-icon-gold { filter: hue-rotate(30deg) saturate(2); }
.app-bal-val { font-size: 10px; font-weight: 800; color: #fff; }
.app-bal-gold { color: #fde68a; }
.app-bal-lbl { font-size: 7.5px; color: rgba(255,255,255,0.6); margin-top: 1px; }

/* Available credit row */
.app-credit-row {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid #f3f4f6;
  border-radius: 12px; padding: 9px 12px; margin-bottom: 10px;
}
.app-credit-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: #eff6ff; display: flex; align-items: center;
  justify-content: center; font-size: 14px; flex-shrink: 0;
}
.app-credit-label { font-size: 9px; color: #9ca3af; font-weight: 600; }
.app-credit-val { font-size: 13px; font-weight: 800; color: #111; }

/* Activity */
.app-activity-hd {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.app-act-title { font-size: 11px; font-weight: 700; color: #111; }
.app-view-all { font-size: 9px; font-weight: 600; color: #3b82f6; }

.app-txn {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0; border-bottom: 1px solid #f3f4f6;
}
.app-txn:last-of-type { border-bottom: none; }
.app-txn-dot {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; flex-shrink: 0;
}
.app-dot-red { background: #fef2f2; color: var(--red); }
.app-dot-green { background: #f0fdf4; color: #16a34a; }
.app-txn-info { flex: 1; min-width: 0; }
.app-txn-name { font-size: 10px; font-weight: 700; color: #111; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-txn-meta { font-size: 8.5px; color: #9ca3af; margin-top: 1px; }
.app-txn-cb { font-size: 10px; font-weight: 800; color: #16a34a; flex-shrink: 0; }
.app-cb-red { color: var(--red); }

/* Tab bar */
.app-tabbar {
  display: flex; background: #fff;
  border-top: 1px solid #f3f4f6; padding: 6px 0 4px;
  flex-shrink: 0;
}
.app-tab {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 7.5px; font-weight: 600; color: #9ca3af;
}
.app-tab-active { color: var(--red); }
.app-tab-icon { font-size: 14px; line-height: 1; }

/* Floating cards */
.phone-float {
  position: absolute;
  background: #fff; border-radius: 16px;
  padding: 13px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap; z-index: 10;
  animation: floatBob 3.5s ease-in-out infinite;
}
.phone-float-top { top: 32px; right: -24px; animation-delay: 0s; }
.phone-float-bottom { bottom: 80px; left: -24px; animation-delay: 1.8s; }
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.phone-float-check {
  width: 34px; height: 34px; border-radius: 50%;
  background: #dcfce7; color: #16a34a;
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.phone-float-emoji { font-size: 24px; }
.phone-float-title { font-size: 13px; font-weight: 700; color: var(--dark); }
.phone-float-sub { font-size: 12px; color: var(--mid); }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.bg-white { background: var(--white); }
.bg-light { background: var(--light); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-sub { margin-bottom: 0; }
.section-head .biz-types { margin-top: 16px; margin-bottom: 0; }

.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--red); margin-bottom: 12px;
}
.section-label.light { color: #fca5a5; }

h2 {
  font-size: clamp(30px, 4vw, 48px); font-weight: 900;
  line-height: 1.08; margin-bottom: 16px; letter-spacing: -1.5px;
}
h2.light { color: #fff; }

.section-sub {
  font-size: 17px; color: var(--mid);
  max-width: 560px; margin: 0 auto 56px;
  line-height: 1.65; text-align: center;
}
.section-sub.light { color: rgba(255,255,255,0.6); }

/* ── HOW IT WORKS STEPS ── */
.steps {
  display: flex; align-items: stretch;
  gap: 0; flex-wrap: wrap; justify-content: center;
}
.step-card {
  flex: 1; min-width: 180px; max-width: 220px;
  background: #fff; border-radius: 20px; padding: 28px 20px;
  text-align: center; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--red-soft); border: 1px solid var(--red-border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 14px;
}
.step-num {
  display: inline-flex; width: 22px; height: 22px; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 11px; font-weight: 800;
  align-items: center; justify-content: center; margin-bottom: 10px;
}
.step-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--mid); line-height: 1.55; }
.step-arrow {
  font-size: 20px; color: #d1d5db;
  display: flex; align-items: center; padding: 0 6px;
  flex-shrink: 0; align-self: center;
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: #fff; border-radius: 20px; padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--red-soft); border: 1px solid var(--red-border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ── STATS STRIP ── */
.stats-strip { background: #0d0d14; padding: 72px 0; }
.stats-strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.stats-strip-stat {
  flex: 1; min-width: 260px; max-width: 420px;
  text-align: center; padding: 0 48px;
}
.stats-strip-value {
  font-size: 80px; font-weight: 900; color: var(--red);
  line-height: 1; letter-spacing: -3px;
}
.stats-strip-label {
  font-size: 15px; color: rgba(255,255,255,0.45);
  margin-top: 12px; line-height: 1.55;
  max-width: 260px; margin-left: auto; margin-right: auto;
}
.stats-strip-divider {
  width: 1px; height: 100px;
  background: rgba(255,255,255,0.1); flex-shrink: 0;
}

/* ── BUSINESS SECTION ── */
.biz-section {
  background: #09090f;
  position: relative; overflow: hidden; padding: 96px 0;
}
.biz-glow {
  position: absolute; top: -250px; right: -250px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(252,76,81,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.biz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.biz-steps { display: flex; flex-direction: column; }
.biz-step { display: flex; gap: 18px; margin-bottom: 28px; }
.biz-step:last-child { margin-bottom: 0; }
.biz-step-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(252,76,81,0.12); color: var(--red);
  border: 1px solid rgba(252,76,81,0.25);
  font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.biz-step h3 { font-size: 15px; font-weight: 700; color: #f9fafb; margin-bottom: 5px; }
.biz-step p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.6; }


/* Business phone column */
.biz-phone-col { display: flex; justify-content: center; align-items: flex-start; }

/* Business dashboard UI */
.biz-dash-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 12px;
}
.biz-dash-name { font-size: 13px; font-weight: 800; color: #111; }
.biz-dash-sub { font-size: 9px; color: #9ca3af; margin-top: 2px; }
.biz-dash-period {
  font-size: 9px; font-weight: 600; color: #374151;
  background: #f9fafb; border: 1px solid #e5e7eb;
  border-radius: 8px; padding: 4px 8px; white-space: nowrap;
}

/* 6-card stat grid */
.biz-stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-bottom: 12px;
}
.biz-stat-card {
  background: #f9fafb; border-radius: 10px; padding: 8px 6px 7px;
  border: 1px solid #f3f4f6;
}
.biz-stat-icon {
  width: 24px; height: 24px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; margin-bottom: 5px;
}
.biz-stat-val { font-size: 13px; font-weight: 800; color: #111; line-height: 1; }
.biz-stat-lbl { font-size: 8px; color: #9ca3af; margin-top: 2px; }

/* Chart */
.biz-chart-wrap {
  background: #f9fafb; border-radius: 10px;
  padding: 8px 10px; margin-bottom: 8px; border: 1px solid #f3f4f6;
}
.biz-chart-title {
  font-size: 10px; font-weight: 700; color: #111;
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.biz-chart-badge {
  font-size: 8px; font-weight: 700; color: #16a34a;
  background: #f0fdf4; border-radius: 10px; padding: 2px 6px;
}
.biz-chart {
  display: flex; align-items: flex-end; gap: 3px;
  height: 52px;
}
.biz-bar {
  flex: 1; background: #6ee7b7; border-radius: 3px 3px 0 0;
  min-height: 3px; transition: opacity 0.15s;
}
.biz-bar:last-child, .biz-bar:nth-last-child(2) { background: #10b981; }

/* New vs returning */
.biz-vs-row { display: flex; gap: 6px; margin-bottom: 6px; }
.biz-vs-card {
  flex: 1; border-radius: 10px; padding: 8px;
  text-align: center; border: 1px solid transparent;
}
.biz-vs-green { background: #f0fdf4; border-color: #bbf7d0; }
.biz-vs-red { background: #fef2f2; border-color: #fecaca; }
.biz-vs-dot { width: 7px; height: 7px; border-radius: 50%; margin: 0 auto 4px; }
.biz-vs-lbl { font-size: 8px; color: #6b7280; }
.biz-vs-val { font-size: 16px; font-weight: 900; line-height: 1.2; }
.biz-vs-pct { font-size: 8px; color: #9ca3af; }
.biz-progress { height: 5px; background: #f3f4f6; border-radius: 3px; overflow: hidden; }
.biz-progress-fill { height: 100%; width: 100%; background: var(--red); border-radius: 3px; }

/* Biz type pills */
.biz-types {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.biz-types span {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 20px; padding: 5px 14px;
  transition: background 0.15s;
}
.biz-types span:hover { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.biz-cta { margin-top: 28px; }

/* ── PRICING ── */
.trial-banner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--red-soft); border: 1px solid var(--red-border);
  border-radius: 14px; padding: 14px 24px;
  margin-bottom: 36px; font-size: 15px; color: var(--dark);
}
.trial-icon { font-size: 20px; }
.pricing-cards {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 32px; padding-top: 20px;
}
.pricing-card {
  flex: 1; min-width: 280px; max-width: 340px;
  border-radius: 24px; padding: 36px;
  border: 1.5px solid var(--border); background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  display: flex; flex-direction: column;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-card.pro {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 16px 48px rgba(252,76,81,0.1);
}
.pricing-card.pro:hover {
  box-shadow: 0 0 0 1px var(--red), 0 24px 64px rgba(252,76,81,0.18);
}
.pricing-card.pricing-card-purple {
  border-color: #7c3aed;
  box-shadow: 0 0 0 1px #7c3aed, 0 16px 48px rgba(124,58,237,0.08);
}
.pricing-card.pricing-card-purple:hover {
  box-shadow: 0 0 0 1px #7c3aed, 0 24px 64px rgba(124,58,237,0.16);
}
.pricing-plan-name {
  font-size: 22px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.3px;
}
.pricing-tagline {
  font-size: 13px; color: var(--mid); margin: 0 0 16px; line-height: 1.5;
}
.pricing-saving-row {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 20px; margin-top: auto;
}
.saving-badge {
  font-size: 11px; font-weight: 600; color: #1a5c36;
  background: #eaf3de; border-radius: 20px; padding: 3px 10px;
}
.pricing-tag {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--mid); margin-bottom: 12px;
}
.pricing-tag.popular {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; background: var(--red); color: #fff;
  padding: 5px 14px; border-radius: 20px; font-size: 11px;
  font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
}
.pricing-inherits {
  font-size: 12px; font-weight: 600; color: var(--mid);
  margin: 16px 0 10px; padding: 7px 12px;
  background: var(--light); border-radius: 8px;
}
.pricing-price {
  font-size: 52px; font-weight: 900; color: var(--dark);
  line-height: 1; letter-spacing: -1.5px;
}
.pricing-mo { font-size: 20px; font-weight: 600; color: var(--mid); letter-spacing: 0; }
.pricing-period { font-size: 13px; color: var(--mid); margin: 8px 0 16px; }
.pricing-desc { font-size: 14px; color: var(--mid); margin-bottom: 20px; line-height: 1.6; }
.pricing-features { list-style: none; margin-bottom: 4px; }
.pricing-features li {
  font-size: 14px; color: var(--dark); padding: 9px 0;
  border-bottom: 1px solid var(--border); font-weight: 500;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: "✓ "; color: var(--red); font-weight: 900; }
.pricing-features li.feat-off { color: #9ca3af; font-weight: 400; }
.pricing-features li.feat-off::before { content: "✗ "; color: #d1d5db; font-weight: 700; }
.pricing-note {
  text-align: center; font-size: 13px; color: var(--mid);
  max-width: 580px; margin: 0 auto; line-height: 1.65;
  background: var(--light); padding: 16px 24px; border-radius: 14px;
}
.trust-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 24px;
}
.trust-badge {
  font-size: 13px; font-weight: 600; color: var(--mid);
  background: var(--light); border: 1px solid var(--border);
  border-radius: 20px; padding: 7px 16px;
}
.stripe-note { text-align: center; font-size: 12px; color: #9ca3af; margin-top: 14px; }

/* ── CTA SECTION ── */
.cta-section {
  background: #09090f;
  padding: 96px 0; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(252,76,81,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.store-btns-row {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 16px; margin-top: 36px;
}
.store-btn { display: inline-block; transition: transform 0.15s, opacity 0.15s; }
.store-btn:hover { transform: translateY(-2px); opacity: 0.88; }
.cta-contact {
  font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 28px;
}
.cta-contact a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.cta-contact a:hover { color: #fff; }

/* ── FOOTER ── */
.footer {
  background: #06060a; padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex; gap: 60px; flex-wrap: wrap;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { flex: 1; min-width: 220px; }
.footer-brand .logo { font-size: 22px; margin-bottom: 12px; color: #fff; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.3); line-height: 1.6; max-width: 240px; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 120px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.3); margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.2); text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-visual { order: 2; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { align-self: center; flex-wrap: wrap; border-radius: 14px; }
  .hero-stat { flex: 1; min-width: 120px; text-align: center; }
  .hero-stat + .hero-stat { border-left: none; border-top: 1px solid var(--border); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .biz-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .burger { display: block; }
  .section { padding: 72px 0; }
  .steps { flex-direction: column; align-items: center; gap: 16px; }
  .step-card { max-width: 100%; width: 100%; }
  .step-arrow { transform: rotate(90deg); }
  .stats-strip-divider { display: none; }
  .stats-strip-stat { padding: 24px 20px; }
  .phone-float { display: none; }
  .footer-inner { gap: 40px; }
  .footer-links { gap: 32px; }
}

@media (max-width: 540px) {
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 300px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 20px; }
  .stats-strip-value { font-size: 64px; }
}
