/* ============================================================
   FINIVERSE — styles.css  (light-first design system)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --indigo:       #5B4EE8;
  --indigo-dark:  #4338CA;
  --indigo-light: #EEF0FF;
  --coral:        #FF6B5B;
  --coral-light:  #FFF1EF;
  --mint:         #10B981;
  --mint-light:   #ECFDF5;
  --cyan:         #00D4C8;
  --gold:         #F59E0B;

  --text-dark:    #0F0F1A;
  --text-mid:     #4B4B70;
  --text-light:   #8B8BA7;
  --text-inv:     #FFFFFF;

  --bg:           #FFFFFF;
  --bg-soft:      #F8F8FF;
  --bg-dark:      #0F0F1A;
  --bg-dark2:     #1A1A2E;

  --card-bg:      #FFFFFF;
  --card-border:  #E4E4F0;
  --card-shadow:  0 2px 16px rgba(91,78,232,0.08);
  --card-shadow-hover: 0 8px 40px rgba(91,78,232,0.16);

  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;

  --font-head: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h: 68px;
  --max-w: 1140px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: var(--indigo); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-light);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.section-label.coral { color: #C2410C; background: var(--coral-light); }
.section-label.mint  { color: #065F46; background: var(--mint-light); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text-dark);
}
.section-title span { color: var(--indigo); }

.section-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 600px;
  margin-top: 14px;
  line-height: 1.7;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-text {
  font-weight: 800;
  font-size: 18px;
  color: var(--text-dark);
  letter-spacing: -.01em;
}
.nav-logo:hover { text-decoration: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color .15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--indigo); text-decoration: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  padding: 4px 10px;
  border-radius: 100px;
  transition: all .15s;
}
.lang-btn.active {
  background: var(--indigo);
  color: #fff;
}
.lang-btn:hover:not(.active) { color: var(--indigo); }

/* Mobile hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: .2s;
  display: block;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--card-border);
    padding: 20px 24px;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
}

/* ── Dropdown nav ── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  transition: color .15s;
  white-space: nowrap;
}
.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger { color: var(--indigo); }
.nav-chevron { transition: transform .2s; flex-shrink: 0; }
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.05);
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .15s, transform .15s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.open .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-panel a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--text-mid) !important;
  border-radius: 8px;
  transition: background .1s, color .1s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-dropdown-panel a:hover {
  background: var(--indigo-light);
  color: var(--indigo) !important;
}

/* Mobile dropdown */
@media (max-width: 860px) {
  .nav-dropdown { width: 100%; }
  .nav-dropdown-trigger { width: 100%; font-size: 15px; justify-content: space-between; }
  .nav-dropdown-panel {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 4px 0 0 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-panel { display: flex; flex-direction: column; gap: 2px; }
  .nav-dropdown-panel a {
    padding: 8px 4px;
    border-radius: 0;
    border-bottom: 1px solid var(--card-border);
    font-size: 14px;
  }
  .nav-dropdown-panel a:last-child { border-bottom: none; }
  .nav-dropdown-panel a:hover { background: transparent; color: var(--indigo) !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-primary {
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 4px 16px rgba(91,78,232,0.3);
}
.btn-primary:hover {
  background: var(--indigo-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(91,78,232,0.4);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--indigo);
  border: 2px solid var(--card-border);
}
.btn-ghost:hover {
  border-color: var(--indigo);
  background: var(--indigo-light);
}
.btn-dark {
  background: var(--text-dark);
  color: #fff;
}
.btn-dark:hover { background: #1A1A2E; color: #fff; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--indigo);
  border: 2px solid var(--indigo);
}
.btn-outline:hover {
  background: var(--indigo);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(91,78,232,0.28);
}
.btn-sm { padding: 8px 18px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 16px 32px; font-size: 17px; border-radius: 14px; }

/* App Store button */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text-dark);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 14px;
  text-decoration: none !important;
  transition: all .2s;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.store-btn svg { width: 24px; height: 24px; fill: #fff; flex-shrink: 0; }
.store-btn-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn-text small { font-size: 10px; opacity: .7; font-weight: 400; }
.store-btn-text strong { font-size: 16px; font-weight: 700; }

/* ---------- Cards ---------- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

/* ---------- Badges ---------- */
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--indigo-light);
  color: var(--indigo);
}
.badge.free { background: var(--mint-light); color: #065F46; }
.badge.pro  { background: linear-gradient(135deg,#5B4EE8,#00D4C8); color: #fff; }
.badge.new  { background: var(--coral-light); color: #C2410C; }

/* ---------- HERO ---------- */
.hero {
  background: var(--bg-dark);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,78,232,.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,212,200,.1);
  border: 1px solid rgba(0,212,200,.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(36px,5vw,60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title span { color: var(--cyan); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 12px;
}

/* Phone mockup */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(91,78,232,.5) 0%, transparent 70%);
  pointer-events: none;
}
.phone-frame {
  width: 240px;
  background: #1C1C2E;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
  z-index: 1;
}
.phone-screen {
  background: #F0F0FF;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9/19;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 8px;
  background: #1C1C2E;
  border-radius: 4px;
  z-index: 2;
}
.phone-ui {
  padding: 32px 12px 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone-balance {
  text-align: center;
  background: linear-gradient(135deg, #5B4EE8, #8B5CF6);
  border-radius: 14px;
  padding: 16px 12px;
  color: #fff;
}
.phone-balance-label { font-size: 9px; opacity: .7; font-weight: 500; margin-bottom: 2px; }
.phone-balance-amount { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.phone-rows { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.phone-row {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 9px;
}
.phone-row-left { display: flex; align-items: center; gap: 6px; }
.phone-row-icon {
  width: 24px; height: 24px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.phone-row-name { font-weight: 600; color: #1A1A2E; font-size: 9px; }
.phone-row-cat  { color: #8888AA; font-size: 8px; }
.phone-row-amt  { font-weight: 700; font-size: 10px; }
.phone-row-amt.neg { color: var(--coral); }
.phone-row-amt.pos { color: var(--mint); }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-note { text-align: center; }
  .phone-wrap { display: none; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 20px 0;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
}
.trust-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }

/* ---------- Feature cards ---------- */
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-icon.purple { background: var(--indigo-light); }
.feature-icon.coral  { background: var(--coral-light); }
.feature-icon.mint   { background: var(--mint-light); }
.feature-icon.gold   { background: #FEF3C7; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.feature-card p { font-size: 15px; color: var(--text-mid); line-height: 1.65; }

/* ---------- Sam section ---------- */
.sam-section {
  background: var(--bg-dark);
  overflow: hidden;
  position: relative;
}
.sam-section::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,200,.1) 0%, transparent 60%);
  pointer-events: none;
}

.sam-chat {
  background: var(--bg-dark2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 18px;
  max-width: 380px;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.chat-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00D4C8, #5B4EE8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.chat-name { font-weight: 700; color: #fff; font-size: 15px; }
.chat-status { font-size: 12px; color: #00D4C8; display: flex; align-items: center; gap: 4px; }
.chat-status::before { content: ''; width: 6px; height: 6px; background: #00D4C8; border-radius: 50%; }

.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 8px;
  max-width: 85%;
}
.bubble-sam {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  border-radius: 4px 14px 14px 14px;
}
.bubble-user {
  background: var(--indigo);
  color: #fff;
  margin-left: auto;
  border-radius: 14px 4px 14px 14px;
}
.bubble-highlight {
  background: linear-gradient(135deg, rgba(0,212,200,.12), rgba(91,78,232,.12));
  border: 1px solid rgba(0,212,200,.2);
  color: rgba(255,255,255,.85);
  border-radius: 14px;
}

/* ---------- Screenshots ---------- */
.screenshots-scroll {
  overflow-x: auto;
  cursor: grab;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}
.screenshots-scroll:active { cursor: grabbing; }
.screenshots-scroll::-webkit-scrollbar { height: 4px; }
.screenshots-scroll::-webkit-scrollbar-track { background: transparent; }
.screenshots-scroll::-webkit-scrollbar-thumb { background: var(--card-border); border-radius: 4px; }

.screenshots-track {
  display: flex;
  gap: 16px;
  padding: 8px 4px;
  width: max-content;
}
.screenshot-wrap {
  width: 200px;
  flex-shrink: 0;
}
.screenshot-phone {
  background: #1C1C2E;
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
}
.screenshot-screen {
  background: #F0F0FF;
  border-radius: 22px;
  aspect-ratio: 9/19;
  overflow: hidden;
  position: relative;
}
.screenshot-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  z-index: 1;
}
.screenshot-placeholder {
  display: none;
}
.screenshot-placeholder .ss-icon { font-size: 28px; }
.screenshot-label {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
  font-weight: 500;
}

/* ---------- Pricing cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 660px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--indigo);
  box-shadow: 0 0 0 1px var(--indigo), 0 16px 48px rgba(91,78,232,.15);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #5B4EE8, #00D4C8);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.pricing-name.premium { color: var(--indigo); }

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span { font-size: 20px; font-weight: 500; color: var(--text-light); }

.pricing-cycle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}
.pricing-feature .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--mint-light);
  color: var(--mint);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-feature .check.no {
  background: #F3F4F6;
  color: var(--text-light);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--bg-soft);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px;
}
.testimonial-card blockquote {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--indigo-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--indigo);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--text-dark); }
.testimonial-handle { font-size: 12px; color: var(--text-light); }
.stars { color: var(--gold); font-size: 13px; margin-bottom: 12px; }

/* ---------- CTA section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1A1A3E 100%);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,212,200,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(28px,4vw,48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.cta-section p { font-size: 18px; color: rgba(255,255,255,.6); margin-bottom: 36px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.6);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Top row: logo+tagline LEFT · socials+appstore RIGHT */
.footer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 0 36px;
  flex-wrap: wrap;
}
.footer-header-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.footer-logo-text { letter-spacing: -.01em; }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  margin: 0;
}
.footer-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-socials { display: flex; gap: 6px; }
.footer-social-link {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: all .15s;
}
.footer-social-link:hover { border-color: var(--indigo); color: var(--indigo); }
.footer-appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  text-decoration: none;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all .15s;
}
.footer-appstore-btn:hover { border-color: var(--indigo); color: #fff; }

/* Divider */
.footer-rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin: 0;
}

/* Nav columns — equal width, below the header row */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (max-width: 760px) {
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 400px) {
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color .15s;
  text-decoration: none;
}
.footer-col ul a:hover { color: #fff; }

/* Bottom bar */
.footer-bottom {
  padding: 20px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.25);
}
@media (max-width: 540px) {
  .footer-header { flex-direction: column; align-items: flex-start; }
  .footer-header-right { width: 100%; }
}

/* legacy social link used on contact.html */
.social-link {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all .2s;
  text-decoration: none !important;
}
.social-link:hover { background: var(--indigo); border-color: var(--indigo); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--card-border);
  padding: calc(var(--nav-h) + 64px) 0 64px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(32px,5vw,52px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--text-dark);
  margin-top: 12px;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.7;
}

/* ---------- Legal pages ---------- */
.legal-page {
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 80px;
  background: var(--bg);
}
.legal-header {
  padding-bottom: 40px;
  border-bottom: 1.5px solid var(--card-border);
  margin-bottom: 0;
}
.legal-header h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--text-dark);
  margin: 14px 0 10px;
  line-height: 1.1;
}
.badge-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--indigo-light);
  color: var(--indigo);
  border: 1.5px solid rgba(91,78,232,.15);
}
.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 0;
}
.legal-date {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
}
.legal-body { margin-top: 48px; }
.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--card-border);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.legal-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 16px 0 8px;
}
.legal-section p, .legal-section li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal-section ul { list-style: disc; padding-left: 20px; }
.legal-section a { color: var(--indigo); }

/* ---------- Form styles ---------- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-label .req { color: var(--coral); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(91,78,232,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* ---------- Blog ---------- */
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--indigo-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.blog-card-body { padding: 24px; }
.blog-card-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--indigo);
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card-excerpt { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
}

/* ---------- Investor page ---------- */
.stat-card {
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 24px;
}
.stat-number {
  font-size: 44px;
  font-weight: 900;
  color: var(--indigo);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 14px; color: var(--text-mid); font-weight: 500; }

/* ---------- About / Team ---------- */
.team-card {
  text-align: center;
}
.team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 16px;
}
.team-name { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--indigo); font-weight: 500; margin-bottom: 8px; }
.team-bio  { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ---------- Ticket status ---------- */
.ticket-timeline { margin-top: 24px; }
.timeline-step {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 28px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px; top: 32px;
  width: 2px;
  bottom: 0;
  background: var(--card-border);
}
.timeline-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--card-border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  z-index: 1;
}
.timeline-dot.done     { background: var(--mint);  border-color: var(--mint);  color: #fff; }
.timeline-dot.active   { background: var(--indigo); border-color: var(--indigo); color: #fff; }
.timeline-dot.rejected { background: #EF4444;       border-color: #EF4444;       color: #fff; }
.timeline-body { flex: 1; padding-top: 4px; }
.timeline-title { font-weight: 600; color: var(--text-dark); font-size: 15px; }
.timeline-date  { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.timeline-note  { font-size: 14px; color: var(--text-mid); margin-top: 6px; }

/* ---------- Scroll animations ---------- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- Plan App Store pill (replaces hardcoded price) ---------- */
.plan-appstore-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft);
  border: 1.5px solid var(--card-border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  text-decoration: none;
}
.plan-appstore-pill.dark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: #00D4C8;
}

/* ---------- Annual savings bar ---------- */
.savings-bar {
  background: linear-gradient(90deg, #5B4EE8, #8B5CF6, #00D4C8);
  color: #fff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 999;
}
.savings-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.savings-bar-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.2); border: none; color: #fff;
  width: 24px; height: 24px; border-radius: 50%; cursor: pointer;
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.savings-bar-close:hover { background: rgba(255,255,255,.35); }

/* ---------- Reviews section ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: #fff;
  border: 1.5px solid var(--card-border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s;
}
.review-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.review-stars { color: #F59E0B; font-size: 14px; letter-spacing: 1px; }
.review-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--indigo-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.review-sub  { font-size: 11px; color: var(--text-light); }
.review-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--indigo-light); color: var(--indigo);
  padding: 2px 8px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: .04em;
}

/* ---------- FAQ accordion ---------- */
.faq-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 32px;
}
.faq-tab {
  padding: 7px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: var(--text-light);
  background: var(--bg-soft);
  border: 1.5px solid var(--card-border);
  cursor: pointer; transition: all .15s;
}
.faq-tab.active {
  background: var(--indigo); color: #fff; border-color: var(--indigo);
}
.faq-item {
  border-bottom: 1px solid var(--card-border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--card-border); }
.faq-q {
  width: 100%; text-align: left;
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 15px; font-weight: 600; color: var(--text-dark);
  background: none; border: none; cursor: pointer;
}
.faq-q .faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--indigo-light); color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; transition: transform .2s;
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); background: var(--indigo); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--text-mid); line-height: 1.75;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 18px; }

/* ---------- Partnerships section ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 560px) { .partner-grid { grid-template-columns: 1fr; } }

.partner-card {
  background: #fff;
  border: 1.5px solid var(--card-border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .2s;
}
.partner-card:hover { box-shadow: var(--card-shadow-hover); }
.partner-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--indigo-light); color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.partner-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.partner-desc  { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ---------- Coming soon section ---------- */
.coming-soon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) { .coming-soon-grid { grid-template-columns: 1fr; } }

.coming-card {
  border: 2px dashed var(--card-border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.coming-icon { font-size: 48px; margin-bottom: 16px; }
.coming-title { font-size: 20px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.coming-sub   { font-size: 14px; color: var(--text-mid); margin-bottom: 16px; }
.coming-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--indigo-light); color: var(--indigo);
  padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
}

/* ---------- Sam floating decoration ---------- */
.sam-float-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
@keyframes samBob {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}
@keyframes samPeek {
  0%, 100% { transform: translateY(0) scaleX(-1); }
  50%       { transform: translateY(-8px) scaleX(-1); }
}
.sam-bob  { animation: samBob 4s ease-in-out infinite; }
.sam-peek { animation: samPeek 3.5s ease-in-out infinite; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.text-muted { color: var(--text-light); }
.text-indigo { color: var(--indigo); }
.bg-soft { background: var(--bg-soft); }
.bg-dark { background: var(--bg-dark); }
.divider {
  height: 1px;
  background: var(--card-border);
  margin: 48px 0;
}

/* ══════════════════════════════════════
   Social Proof / Recognition section
   ══════════════════════════════════════ */

/* Pain-point recognition cards */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 64px;
}
@media (max-width: 760px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
  transition: border-color .15s;
}
.pain-card:hover { border-color: var(--indigo); }
.pain-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--indigo-light);
  color: var(--indigo);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.t-stars { color: #F59E0B; font-size: 15px; letter-spacing: 1px; }
.t-quote {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.t-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.t-tag {
  padding: 2px 9px;
  border-radius: 100px;
  background: var(--indigo-light);
  color: var(--indigo);
  font-size: 11px;
  font-weight: 600;
}

/* Audience badges row */
.audience-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 8px;
}
.audience-badge {
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--bg-soft);
  border: 1px solid var(--card-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.audience-badge.primary {
  background: var(--indigo-light);
  border-color: rgba(91,78,232,.2);
  color: var(--indigo);
}

/* Recognition section dark banner */
.recognition-banner {
  background: var(--bg-dark);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 600px) { .recognition-banner { padding: 40px 24px; } }
.recognition-banner h2 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.recognition-banner h2 span { color: #00D4C8; }
.recognition-banner p {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── Home: alternating feature rows ── */
.home-feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 56px 0; }
.home-feat-row + .home-feat-row { border-top: 1px solid var(--card-border); }
.home-feat-phone { display: flex; justify-content: center; }
.home-feat-phone .phone-frame { width: 240px; box-shadow: 0 24px 64px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.06); }
.home-feat-phone .phone-screen { aspect-ratio: 9/19; background: #0f0f1a; }
.home-feat-phone .phone-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-feat-kicker { display: inline-block; padding: 4px 12px; background: var(--indigo-light); color: var(--indigo); border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.home-feat-text h3 { font-size: clamp(22px,3vw,30px); font-weight: 900; color: var(--text-dark); line-height: 1.3; margin-bottom: 14px; }
.home-feat-text p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 22px; max-width: 420px; }
.home-feat-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.home-feat-bullets li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-mid); }
.hf-check { width: 20px; height: 20px; border-radius: 50%; background: var(--indigo); color: #fff; font-size: 10px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
@media (max-width: 820px) {
  .home-feat-row { grid-template-columns: 1fr; gap: 36px; padding: 40px 0; }
  .home-feat-phone .phone-frame { width: 200px; }
}

/* ── Before/After comparison cards ── */
.ba-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ba-card { border-radius: 24px; padding: 36px; }
.ba-card.ba-bad { background: #FFF5F5; border: 1px solid #FECACA; }
.ba-card.ba-good { background: var(--indigo-light); border: 1px solid rgba(91,78,232,.18); }
.ba-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; margin-bottom: 20px; }
.ba-card.ba-bad .ba-badge { background: #FECACA; color: #991B1B; }
.ba-card.ba-good .ba-badge { background: var(--indigo); color: #fff; }
.ba-card h4 { font-size: 17px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.ba-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ba-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-mid); line-height: 1.5; }
.ba-sam-row { margin-top: 24px; display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 14px; padding: 14px; box-shadow: 0 2px 12px rgba(91,78,232,.1); }
.ba-sam-row img { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.ba-sam-bubble { background: var(--indigo); color: #fff; border-radius: 12px 12px 12px 3px; padding: 10px 14px; font-size: 13px; line-height: 1.6; flex: 1; }
@media (max-width: 768px) { .ba-wrap { grid-template-columns: 1fr; } }

/* ── Review invite block ── */
.review-invite { background: var(--indigo-light); border: 1px solid rgba(91,78,232,.15); border-radius: 24px; padding: 52px 40px; text-align: center; }

/* ── Testimonial avatar circles ── */
.t-avatar { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0; }

/* ── How it works ── */
.steps-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; }
.step { text-align: center; padding: 0 24px; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--indigo); color: #fff; font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step h3 { font-size: 17px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--text-mid); line-height: 1.65; }
.step-arrow { font-size: 22px; color: var(--indigo); opacity: .25; padding-top: 14px; }
@media (max-width: 760px) {
  .steps-row { grid-template-columns: 1fr; gap: 28px; }
  .step-arrow { text-align: center; transform: rotate(90deg); }
}

/* ── Microinteractions ── */
.home-feat-phone .phone-frame {
  transition: transform .3s ease, box-shadow .3s ease;
}
.home-feat-row:hover .phone-frame {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(91,78,232,0.14);
}
.step { transition: transform .2s; }
.step:hover { transform: translateY(-4px); }
.step:hover .step-num { box-shadow: 0 8px 20px rgba(91,78,232,0.35); }
.step-num { transition: box-shadow .2s; }
.ba-card { transition: transform .2s, box-shadow .2s; }
.ba-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.review-invite { transition: box-shadow .2s; }
.review-invite:hover { box-shadow: 0 8px 32px rgba(91,78,232,0.14); }

/* ── Trust strip ── */
.trust-strip { display: flex; border: 1px solid var(--card-border); border-radius: 20px; overflow: hidden; background: #fff; }
.trust-item { flex: 1; display: flex; align-items: flex-start; gap: 14px; padding: 22px 20px; border-right: 1px solid var(--card-border); transition: background .15s; }
.trust-item:hover { background: var(--indigo-light); }
.trust-item:last-child { border-right: none; }
.trust-ico { font-size: 26px; flex-shrink: 0; line-height: 1; }
.trust-label { font-size: 14px; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.trust-sub { font-size: 12px; color: var(--text-light); margin-top: 3px; line-height: 1.4; }
@media (max-width: 760px) {
  .trust-strip { flex-direction: column; border-radius: 16px; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--card-border); }
  .trust-item:last-child { border-bottom: none; }
}
