/* TechProspect — extra.css · Dashboard mockup + unique components */

/* ── Dashboard mockup ──────────────────────────────────────────────────── */
.hero__preview { margin-top: 56px; }

.dashboard-mock {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  max-width: 780px;
  margin: 0 auto;
}
.dashboard-mock__bar {
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--color-border);
}
.dashboard-mock__bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--color-border);
  display: inline-block;
}
.dashboard-mock__bar span:first-child { background: #ef4444; }
.dashboard-mock__bar span:nth-child(2) { background: #f59e0b; }
.dashboard-mock__bar span:nth-child(3) { background: #10b981; }
.dashboard-mock__url {
  flex: 1; font-size: 11px; color: var(--color-text-muted);
  text-align: center; font-family: monospace;
  background: var(--color-surface);
  padding: 2px 10px; border-radius: 4px;
}
.dashboard-mock__body {
  display: flex; min-height: 280px;
}
.dash-sidebar {
  width: 48px; background: rgba(0,0,0,0.25);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 12px 0;
  border-right: 1px solid var(--color-border);
}
.dash-logo {
  width: 28px; height: 28px; background: var(--color-primary);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: #fff; margin-bottom: 4px;
}
.dash-nav-item {
  width: 32px; height: 32px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer;
  transition: background .2s;
}
.dash-nav-item:hover, .dash-nav-item--active {
  background: rgba(16,185,129,0.15);
}
.dash-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
}
.dash-title { font-size: 13px; font-weight: 700; color: var(--color-text-primary); }
.dash-badge-green {
  font-size: 10px; font-weight: 700; color: #10b981;
  background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.2);
  padding: 2px 7px; border-radius: 4px;
}
.dash-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.dash-chip {
  font-size: 10px; color: var(--color-text-secondary);
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  padding: 3px 8px; border-radius: 4px;
}
.dash-chip--green {
  color: #10b981; border-color: rgba(16,185,129,0.3);
  background: rgba(16,185,129,0.08); cursor: pointer;
}
.dash-leads { display: flex; flex-direction: column; gap: 6px; }
.dash-lead {
  display: flex; align-items: center; gap: 8px;
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: 6px; padding: 7px 10px;
}
.dash-lead__dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.dash-lead__dot--hot  { background: #ef4444; box-shadow: 0 0 6px #ef4444; }
.dash-lead__dot--warm { background: #f59e0b; }
.dash-lead__info { flex: 1; }
.dash-lead__info strong { font-size: 11px; color: var(--color-text-primary); display: block; }
.dash-lead__info span  { font-size: 10px; color: var(--color-text-muted); }
.dash-lead__score {
  font-size: 11px; font-weight: 800; color: #10b981;
  background: rgba(16,185,129,0.1); border-radius: 4px; padding: 2px 6px;
}
.dash-lead__action {
  font-size: 10px; color: #10b981; font-weight: 700; cursor: pointer;
}
.dash-stat-row {
  display: flex; gap: 8px; margin-top: auto;
}
.dash-stat {
  flex: 1; background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: 6px; padding: 6px 10px; text-align: center;
}
.dash-stat strong { font-size: 14px; font-weight: 800; color: #10b981; display: block; }
.dash-stat span   { font-size: 9px; color: var(--color-text-muted); }

/* ── Logos row ──────────────────────────────────────────────────────────── */
.logos { padding: 24px 0; }
.logos__label {
  text-align: center; font-size: 12px; color: var(--color-text-muted);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.logos__row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 24px;
}
.logo-item {
  font-size: 13px; font-weight: 600; color: var(--color-text-secondary);
  opacity: 0.6; white-space: nowrap;
}

/* ── Features grid ──────────────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.feature-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: 14px; padding: 28px 24px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover {
  border-color: rgba(16,185,129,0.3); transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.feature-card__icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-card__icon--blue   { background: rgba(37,99,235,.15); color: #60a5fa; }
.feature-card__icon--orange { background: rgba(245,158,11,.15); color: #fbbf24; }
.feature-card__icon--pink   { background: rgba(236,72,153,.15); color: #f472b6; }
.feature-card__icon--green  { background: rgba(16,185,129,.15); color: #34d399; }
.feature-card__icon--purple { background: rgba(139,92,246,.15); color: #a78bfa; }
.feature-card__icon--yellow { background: rgba(234,179,8,.15); color: #facc15; }
.feature-card__title { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--color-text-primary); }
.feature-card__desc  { font-size: 13px; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: 14px; }
.feature-card__list  { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.feature-card__list li {
  font-size: 12px; color: var(--color-text-muted);
  padding-left: 16px; position: relative;
}
.feature-card__list li::before {
  content: "✓"; position: absolute; left: 0; color: #10b981; font-weight: 700;
}

/* ── How it works ───────────────────────────────────────────────────────── */
.hiw-steps {
  display: flex; align-items: flex-start; gap: 24px; margin-top: 48px;
}
.hiw-step {
  flex: 1; background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: 14px; padding: 28px 24px;
}
.hiw-arrow {
  font-size: 28px; color: var(--color-primary); margin-top: 48px; flex-shrink: 0; font-weight: 300;
}
.hiw-step__num {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary), #059669);
  color: #fff; font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.hiw-step__title { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--color-text-primary); }
.hiw-step__desc  { font-size: 13px; color: var(--color-text-secondary); line-height: 1.7; }

/* ── Stats ──────────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.stat-card {
  text-align: center; background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: 14px; padding: 28px 16px;
}
.stat-card__num {
  font-size: 40px; font-weight: 900; color: var(--color-primary); display: block;
  font-variant-numeric: tabular-nums; letter-spacing: -1px;
}
.stat-card__label { font-size: 13px; color: var(--color-text-secondary); margin-top: 6px; }

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px;
}
.testimonial-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: 14px; padding: 28px 24px; display: flex; flex-direction: column; gap: 16px;
}
.testimonial-card__stars { color: #fbbf24; font-size: 14px; letter-spacing: 2px; }
.testimonial-card__text  { font-size: 14px; color: var(--color-text-secondary); line-height: 1.7; flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #059669);
  color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-card__author strong { font-size: 13px; color: var(--color-text-primary); display: block; }
.testimonial-card__author span   { font-size: 11px; color: var(--color-text-muted); }

/* ── Pricing ────────────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; align-items: start; }
.pricing-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: 16px; padding: 32px 28px; position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.pricing-card--featured {
  border-color: var(--color-primary); box-shadow: 0 0 0 1px var(--color-primary), 0 20px 50px rgba(16,185,129,0.2);
}
.pricing-card__popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--color-primary); color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 14px; border-radius: 99px; white-space: nowrap;
}
.pricing-card__header h3 { font-size: 18px; font-weight: 800; color: var(--color-text-primary); }
.pricing-card__header p  { font-size: 12px; color: var(--color-text-muted); margin-top: 4px; }
.pricing-card__price {
  display: flex; align-items: baseline; gap: 3px; margin: 20px 0;
}
.pricing-card__currency { font-size: 18px; font-weight: 700; color: var(--color-text-primary); }
.pricing-card__num { font-size: 42px; font-weight: 900; color: var(--color-primary); letter-spacing: -1px; }
.pricing-card__period { font-size: 14px; color: var(--color-text-muted); }
.pricing-card__features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.pricing-card__features li {
  font-size: 13px; color: var(--color-text-secondary);
  display: flex; align-items: center; gap: 8px;
}
.pricing-card__features li svg { color: var(--color-primary); flex-shrink: 0; }
.pricing-card__feature--off { opacity: 0.4; }
.pricing-card__feature--off svg { color: var(--color-text-muted) !important; }
.pricing-guarantee {
  text-align: center; font-size: 13px; color: var(--color-text-muted);
  margin-top: 28px; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.pricing-guarantee svg { color: var(--color-primary); }

/* ── CTA Band ───────────────────────────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%); }
.cta-band__inner { text-align: center; padding: 32px 0; }
.cta-band__title { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-band__desc  { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 24px; }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 10px; overflow: hidden; }
.faq-item--open { border-color: rgba(16,185,129,0.3); }
.faq-item__q {
  width: 100%; background: none; border: none; padding: 18px 20px;
  text-align: left; font-size: 14px; font-weight: 600; color: var(--color-text-primary);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: inherit;
}
.faq-item__q::after {
  content: "+"; font-size: 18px; font-weight: 300; color: var(--color-primary);
  transition: transform .25s ease; flex-shrink: 0;
}
.faq-item--open .faq-item__q::after { content: "−"; }
.faq-item__a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
  font-size: 13px; color: var(--color-text-secondary); line-height: 1.7;
  padding: 0 20px;
}
.faq-item--open .faq-item__a { padding-bottom: 18px; }

/* ── Reveal animations ──────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal--delay-4 { transition-delay: .4s; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hiw-steps { flex-direction: column; }
  .hiw-arrow { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-mock__body { flex-direction: column; }
  .dash-sidebar { flex-direction: row; width: 100%; padding: 8px 12px; }
}

/* ═══════════════════════════════════════════════════════════
   TECHPROSPECT — Layout Foundation, Nav, Buttons, Sections
   (complementa base.css/style.css que usam classes do seocontent)
═══════════════════════════════════════════════════════════ */

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
  background: #0f172a;
  color: #cbd5e1;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }
h1,h2,h3,h4 { margin: 0; }
img { max-width: 100%; display: block; }
svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }

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

/* Section */
.section { padding: 80px 0; }
.section--dark { background: #080e1c; }

/* ── Header & Nav ─────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(8,14,28,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow .3s ease;
}
.header--scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: #f1f5f9;
  text-decoration: none;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: #f1f5f9; background: rgba(255,255,255,0.06); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Mobile nav */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  width: 20px; height: 2px;
  background: #94a3b8;
  border-radius: 2px;
  display: block;
  transition: .2s;
}
.mobile-nav {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px 24px;
  z-index: 899;
}
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mobile-nav__close {
  background: none; border: none;
  cursor: pointer; color: #94a3b8; padding: 4px;
}
.mobile-nav__links {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 20px;
}
.mobile-nav__links a {
  display: block; padding: 10px 12px;
  font-size: 14px; font-weight: 500;
  color: #94a3b8; border-radius: 8px;
  transition: .2s;
}
.mobile-nav__links a:hover { color: #f1f5f9; background: rgba(255,255,255,0.06); }
.mobile-backdrop {
  position: fixed; inset: 0; z-index: 898;
  background: rgba(0,0,0,0.5);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 4px 14px rgba(16,185,129,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.4);
}
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,0.08);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); color: #f1f5f9; }
.btn--outline {
  background: transparent;
  color: #10b981;
  border: 1.5px solid rgba(16,185,129,0.4);
}
.btn--outline:hover {
  background: rgba(16,185,129,0.08);
  border-color: #10b981;
}
.btn--lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }
.btn:active { transform: translateY(0) !important; }

/* ── Badges & Labels ──────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
}
.badge--green {
  background: rgba(16,185,129,0.12);
  color: #10b981;
  border: 1px solid rgba(16,185,129,0.25);
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #10b981;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cabinet Grotesk', 'Inter', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 15px;
  color: #94a3b8;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 0; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding-top: 140px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(16,185,129,0.15) 0%, transparent 70%),
              linear-gradient(180deg, #0a0f1e 0%, #080e1c 100%);
  padding-bottom: 80px;
}
.hero__badge { margin-bottom: 20px; }
.hero__title {
  font-family: 'Cabinet Grotesk', 'Inter', sans-serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.text-gradient {
  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 17px;
  color: #94a3b8;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero__desc strong { color: #cbd5e1; }
.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}
.hero__trust svg { color: #10b981; display: inline-block; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #05080f;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer__brand-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}
.footer__brand-desc a { color: #10b981; }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #475569;
  transition: .2s;
}
.footer__social a:hover { color: #f1f5f9; border-color: rgba(255,255,255,0.2); }
.footer__links-group h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 14px;
}
.footer__links-group ul { display: flex; flex-direction: column; gap: 8px; }
.footer__links-group a {
  font-size: 13px;
  color: #475569;
  transition: color .2s;
}
.footer__links-group a:hover { color: #94a3b8; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  font-size: 12px;
  color: #334155;
}
.footer__bottom a { color: #10b981; }

/* ── Responsive fixes ─────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero { padding-top: 100px; }
  .section { padding: 56px 0; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__trust { font-size: 12px; }
}
