/* ═══════════════════════════════════════════════════════════════════
   SELLYA · analisis.css
   delonghi-magnifica-s.html — análisis editorial individual.

   Secciones:
   1. rev-hero (imagen + galería + sidebar)
   2. rev-method
   3. rev-specs
   4. rev-analysis (secciones + tips)
   5. rev-section--compare (vs grid)
   6. rev-final (veredicto + score)
   7. FAQ + page-cta
   ═══════════════════════════════════════════════════════════════════ */

/* ─── 1 · HERO ────────────────────────────────────────────────────── */
.rev-hero {
  padding: clamp(36px, 5vw, 60px) 0 clamp(50px, 7vw, 90px);
  border-bottom: 1px solid var(--c-rule);
}
.rev-hero__inner {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 var(--gut);
}
.rev-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 70px);
  align-items: start;
}

.rev-hero__main {
  padding-top: 4px;
  animation: fadeInLeft .7s .1s var(--ease-out) both;
}
.rev-hero__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-amber-deep);
  font-weight: 600;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.rev-hero__label::before {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
}
.rev-hero__h1 {
  font-family: var(--ff-serif);
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin-bottom: 22px;
  color: var(--c-ink);
}
.rev-hero__h1 em {
  font-style: italic;
  color: var(--c-amber-deep);
  font-weight: 400;
}
.rev-hero__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--c-ink-soft);
  max-width: 60ch;
  margin-bottom: 30px;
}

/* ─── Imagen principal + galería ──────────────────────────────────── */
.rev-hero__img-wrap {
  background: linear-gradient(160deg, var(--c-cream), var(--c-paper-deep));
  border: 1px solid var(--c-rule);
  border-radius: var(--br-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t-base), border-color var(--t-base);
  animation: fadeInUp .7s .2s var(--ease-out) both;
}
.rev-hero__img-wrap:hover {
  box-shadow: var(--sh-amber);
  border-color: var(--c-amber);
}
.rev-hero__img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--c-amber-tint), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: 0;
  pointer-events: none;
}
.rev-hero__img-wrap:hover::before { opacity: 1; }
.rev-hero__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-amber), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: 0;
  pointer-events: none;
}
.rev-hero__img-wrap:hover::after { opacity: 1; }

.rev-hero__img-box {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  background:
    radial-gradient(ellipse 65% 50% at 50% 100%, rgba(26,15,8,.10), transparent 70%),
    var(--c-paper);
  border: 1px solid var(--c-rule-soft);
  border-radius: var(--br-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
}
.rev-hero__img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  display: block;
  object-fit: contain;
  filter: var(--shadow-product);
  transition: transform var(--t-slow), filter var(--t-slow);
}
.rev-hero__img-wrap:hover .rev-hero__img {
  transform: scale(1.06) translateY(-6px);
  filter: var(--shadow-product-hover);
}

/* Galería de 4 miniaturas */
.rev-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.rev-gallery__thumb {
  aspect-ratio: 1;
  background:
    radial-gradient(ellipse 65% 50% at 50% 100%, rgba(26,15,8,.06), transparent 70%),
    var(--c-paper);
  border: 1px solid var(--c-rule-soft);
  border-radius: var(--br-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
  transition:
    border-color var(--t-fast),
    transform var(--t-fast),
    box-shadow var(--t-fast);
  overflow: hidden;
}
.rev-gallery__thumb:hover {
  border-color: var(--c-amber);
  transform: translateY(-4px);
  box-shadow: var(--sh-sm);
}
.rev-gallery__thumb img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(26,15,8,.08));
  transition: transform var(--t-fast);
}
.rev-gallery__thumb:hover img { transform: scale(1.08); }
.rev-gallery__thumb.is-active {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 2px var(--c-amber);
}

/* ─── Sidebar del hero ────────────────────────────────────────────── */
.rev-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInUp .7s .3s var(--ease-out) both;
}

.rev-score {
  background: var(--c-cream);
  border: 1px solid var(--c-rule);
  border-radius: var(--br-md);
  padding: 20px 22px;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.rev-score:hover {
  border-color: var(--c-amber-soft);
  box-shadow: var(--sh-sm);
}
.rev-score__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-amber-deep);
  margin-bottom: 10px;
}
.rev-score__summary {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--c-ink);
  letter-spacing: -.005em;
}

.rev-sidebar__buy {
  background: linear-gradient(180deg, var(--c-paper), var(--c-paper-deep));
  border: 1px solid var(--c-rule);
  border-radius: var(--br-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.rev-sidebar__buy:hover {
  box-shadow: var(--sh-md);
  border-color: var(--c-amber-soft);
}
.rev-sidebar__note {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--c-ink-mute);
  text-align: center;
}
.rev-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--c-amber);
  color: var(--c-ink);
  padding: 14px 22px;
  border-radius: var(--br-xs);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--ff-sans);
  transition:
    background var(--t-fast),
    transform var(--t-fast),
    box-shadow var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
}
.rev-cta:hover {
  background: var(--c-amber-deep);
  color: var(--c-paper);
  transform: translateY(-2px);
  box-shadow: var(--sh-amber);
}
.rev-cta svg {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor;
  stroke-width: 2;
  transition: transform var(--t-fast);
}
.rev-cta:hover svg { transform: translateX(3px); }

.rev-sidebar__for {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: var(--br-md);
  padding: 22px 24px;
  transition: border-color var(--t-base);
}
.rev-sidebar__for:hover { border-color: var(--c-amber-soft); }
.rev-sidebar__for-title {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-pro);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rev-sidebar__for-title::before { content: '+'; font-size: 14px; font-weight: 700; }
.rev-sidebar__for-title--not { color: var(--c-con); margin-top: 16px; }
.rev-sidebar__for-title--not::before { content: '−'; }
.rev-sidebar__for ul { display: flex; flex-direction: column; gap: 8px; }
.rev-sidebar__for li {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--c-ink-soft);
  padding-left: 18px;
  position: relative;
}
.rev-sidebar__for li::before {
  content: '';
  position: absolute;
  left: 0; top: .65em;
  width: 10px; height: 1px;
  background: var(--c-amber);
}

/* ─── 2 · METHOD ──────────────────────────────────────────────────── */
.rev-method {
  padding: clamp(50px, 7vw, 80px) 0;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-rule);
}
.rev-method__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gut);
}
.rev-method__title {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-amber-deep);
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.rev-method__title::before {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
}
.rev-method__text {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--c-ink);
  font-style: italic;
  letter-spacing: -.005em;
}
.rev-method__text strong {
  font-style: normal;
  color: var(--c-amber-deep);
  font-weight: 400;
}

/* ─── 3 · SPECS ───────────────────────────────────────────────────── */
.rev-specs {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-rule);
}
.rev-specs__inner {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 var(--gut);
}
.rev-specs__title {
  font-family: var(--ff-serif);
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-ink);
  color: var(--c-ink);
}
.rev-specs__title em { font-style: italic; color: var(--c-amber-deep); }
.rev-specs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--c-rule);
  border: 1px solid var(--c-rule);
  border-radius: var(--br-sm);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.rev-spec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  background: var(--c-paper);
  transition: background var(--t-fast), transform var(--t-fast);
  cursor: default;
}
.rev-spec-item:hover { background: var(--c-cream); }
.rev-spec__label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-ink-mute);
}
.rev-spec__value {
  font-family: var(--ff-serif);
  font-size: 19px;
  letter-spacing: -.005em;
  color: var(--c-ink);
}

/* ─── 4 · ANALYSIS BODY ───────────────────────────────────────────── */
.rev-analysis {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--c-paper);
}
.rev-analysis__inner {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 var(--gut);
}

.rev-section {
  padding: 36px 0;
  border-top: 1px solid var(--c-rule);
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.rev-section:first-child { padding-top: 0; border-top: none; }
.rev-section::after { content: ''; display: table; clear: both; }

.rev-section__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-rule-soft);
}
.rev-section__title {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 0;
  flex: 1;
  min-width: 280px;
  color: var(--c-ink);
}
.rev-section__title em {
  font-style: italic;
  color: var(--c-amber-deep);
  font-weight: 400;
}
.rev-section__verdict-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: var(--br-xs);
  background: var(--c-amber);
  color: var(--c-ink);
  white-space: nowrap;
  font-weight: 500;
  box-shadow: var(--sh-xs);
}

/* Imagen dentro de cada sección — float derecha, texto fluye a la izquierda */
.rev-section__img-wrap {
  float: right;
  width: min(260px, 38%);
  aspect-ratio: 1;
  margin: 0 0 20px 32px;
  background:
    radial-gradient(ellipse 60% 45% at 50% 100%, rgba(26,15,8,.08), transparent 70%),
    linear-gradient(160deg, var(--c-cream), var(--c-paper-deep));
  border: 1px solid var(--c-rule);
  border-radius: var(--br-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  position: relative;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.rev-section__img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--c-amber-tint), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: 0;
}
.rev-section__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-amber), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: 0;
}
.rev-section__img-wrap:hover {
  border-color: var(--c-amber);
  box-shadow: var(--sh-amber);
}
.rev-section__img-wrap:hover::before { opacity: 1; }
.rev-section__img-wrap:hover::after  { opacity: 1; }
.rev-section__img {
  position: relative;
  z-index: 1;
  max-width: 90%; max-height: 90%;
  width: auto; height: auto;
  display: block;
  object-fit: contain;
  filter: var(--shadow-product);
  transition: transform var(--t-slow), filter var(--t-slow);
}
.rev-section__img-wrap:hover .rev-section__img {
  transform: scale(1.06) translateY(-6px);
  filter: var(--shadow-product-hover);
}

.rev-section__text {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--c-ink-soft);
}
.rev-section__text + .rev-section__text { margin-top: 14px; }
.rev-section__text strong { color: var(--c-ink); font-weight: 600; }
.rev-section__text em { font-style: italic; }

/* Tip / warn box */
.rev-section__tip {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--c-cream);
  border-left: 3px solid var(--c-amber);
  border-radius: 0 var(--br-sm) var(--br-sm) 0;
  margin: 22px 0;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--c-ink);
  transition: background var(--t-fast);
}
.rev-section__tip:hover { background: var(--c-cream-deep); }
.rev-section__tip > span:first-child {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-amber);
  color: var(--c-paper);
  display: grid;
  place-items: center;
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
}
.rev-section__tip strong {
  font-style: normal;
  color: var(--c-amber-deep);
  font-weight: 400;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 6px;
}
.tip-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-amber);
  color: var(--c-paper);
  display: grid;
  place-items: center;
}
.tip-icon svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tip-icon--warn { background: var(--c-brick); }

/* ─── 5 · COMPARE VS ──────────────────────────────────────────────── */
.rev-section--compare .rev-vs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.rev-vs__col {
  padding: 24px 22px;
  background: var(--c-cream);
  border: 1px solid var(--c-rule);
  border-radius: var(--br-sm);
  position: relative;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.rev-vs__col:hover {
  border-color: var(--c-amber);
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.rev-vs__col--winner {
  background: var(--c-paper);
  border-color: var(--c-ink);
  border-width: 2px;
  box-shadow: var(--sh-sm);
}
.rev-vs__col--winner:hover {
  border-color: var(--c-amber);
  box-shadow: var(--sh-amber);
}
.rev-vs__badge {
  position: absolute;
  top: -10px; left: 18px;
  background: var(--c-amber);
  color: var(--c-ink);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--br-xs);
  font-weight: 500;
  box-shadow: var(--sh-xs);
}
.rev-vs__name {
  font-family: var(--ff-serif);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 12px;
  color: var(--c-ink);
  transition: color var(--t-fast);
}
.rev-vs__col:hover .rev-vs__name { color: var(--c-amber-deep); }
.rev-vs__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.rev-vs__list li {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--c-ink-soft);
  padding-left: 16px;
  position: relative;
}
.rev-vs__list li::before { content: '·'; position: absolute; left: 0; color: var(--c-amber); font-weight: 700; }
.rev-vs__list li.pro { color: var(--c-ink); }
.rev-vs__list li.pro::before { content: '+'; color: var(--c-pro); font-weight: 700; }
.rev-vs__list li.con::before { content: '−'; color: var(--c-con); font-weight: 700; }
.rev-vs__note {
  font-size: 12px;
  font-family: var(--ff-mono);
  color: var(--c-ink-mute);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.rev-vs__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-amber-deep);
  margin-top: 16px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: gap var(--t-fast);
}
.rev-vs__link:hover { gap: 12px; }
.rev-vs__link svg {
  width: 12px; height: 12px;
  fill: none; stroke: currentColor;
  stroke-width: 2;
  transition: transform var(--t-fast);
}
.rev-vs__link:hover svg { transform: translateX(3px); }

/* ─── 6 · FINAL VERDICT ───────────────────────────────────────────── */
.rev-final {
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--c-paper);
  border-top: 1px solid var(--c-rule);
  margin-top: 40px;
}
.rev-final__inner {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.rev-final__left { padding-top: 4px; }
.rev-final__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-amber-deep);
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.rev-final__label::before {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
}
.rev-final__title {
  font-family: var(--ff-serif);
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 22px;
  max-width: 16ch;
  color: var(--c-ink);
}
.rev-final__title em {
  font-style: italic;
  color: var(--c-amber-deep);
  font-weight: 400;
}
.rev-final__text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-ink-soft);
}
.rev-final__text + .rev-final__text { margin-top: 14px; }
.rev-final__text strong { color: var(--c-ink); font-weight: 600; }

.rev-final__right {
  background: linear-gradient(180deg, var(--c-cream), var(--c-paper-deep));
  border: 1px solid var(--c-rule);
  border-radius: var(--br-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  box-shadow: var(--sh-md);
  position: sticky;
  top: calc(var(--header-h) + 24px);
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.rev-final__right:hover {
  box-shadow: var(--sh-amber);
  border-color: var(--c-amber-soft);
}
.rev-final__score { text-align: center; }
.rev-final__score p:first-child {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.1;
  color: var(--c-amber-deep);
  letter-spacing: -.02em;
  margin-bottom: 12px;
  font-weight: 400;
}
.rev-final__score-note {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-ink-mute);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-rule);
}
.rev-final__note {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--c-ink-mute);
  text-align: center;
}

/* ─── 7 · FAQ ──────────────────────────────────────────────────────── */
.faq {
  padding: clamp(80px, 11vw, 130px) 0;
  background: var(--c-paper);
  border-top: 1px solid var(--c-rule);
}
.faq__inner {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq__left {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}
.faq__left > .section-label { display: block; margin-bottom: 18px; }
.faq__left > .section-title {
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.faq__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-amber-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap var(--t-fast);
}
.faq__cta:hover { gap: 14px; }
.faq__cta svg {
  width: 12px; height: 12px;
  fill: none; stroke: currentColor;
  stroke-width: 2;
  transition: transform var(--t-fast);
}
.faq__cta:hover svg { transform: translateX(3px); }
.faq__list { border-top: 1px solid var(--c-ink); }

/* ─── PAGE CTA ────────────────────────────────────────────────────── */
.page-cta {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: clamp(70px, 9vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.page-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 32px;
  background: var(--c-amber);
  transform: translateX(-50%);
}
.page-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(200,120,48,.06), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(200,120,48,.04), transparent 60%);
  pointer-events: none;
}
.page-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gut);
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-cta__title {
  font-family: var(--ff-serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--c-paper);
  margin-bottom: 28px;
}
.page-cta__title em {
  font-style: italic;
  color: var(--c-amber);
  font-weight: 400;
}
.page-cta .btn-primary { background: var(--c-amber); color: var(--c-ink); }
.page-cta .btn-primary:hover { background: var(--c-paper); color: var(--c-ink); }
.page-cta .btn-ghost { color: var(--c-ink-faint); border-color: var(--c-ink-faint); }
.page-cta .btn-ghost:hover { background: var(--c-paper); color: var(--c-ink); border-color: var(--c-paper); }

/* ─── SPECS GRID · STAGGER ───────────────────────────────────────── */
.rev-specs__grid.stagger-children > .rev-spec-item:nth-child(1) { transition-delay: 0s; }
.rev-specs__grid.stagger-children > .rev-spec-item:nth-child(2) { transition-delay: .08s; }
.rev-specs__grid.stagger-children > .rev-spec-item:nth-child(3) { transition-delay: .16s; }
.rev-specs__grid.stagger-children > .rev-spec-item:nth-child(4) { transition-delay: .24s; }
.rev-specs__grid.stagger-children > .rev-spec-item:nth-child(5) { transition-delay: .32s; }
.rev-specs__grid.stagger-children > .rev-spec-item:nth-child(6) { transition-delay: .42s; }
.rev-specs__grid.stagger-children > .rev-spec-item:nth-child(7) { transition-delay: .52s; }
.rev-specs__grid.stagger-children > .rev-spec-item:nth-child(8) { transition-delay: .64s; }

/* ─── VS GRID · STAGGER ──────────────────────────────────────────── */
.rev-vs__grid.stagger-children > .rev-vs__col:nth-child(1) { transition-delay: 0s; }
.rev-vs__grid.stagger-children > .rev-vs__col:nth-child(2) { transition-delay: .14s; }
.rev-vs__grid.stagger-children > .rev-vs__col:nth-child(3) { transition-delay: .28s; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rev-hero__grid { grid-template-columns: 1fr; }
  .rev-hero__img-wrap { max-width: 540px; margin: 0 auto; }
  .rev-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .rev-sidebar > * { flex: 1 1 280px; }
  .rev-final__inner { grid-template-columns: 1fr; gap: 32px; }
  .rev-final__right { position: static; }
  .faq__inner { grid-template-columns: 1fr; gap: 36px; }
  .faq__left { position: static; }
}

@media (max-width: 640px) {
  .rev-section--compare .rev-vs__grid { grid-template-columns: 1fr; }
  .rev-section__img-wrap {
    float: none;
    clear: both;
    width: 100%;
    aspect-ratio: 4/3;
    margin: 0 0 20px 0;
    padding: 16px;
  }
  .rev-gallery { grid-template-columns: repeat(3, 1fr); }
  .rev-gallery__thumb:nth-child(4) { display: none; }
  .rev-hero__img-wrap { padding: 20px; }
  .rev-vs__col:hover { transform: none; }
}
