/* =========================================
   OUTBOUNDIQ — THEME CSS
   Dark charcoal base, amber accent
   ========================================= */

/* FONT STACKS via Google Fonts:
   Headings: Syne (geometric, bold)
   Body: Figtree (warm, readable) */

:root {
  --bg: #111118;
  --bg-2: #18181f;
  --bg-3: #1e1e26;
  --surface: #222230;
  --border: #2a2a38;
  --text: #e8e3d8;
  --text-muted: #8a8a9a;
  --text-dim: #5a5a6a;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --accent-glow: rgba(245, 158, 11, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border); }

/* ---- LAYOUT ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-block;
  font-family: 'Figtree', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0;
}

/* ====================
   NAV
   ==================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(17, 17, 24, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.nav-tagline {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ====================
   HERO
   ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.1;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 28px;
}

/* ---- HERO RIGHT: EMAIL COMPOSE ---- */
.hero-right {
  display: flex;
  justify-content: flex-end;
}

.email-compose {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,158,11,0.06);
  position: relative;
}

.compose-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.compose-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.compose-status {
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}

.compose-field {
  margin-bottom: 14px;
}

.compose-field label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 6px;
}

.compose-input {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'Figtree', sans-serif;
}

.sequence-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 20px;
}

.sequence-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seq-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.3s;
}

.seq-card:hover {
  border-color: rgba(245,158,11,0.3);
}

.seq-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  min-width: 24px;
}

.seq-text {
  font-size: 12px;
  color: var(--text-muted);
  flex: 1;
}

.seq-status {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.seq-status.sent {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.seq-status.pending {
  background: var(--accent-dim);
  color: var(--accent);
}

.compose-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.reply-count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.reply-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.agent-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
}

/* ====================
   PROOF / METRICS
   ==================== */
.proof {
  padding: 48px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.proof-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proof-item {
  text-align: center;
}

.proof-metric {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

.proof-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.proof-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ====================
   HOW IT WORKS
   ==================== */
.how {
  padding: 120px 48px;
  max-width: 1160px;
  margin: 0 auto;
}

.how-header {
  margin-bottom: 72px;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  position: relative;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 28px 24px 0;
  flex-shrink: 0;
}

/* ====================
   OUTCOMES
   ==================== */
.outcomes {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.outcomes-header {
  max-width: 1160px;
  margin: 0 auto 64px;
}

.outcomes-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.outcome {
  background: var(--bg-2);
  padding: 40px 32px;
  transition: background 0.3s;
}

.outcome:hover {
  background: var(--bg-3);
}

.outcome-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.outcome-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.outcome-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ====================
   PHILOSOPHY
   ==================== */
.philosophy {
  padding: 100px 48px;
  background: var(--bg);
}

.philosophy-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.philosophy-quote {
  position: relative;
}

.quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 8rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 0.5;
  display: block;
  margin-bottom: 24px;
  font-weight: 800;
}

.quote-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
}

.philosophy-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.philosophy-body:last-child { margin-bottom: 0; }

/* ====================
   CLOSING / VISION
   ==================== */
.closing {
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 28px;
  position: relative;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 60px;
  line-height: 1.7;
  position: relative;
}

.closing-vision {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 48px;
  text-align: left;
  position: relative;
}

.vision-label {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.vision-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ====================
   FOOTER
   ==================== */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.footer-note {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ====================
   RESPONSIVE
   ==================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right { justify-content: flex-start; }
  .email-compose { max-width: 100%; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .proof-inner { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .proof-sep { display: none; }
  .proof-item { flex: 0 0 120px; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .how { padding: 80px 24px; }
  .outcomes { padding: 80px 24px; }
  .philosophy { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .proof { padding: 40px 24px; }
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .how-steps { flex-direction: column; }
  .step-connector { transform: rotate(90deg); padding: 8px 0; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-sep { display: none; }
}

/* ---- APP SHELL ---- */
.page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; gap: 16px; }
.page-title { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--text); margin: 0; }
.page-subtitle { font-size: 14px; color: var(--text-muted); margin: 4px 0 0; }
.card { background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin-bottom: 24px; }
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.card-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.stat-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.stat-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 8px; }
.stat-value { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--text); }
.stat-value.accent { color: var(--accent); }
.stat-value.green { color: #10b981; }
.btn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 8px; text-decoration: none; cursor: pointer; border: none; transition: all 0.15s; font-family: 'Figtree', sans-serif; }
.btn-primary { background: var(--accent); color: #111118; }
.btn-primary:hover { background: #fbbf24; }
.btn-secondary { background: var(--bg-3); color: var(--text-muted); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--surface); color: var(--text); }
.btn-sm { font-size: 12px; padding: 5px 12px; }
.btn-xs { font-size: 11px; padding: 4px 10px; }
.alert { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 10px; font-size: 13px; }
.alert-success { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.2); color: #10b981; }
.badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; text-transform: capitalize; }
.badge-active { background: rgba(16,185,129,0.15); color: #10b981; }
.badge-draft { background: var(--bg-3); color: var(--text-muted); }
.badge-paused { background: rgba(245,158,11,0.15); color: var(--accent); }
.badge-completed { background: var(--bg-3); color: var(--text-dim); }
.campaigns-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
.campaign-card { display: block; background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px; padding: 18px; text-decoration: none; transition: border-color 0.15s; }
.campaign-card:hover { border-color: rgba(245,158,11,0.3); }
.campaign-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.campaign-card-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.campaign-card-meta { font-size: 11px; color: var(--text-dim); }
.campaign-card-stats { display: flex; gap: 16px; }
.mini-stat { display: flex; flex-direction: column; }
.mini-stat-val { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); }
.mini-stat-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); }
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.empty-state p { font-size: 14px; color: var(--text-muted); }
.alert-error { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.2); color: #ef4444; }

/* ---- APP PAGE CONTAINER ---- */
.app-page { max-width: 1120px; margin: 0 auto; padding: 40px 32px; }

/* ---- EMAIL SEQUENCE DISPLAY ---- */
.email-seq { display: flex; flex-direction: column; gap: 16px; }
.email-item { background: var(--bg-3); border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.email-seq-num { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 10px; }
.email-subject { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.email-body { font-size: 13px; color: var(--text-muted); line-height: 1.65; white-space: pre-wrap; }

/* ---- TABS ---- */
.tab-bar { display: flex; gap: 4px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; padding: 4px; margin-bottom: 24px; width: fit-content; }
.tab { font-size: 13px; font-weight: 500; color: var(--text-muted); padding: 7px 16px; border-radius: 7px; cursor: pointer; transition: all 0.15s; }
.tab:hover { color: var(--text); }
.tab.active { background: var(--bg-3); color: var(--text); font-weight: 600; }

/* ---- TABLE ---- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--text-muted); padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: left; }
td { font-size: 13px; color: var(--text-muted); padding: 12px 12px; border-bottom: 1px solid rgba(42,42,56,0.5); }
tr:last-child td { border-bottom: none; }

/* ---- LEAD STATUS ---- */
.lead-status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 6px; }
.dot-replied { background: #10b981; box-shadow: 0 0 6px #10b981; }
.dot-bounced { background: #f87171; }
.dot-in_progress { background: var(--accent); }
.dot-pending { background: var(--text-dim); }

/* ---- MODAL ---- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); z-index: 200; display: flex; align-items: center; justify-content: center; }
.modal { background: var(--bg-2); border: 1px solid var(--border); border-radius: 16px; padding: 32px; width: 90%; max-width: 520px; }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.modal-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 1.4rem; cursor: pointer; padding: 4px; }

/* ---- FORM ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-input { width: 100%; background: var(--bg-3); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 13px; color: var(--text); font-family: 'Figtree', sans-serif; }
.form-input:focus { outline: none; border-color: rgba(245,158,11,0.4); }
.form-textarea { width: 100%; background: var(--bg-3); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 13px; color: var(--text); font-family: 'Figtree', sans-serif; resize: vertical; }
.form-textarea:focus { outline: none; border-color: rgba(245,158,11,0.4); }
.form-hint { font-size: 12px; color: var(--text-dim); margin-top: 6px; }

/* ---- PRICING PAGE ---- */
.pricing-page { max-width: 720px; margin: 0 auto; padding: 60px 24px 80px; }
.pricing-hero { text-align: center; margin-bottom: 48px; }
.pricing-title { font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.pricing-sub { font-size: 1.05rem; color: var(--text-muted); }
.pricing-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: 20px; padding: 48px; text-align: center; }
.plan-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(245,158,11,0.2); padding: 5px 14px; border-radius: 100px; margin-bottom: 24px; }
.plan-price { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 12px; }
.price-amount { font-family: 'Syne', sans-serif; font-size: 4rem; font-weight: 800; color: var(--text); }
.price-period { font-size: 1.1rem; color: var(--text-muted); }
.plan-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 36px; }
.plan-features { text-align: left; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-bottom: 40px; }
.feature-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.plan-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.btn-lg { font-size: 15px; padding: 14px 32px; display: inline-flex; align-items: center; gap: 8px; }
.cta-note { font-size: 12px; color: var(--text-dim); }
.pricing-faq { margin-top: 64px; }
.faq-title { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text); text-align: center; margin-bottom: 32px; }
.faq-grid { display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; }
.faq-q { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.faq-a { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .plan-features { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }
  .app-page { padding: 24px 16px; }
}
@media (max-width: 480px) {
  .closing-title { font-size: 2.4rem; }
  .section-title { font-size: 1.8rem; }
}