/* SmartPointage — Landing commerciale (marque réelle) */
:root {
  --brand: #e84a1e;
  --brand-hot: #ff5a36;
  --brand-deep: #c53a12;
  --ink: #12141a;
  --ink-soft: #2a2e38;
  --muted: #5c6370;
  --line: rgba(18, 20, 26, 0.1);
  --paper: #faf9f7;
  --white: #ffffff;
  --ok: #0f766e;
  --max: 1160px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 1.5rem, var(--max)); margin-inline: auto; }
@media (min-width: 640px) {
  .container { width: min(100% - 2.5rem, var(--max)); }
}
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus {
  left: 1rem; top: 1rem; z-index: 100;
  background: #fff; padding: 0.5rem 1rem;
}

/* —— Logo réel sur fond blanc —— */
.brand-logo {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  line-height: 0;
  box-shadow: 0 0 0 1px rgba(18,20,26,0.06);
}
.brand-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.brand-logo--lg {
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
}
.brand-logo--lg img {
  height: clamp(42px, 10vw, 64px);
}
.brand-logo--foot img { height: 34px; }

/* —— Nav claire (logo lisible) —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  min-height: 58px;
}
.nav__links {
  display: none;
  gap: 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.nav__links a:hover { color: var(--brand); }
.nav__right {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.nav__cta { display: none; gap: 0.45rem; align-items: center; }
.nav__cta .btn--ghost {
  color: var(--ink);
  border-color: var(--line);
}
.nav__cta .btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.lang button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.5rem;
  cursor: pointer;
}
.lang button.is-on {
  background: var(--brand);
  color: #fff;
}
.nav__burger {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
body.nav-open { overflow: hidden; }
.nav-drawer {
  display: none;
  position: fixed;
  inset: 58px 0 0;
  z-index: 55;
  background: #fff;
  padding: 1.25rem 1.25rem 2rem;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid var(--line);
}
body.nav-open .nav-drawer { display: flex; }
.nav-drawer a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  padding: 0.85rem 0.25rem;
  border-bottom: 1px solid var(--line);
}
.nav-drawer__actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.nav-drawer__actions .btn--ghost {
  color: var(--ink);
  border-color: var(--line);
}
@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__cta { display: flex; }
  .nav__burger { display: none; }
  .nav-drawer { display: none !important; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  font-weight: 650;
  font-size: 0.92rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 24px rgba(232, 74, 30, 0.35);
}
.btn--primary:hover { background: var(--brand-deep); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}
.btn--ghost:hover { border-color: #fff; }
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--outline:hover { border-color: var(--brand); color: var(--brand); }
.btn--lg { padding: 0.95rem 1.5rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(100dvh, 880px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.06) translateY(-1.5%); }
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,9,12,0.55) 0%, rgba(8,9,12,0.25) 35%, rgba(8,9,12,0.88) 100%),
    linear-gradient(90deg, rgba(8,9,12,0.55) 0%, transparent 55%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 1.5rem, var(--max));
  margin: 0 auto;
  padding: 5.25rem 0 2.75rem;
}
@media (min-width: 640px) {
  .hero__content {
    width: min(100% - 2.5rem, var(--max));
    padding: 6.5rem 0 3.75rem;
  }
}
.hero__lockup {
  margin-bottom: 1.25rem;
  animation: rise 0.85s ease both;
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(1.45rem, 5.5vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  max-width: 16ch;
  margin: 0 0 0.85rem;
  animation: rise 0.85s 0.08s ease both;
}
.hero__lead {
  max-width: 38ch;
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.98rem, 2.8vw, 1.08rem);
  margin: 0 0 1.5rem;
  animation: rise 0.85s 0.14s ease both;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  animation: rise 0.85s 0.2s ease both;
}
.hero__actions .btn { width: 100%; }
@media (min-width: 520px) {
  .hero__actions { flex-direction: row; flex-wrap: wrap; }
  .hero__actions .btn { width: auto; }
}
.hero__bar {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  animation: rise 0.85s 0.28s ease both;
}
.hero__bar strong { color: #fff; font-weight: 650; display: block; font-size: 0.95rem; }
@media (min-width: 700px) {
  .hero__bar { grid-template-columns: repeat(3, 1fr); gap: 0.75rem 2rem; margin-top: 2.25rem; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* —— Sections —— */
.section { padding: 3.5rem 0; }
@media (min-width: 700px) {
  .section { padding: 4.75rem 0; }
}
.section--white { background: var(--white); }
.section--ink {
  background: #0c0d10;
  color: #fff;
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.65rem;
}
.section h2 {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  max-width: 18ch;
}
.lead {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 2.25rem;
  font-size: 1.05rem;
}
.section--ink .lead { color: rgba(255,255,255,0.68); }

/* —— Trust / secteurs —— */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.trust span {
  font-weight: 650;
  color: var(--ink-soft);
}

/* —— Split blocks —— */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; }
  .split--flip > :first-child { order: 2; }
}
.split__media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a1c22;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split__media--portrait { aspect-ratio: 3/4; max-height: 560px; margin-inline: auto; }
.split ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.split li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.35rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.split li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 8px;
  height: 8px;
  background: var(--brand);
}

/* —— Process —— */
.process {
  display: grid;
  gap: 0;
  counter-reset: step;
}
@media (min-width: 800px) {
  .process { grid-template-columns: repeat(4, 1fr); }
}
.step {
  padding: 1.5rem 1.25rem 1.5rem 0;
  border-top: 2px solid var(--ink);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 0.85rem;
  color: var(--brand);
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* —— Modes —— */
.modes {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.mode {
  background: var(--white);
  padding: 1.6rem 1.4rem;
}
.mode__tag {
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}
.mode h3 {
  font-family: var(--font-display);
  margin: 0.4rem 0 0.5rem;
  font-size: 1.2rem;
}
.mode p { margin: 0; color: var(--muted); font-size: 0.95rem; }
@media (min-width: 800px) {
  .modes { grid-template-columns: repeat(3, 1fr); }
}

/* —— Feature grid (no emoji cards) —— */
.feats {
  display: grid;
  gap: 2rem 1.75rem;
}
@media (min-width: 700px) {
  .feats { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .feats { grid-template-columns: repeat(3, 1fr); }
}
.feat h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}
.feat p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.feat__line {
  width: 28px;
  height: 3px;
  background: var(--brand);
  margin-bottom: 0.85rem;
}

/* —— Pricing —— */
.billing {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--white);
  margin-bottom: 1.75rem;
}
.billing button {
  border: 0;
  background: transparent;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  font-weight: 650;
  color: var(--muted);
}
.billing button.is-on {
  background: var(--ink);
  color: #fff;
}
.plans {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
.plan {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.6rem 1.35rem;
  display: flex;
  flex-direction: column;
}
.plan--hot {
  border-color: var(--brand);
  box-shadow: 0 18px 40px rgba(18, 20, 26, 0.08);
  position: relative;
}
.plan__ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
}
.plan h3 {
  font-family: var(--font-display);
  margin: 0.2rem 0 0.35rem;
  font-size: 1.3rem;
}
.plan__who { color: var(--muted); font-size: 0.9rem; margin: 0 0 1.1rem; min-height: 2.7em; }
.plan__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}
.plan__price small {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.plan__meta { font-size: 0.85rem; color: var(--muted); margin: 0.45rem 0 1.1rem; }
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  flex: 1;
}
.plan li {
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 700;
}
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 2.5rem;
  background: var(--white);
}
.compare th, .compare td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.85rem;
  text-align: left;
}
.compare th {
  background: #f3f1ee;
  font-family: var(--font-display);
  font-weight: 700;
}
.compare td:not(:first-child) { text-align: center; }

/* —— FAQ —— */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.faq summary {
  font-family: var(--font-display);
  font-weight: 650;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 1.2rem; }
.faq details[open] summary::after { content: "−"; }
.faq p { color: var(--muted); margin: 0.7rem 0 0.2rem; max-width: 62ch; }

/* —— Posts —— */
.posts {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .posts { grid-template-columns: repeat(3, 1fr); }
}
.post {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.2s ease;
}
.post:hover { transform: translateY(-3px); }
.post__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #1a1c22;
}
.post__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post__body { padding: 1.15rem 1.2rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.post__tag {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}
.post h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0.4rem 0 0.45rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.post p { margin: 0 0 1rem; color: var(--muted); font-size: 0.9rem; flex: 1; }
.post__more { color: var(--brand); font-weight: 650; font-size: 0.88rem; }

/* —— Contact —— */
.contact-wrap {
  display: grid;
  gap: 2rem;
}
@media (min-width: 880px) {
  .contact-wrap { grid-template-columns: 1fr 1fr; align-items: start; }
}
.form {
  display: grid;
  gap: 0.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 650;
}
.form input, .form select, .form textarea {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid rgba(232, 74, 30, 0.3);
  border-color: var(--brand);
}
.contact-aside {
  padding: 0.5rem 0;
}
.contact-aside h3 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
}
.contact-aside p { color: var(--muted); }
.contact-aside dl {
  margin: 1.5rem 0 0;
}
.contact-aside dt {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 1rem;
}
.contact-aside dd { margin: 0.25rem 0 0; }

/* —— Footer —— */
.footer {
  background: #0c0d10;
  color: rgba(255,255,255,0.65);
  padding: 3rem 0 1.75rem;
  font-size: 0.9rem;
}
.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer__logo { height: 40px; width: auto; margin-bottom: 0.85rem; }
.footer strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
}
.footer a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* —— Scénarios produit —— */
.scenario {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  align-items: center;
}
.scenario:last-child { margin-bottom: 0; }
@media (min-width: 880px) {
  .scenario {
    grid-template-columns: 1fr 1.15fr;
    gap: 2.5rem;
  }
  .scenario--flip > :first-child { order: 2; }
}
.scenario__copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  letter-spacing: -0.02em;
  margin: 0.35rem 0 0.65rem;
}
.scenario__copy p { color: var(--muted); margin: 0 0 1rem; }
.scenario__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: sc;
}
.scenario__steps li {
  counter-increment: sc;
  position: relative;
  padding: 0.55rem 0 0.55rem 2.1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.scenario__steps li::before {
  content: counter(sc);
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 750;
  display: grid;
  place-items: center;
}
.scenario__shot {
  background: #0c0d10;
  border-radius: 12px;
  padding: 0.65rem;
  box-shadow: 0 20px 50px rgba(12, 14, 20, 0.18);
}
.scenario__shot img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.scenario__shot--phone {
  max-width: 320px;
  margin-inline: auto;
  padding: 0.85rem;
  border-radius: 28px;
}

/* —— Avis clients —— */
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.reviews-stat {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
  line-height: 1;
}
.reviews-stat small {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 0.35rem;
}
.reviews-featured {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 800px) {
  .reviews-featured { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.15rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.review-card--feat {
  min-height: 100%;
}
.review-card__stars {
  color: #f5a524;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}
.review-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  flex: 1;
}
.review-card__who {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.25rem;
}
.review-card__who img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}
.review-card__who strong {
  display: block;
  font-size: 0.9rem;
  font-family: var(--font-display);
}
.review-card__who span {
  font-size: 0.78rem;
  color: var(--muted);
}
.reviews-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-mini {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.85rem 0.9rem;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.65rem;
  align-items: start;
}
.review-mini img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.review-mini strong {
  display: block;
  font-size: 0.82rem;
  font-family: var(--font-display);
}
.review-mini em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.review-mini p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  grid-column: 1 / -1;
}

/* Blog article */
.article-hero { padding: 3.5rem 0 1.5rem; background: #111214; color: #fff; }
.article-hero .lead { color: rgba(255,255,255,0.7); }
.article { max-width: 720px; margin: 0 auto; padding: 2.25rem 1.25rem 4rem; }
.article h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.article .meta { color: var(--muted); font-size: 0.9rem; }
.article h2 { font-family: var(--font-display); margin-top: 2rem; }
.article a { color: var(--brand); }
