/* =========================================================
   DentIQ Landing — section-specific styles
   ========================================================= */

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 32px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  margin-top: 24px;
}
.hero h1 .accent-word {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
  padding-right: 2px;
  letter-spacing: -0.035em;
}
.hero-lede {
  margin-top: 24px;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 48ch;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta .check {
  color: var(--success);
  font-weight: 600;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- App mockup (right side of hero) ---------- */
.app-mockup {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-size: 12px;
  user-select: none;
}
.app-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.app-chrome .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line);
}
.app-chrome .dot:nth-child(1) { background: #ed6a5e; }
.app-chrome .dot:nth-child(2) { background: #f5bf4f; }
.app-chrome .dot:nth-child(3) { background: #62c554; }
.app-chrome .url {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.app-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 380px;
}
.app-sidebar {
  background: var(--surface-2);
  border-right: 1px solid var(--line);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.app-sidebar .nav-section {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 8px 4px;
}
.app-sidebar .nav-item {
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12.5px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-sidebar .nav-item.active {
  background: var(--ink);
  color: #fff;
}
.app-sidebar .nav-item .ico {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.4;
  flex-shrink: 0;
}
.app-sidebar .nav-item.active .ico { opacity: 1; }
.app-main {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app-main h6 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.kpi {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
}
.kpi .label {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
}
.kpi .value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: -0.01em;
}
.kpi .delta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--success);
}
.queue-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.queue-row {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--line-2);
  font-size: 12px;
}
.queue-row:last-child { border-bottom: 0; }
.queue-row .t { font-family: var(--font-mono); color: var(--muted); }
.queue-row .name { font-weight: 500; }
.queue-row .doc { color: var(--muted); font-size: 11px; }
.queue-row .status {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10.5px;
  font-family: var(--font-mono);
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink-2);
}
.queue-row .status.in { background: oklch(0.95 0.04 215); border-color: oklch(0.88 0.04 215); color: var(--primary-strong); }
.queue-row .status.wait { background: var(--bg-tint); }
.queue-row .status.paid { background: var(--success-soft); border-color: oklch(0.86 0.06 155); color: oklch(0.4 0.13 155); }

/* ---------- Logo strip ---------- */
.logo-strip {
  padding: 32px 0 48px;
  text-align: center;
}
.logo-strip .label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.logo-row {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.7;
}
.logo-row .logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--muted);
}
