/* Auto-built from Harvis Web Site - 21mayo inline <style> blocks */

/* ===== Home.html ===== */
/* ─────────────────────────────────────────────────────────────────
   HOME — estilos específicos
   ───────────────────────────────────────────────────────────────── */

/* HERO ───────────────────────────────────────────── */
.hero {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(80px, 12vw, 140px);
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero__copy { min-width: 0; }
.hero__portrait {
  position: relative;
  margin: 0;
}
.hero__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: var(--radius-xl);
  display: block;
}
.hero__portrait-tag {
  position: absolute;
  left: 20px; top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hero__portrait-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--harvis-green-neon);
  box-shadow: 0 0 0 4px rgba(106,210,0,0.20);
  animation: hero-portrait-pulse 2s ease-in-out infinite;
}
@keyframes hero-portrait-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(106,210,0,0.20); }
  50%     { box-shadow: 0 0 0 7px rgba(106,210,0,0.10); }
}
.hero__portrait-tag b { font-weight: 600; }
.hero__portrait-tag span:last-child { color: var(--fg-2); font-size: 12px; }

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__portrait { max-width: 460px; margin: 0 auto; }
  .hero__portrait img { aspect-ratio: 1 / 1; object-position: 50% 18%; }
}
.hero__eyebrow { margin-bottom: 28px; }

/* Harvis presentation badge (mini avatar + name + pulse) */
.hero__presenter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px 6px 6px;
  border-radius: var(--radius-pill);
  background: var(--paper-warm);
  border: 1px solid var(--hairline);
  margin-bottom: 36px;
  position: relative;
  transition: border-color var(--t-base);
}
.hero__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--harvis-teal-tint);
}
.hero__avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero__presenter-text { font-size: 14px; line-height: 1.2; display: flex; flex-direction: column; }
.hero__presenter-text b { font-weight: 600; color: var(--ink); }
.hero__presenter-text span { font-size: 12px; color: var(--fg-2); }
.hero__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--harvis-green-neon);
  margin-left: 4px;
  position: relative;
}
.hero__pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  background: var(--harvis-green-neon);
  opacity: 0.35;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 0.4; }
  100% { transform: scale(1.9); opacity: 0; }
}
.hero h1 {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  text-wrap: balance;
  max-width: 16ch;
}
.hero h1 .name { color: var(--harvis-teal); }
.hero__lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--fg-2);
  max-width: 52ch;
  margin: 0 0 48px;
  text-wrap: pretty;
}
.hero__cta {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero__cta .btn { min-width: 220px; }
.hero__micro {
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: 0.01em;
}
.hero__micro span + span::before {
  content: "·";
  margin: 0 10px;
  color: var(--hairline-strong);
}
@media (max-width: 600px) {
  .hero { min-height: auto; }
  .hero__cta { flex-direction: column; gap: 10px; }
  .hero__cta .btn { width: 100%; min-width: 0; }
  .hero__micro span + span::before { display: inline; margin: 0 8px; }
}

/* LOGOS ───────────────────────────────────────────── */
.logos {
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.logos__head {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}
.logos__track-wrap {
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.logos__track {
  display: flex;
  gap: clamp(56px, 9vw, 120px);
  width: max-content;
  animation: marquee 30s linear infinite;
}
.logos__track:hover { animation-play-state: paused; }
.logos__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  color: #9b9ba0;
  white-space: nowrap;
  transition: color var(--t-base);
}
.logos__item:hover { color: var(--fg-1); }
.logos__item--img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.logos__item--img:hover { color: inherit; }
.logos__item__img {
  height: clamp(52px, 7vw, 84px);
  width: auto;
  max-width: min(340px, 55vw);
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1);
  transition: opacity var(--t-base), filter var(--t-base);
}
.logos__item--img:hover .logos__item__img {
  opacity: 1;
  filter: grayscale(0);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* QUÉ ES ──────────────────────────────────────────── */
.what__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.what h2 {
  font-size: clamp(36px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin: 0 0 40px;
  text-wrap: balance;
}
.what__body {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 64ch;
  margin: 0;
}
.what__body strong { color: var(--fg-1); font-weight: 600; }
.what__portrait {
  margin: 0;
  position: relative;
}
.what__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: var(--radius-xl);
  display: block;
}
.what__portrait figcaption {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-1);
  letter-spacing: -0.005em;
}
@media (max-width: 860px) {
  .what__grid { grid-template-columns: 1fr; }
  .what__portrait { order: -1; max-width: 480px; margin: 0 auto; }
}

/* CÓMO FUNCIONA ───────────────────────────────────── */
.how__intro { margin-bottom: clamp(64px, 8vw, 120px); }
.how__intro h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0;
  text-wrap: balance;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(64px, 9vw, 140px) 0;
  border-top: 1px solid var(--hairline);
}
.step:last-of-type { border-bottom: 1px solid var(--hairline); }
.step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 12vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--harvis-teal);
  margin: 0 0 24px;
}
.step__title {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  max-width: 18ch;
  text-wrap: balance;
}
.step__sub {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0;
  max-width: 38ch;
}
.step__visual { width: 100%; }
@media (max-width: 860px) {
  .step { grid-template-columns: 1fr; gap: var(--space-12); }
  .step__visual { order: 2; }
  .step__text   { order: 1; }
}

/* visual: WhatsApp chat mock ─────────────────────── */
.chat {
  background: #e6dfd5;
  border-radius: 22px;
  padding: 18px 14px 16px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 30px 60px -30px rgba(9,151,154,0.20),
    0 10px 30px -20px rgba(0,0,0,0.18);
  max-width: 440px;
  margin: 0 auto;
}
.chat::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(0,0,0,0.04) 0 1.5px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,0.04) 0 1.5px, transparent 2px),
    radial-gradient(circle at 38% 88%, rgba(0,0,0,0.04) 0 1.5px, transparent 2px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.5;
}
.chat__head {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 6px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 14px;
  position: relative;
}
.chat__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-harvis, linear-gradient(135deg, #0bc9cd, #6ad200));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px;
  letter-spacing: -0.02em;
  overflow: hidden;
}
.chat__avatar--photo { background: var(--harvis-teal-tint); }
.chat__avatar--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chat__title { font-weight: 600; font-size: 15px; color: #1a1a1f; }
.chat__sub { font-size: 11px; color: #4a4a52; }
.chat__bubbles { display: flex; flex-direction: column; gap: 8px; position: relative; }
.bub {
  max-width: 78%;
  padding: 8px 12px 10px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}
.bub--me {
  align-self: flex-end;
  background: #dcf8c6;
  border-bottom-right-radius: 4px;
  color: #1a1a1f;
}
.bub--harvis {
  align-self: flex-start;
  background: #ffffff;
  border-bottom-left-radius: 4px;
  color: #1a1a1f;
}
.bub__time { font-size: 10px; color: #8a8a92; float: right; margin: 4px 0 -2px 8px; }
.bub__voice {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #4a4a52;
  padding: 4px 0;
}
.bub__voice .wave {
  display: inline-flex; gap: 2px; align-items: center; height: 18px;
}
.bub__voice .wave i {
  display: inline-block; width: 2px; background: var(--harvis-teal);
  border-radius: 2px;
}
.bub__voice .play {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--harvis-teal);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px;
}
.bub__data {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.bub__data div {
  background: #f5fbf9;
  border-radius: 6px;
  padding: 6px 8px;
}
.bub__data b { display: block; font-size: 14px; color: var(--harvis-blue-deep); font-weight: 700; }
.bub__data span { font-size: 10px; color: #4a4a52; }

/* visual: 4 capas tipográficas ───────────────────── */
.layers {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vw, 14px);
  padding: clamp(20px, 3vw, 32px) 0;
}
.layers__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: clamp(14px, 1.6vw, 20px) 0;
  border-bottom: 1px solid var(--hairline);
}
.layers__row:last-child { border-bottom: 0; }
.layers__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.layers__row:nth-child(1) .layers__name { color: var(--harvis-teal); }
.layers__row:nth-child(2) .layers__name { color: var(--harvis-blue-deep); }
.layers__row:nth-child(3) .layers__name { color: var(--harvis-green); }
.layers__row:nth-child(4) .layers__name { color: var(--ink); }
.layers__plus {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--fg-3);
}
.layers__hint {
  font-size: 13px;
  color: var(--fg-3);
  text-transform: lowercase;
  text-align: right;
  max-width: 16ch;
  line-height: 1.3;
}

/* visual: dashboard ─────────────────────────────── */
.dash {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 28px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 30px 60px -30px rgba(9,151,154,0.18);
}
.dash__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.dash__title { font-size: 14px; font-weight: 600; }
.dash__title small { color: var(--fg-3); font-weight: 400; margin-left: 6px; }
.dash__chip {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--harvis-teal-tint);
  color: var(--harvis-blue-deep);
  letter-spacing: 0.04em;
}
.dash__chip::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--harvis-teal);
  margin-right: 6px;
  vertical-align: middle;
}
.dash__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.dash__metric { padding: 14px 0; border-top: 1px solid var(--hairline); }
.dash__metric .l { font-size: 11px; font-weight: 600; color: var(--fg-3); letter-spacing: 0.08em; text-transform: uppercase; }
.dash__metric .v { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 2.4vw, 34px); letter-spacing: -0.02em; margin-top: 6px; }
.dash__metric .d { font-size: 12px; color: var(--harvis-green); margin-top: 2px; font-weight: 500; }
.dash__chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 84px;
  padding-top: 10px;
  border-top: 1px solid var(--hairline);
}
.dash__chart i {
  flex: 1; display: block; background: var(--ink);
  border-radius: 3px 3px 0 0;
}
.dash__chart i.hi { background: var(--harvis-teal); }

/* BIFURCACIÓN ─────────────────────────────────────── */
.fork {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 28px);
}
.fork__card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  min-height: 520px;
  transition: border-color var(--t-base), transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
  position: relative;
}
.fork__card:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.10);
}
.fork__card--enterprise {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.fork__card--enterprise:hover { border-color: var(--ink); }
.fork__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--harvis-green-neon);
  background: rgba(106, 210, 0, 0.12);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  margin-bottom: 24px;
}
.fork__badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--harvis-green-neon);
}
.fork__eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase; color: var(--harvis-teal);
  margin-bottom: 16px;
}
.fork__card--enterprise .fork__eyebrow { color: var(--harvis-teal-neon); }
.fork__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  max-width: 14ch;
  text-wrap: balance;
}
.fork__list { list-style: none; padding: 0; margin: 0 0 auto; display: flex; flex-direction: column; gap: 12px; }
.fork__list li {
  font-size: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: 14px;
}
.fork__card--enterprise .fork__list li { border-top-color: rgba(255,255,255,0.10); }
.fork__list li:last-child { border-bottom: 1px solid var(--hairline); }
.fork__card--enterprise .fork__list li:last-child { border-bottom-color: rgba(255,255,255,0.10); }
.fork__list b {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-3);
  width: 22px;
}
.fork__card--enterprise .fork__list b { color: var(--fg-3); }
.fork__cta { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.fork__cta .btn { width: 100%; }
.fork__card--enterprise .btn--primary {
  background: var(--harvis-green-neon);
  color: var(--ink);
}
.fork__card--enterprise .btn--primary:hover { background: #7ee010; }
.fork__card--enterprise .tlink {
  color: var(--paper);
  border-bottom-color: rgba(255,255,255,0.30);
}
.fork__card--enterprise .tlink:hover { color: var(--harvis-teal-neon); border-color: var(--harvis-teal-neon); }
@media (max-width: 860px) {
  .fork { grid-template-columns: 1fr; }
  .fork__card { min-height: 0; }
}

/* NÚMEROS ─────────────────────────────────────────── */
.numbers {
  background: var(--paper-warm);
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: clamp(28px, 4vw, 48px);
  margin-top: clamp(48px, 5vw, 72px);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.numbers__item {
  text-align: center;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 5vw, 56px);
  background: var(--paper);
  box-shadow: 0 12px 40px -28px rgba(15, 23, 42, 0.12);
  min-width: 0;
}
.numbers__big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
  white-space: nowrap;
}
.numbers__plus { color: var(--harvis-teal); margin-right: 0.04em; }
.numbers__label {
  font-size: clamp(13px, 1.35vw, 15px);
  color: var(--fg-2);
  margin: 18px auto 0;
  line-height: 1.45;
  max-width: min(34ch, 100%);
  text-wrap: balance;
}
.numbers__foot {
  margin-top: clamp(48px, 5vw, 72px);
  font-size: 13px;
  color: var(--fg-3);
  text-align: center;
}
@media (max-width: 860px) {
  .numbers__grid {
    column-gap: clamp(20px, 4.5vw, 40px);
    row-gap: clamp(22px, 4vw, 36px);
  }
}
@media (max-width: 480px) {
  .numbers__big {
    font-size: clamp(36px, 9.5vw, 68px);
    white-space: normal;
  }
  .numbers__item {
    padding: clamp(20px, 4vw, 32px) clamp(16px, 5vw, 24px);
  }
}

/* DIFERENCIADORES ─────────────────────────────────── */
.diff__head h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.diff__list { display: flex; flex-direction: column; margin-top: clamp(48px, 6vw, 80px); }
.diff__item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--hairline);
  align-items: start;
}
.diff__item:last-child { border-bottom: 1px solid var(--hairline); }
.diff__item h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.diff__item p {
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--fg-2);
  line-height: 1.5;
  margin: 0;
  max-width: 52ch;
}
@media (max-width: 760px) {
  .diff__item { grid-template-columns: 1fr; gap: 16px; }
}

/* CLOSING ─────────────────────────────────────────── */
.closing {
  padding-top: clamp(120px, 16vw, 200px);
  padding-bottom: clamp(120px, 16vw, 200px);
  text-align: center;
}
.closing h2 {
  font-size: clamp(44px, 9vw, 132px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 auto 56px;
  max-width: 16ch;
  text-wrap: balance;
}
.closing .btn { min-width: 240px; }
.closing__alt {
  display: block;
  margin-top: 36px;
  font-size: 15px;
  color: var(--fg-2);
}
.closing__alt a {
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  font-weight: 500;
  transition: color var(--t-base), border-color var(--t-base);
}
.closing__alt a:hover { color: var(--harvis-teal); border-color: var(--harvis-teal); }

/* ===== Precios.html ===== */
/* ─────────────────────────────────────────────────────────────────
   PRECIOS — estilos específicos. Hereda el sistema.
   ───────────────────────────────────────────────────────────────── */

/* HERO CORTO ────────────────────────────────────── */
.hero-pr {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(40px, 6vw, 72px);
  text-align: center;
}
.hero-pr .eyebrow { display: block; margin-bottom: 24px; }
.hero-pr h1 {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 auto 24px;
  max-width: 18ch;
  text-wrap: balance;
}
.hero-pr h1 .accent { color: var(--harvis-green); }
.hero-pr p {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 56ch;
  margin: 0 auto;
  text-wrap: pretty;
}

/* TOGGLES ────────────────────────────────────────── */
.toggles {
  padding-bottom: clamp(40px, 5vw, 56px);
}
.toggles__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}
.tg {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.tg__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-3);
}
.tg__seg {
  display: inline-flex;
  background: var(--paper-warm);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  padding: 4px;
  position: relative;
}
.tg__opt {
  position: relative;
  z-index: 1;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-2);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color var(--t-base);
  white-space: nowrap;
}
.tg__opt.is-on { color: var(--ink); font-weight: 600; }
.tg__pill {
  position: absolute;
  z-index: 0;
  top: 4px; bottom: 4px;
  background: var(--paper);
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: left var(--t-base) var(--ease-out), width var(--t-base) var(--ease-out);
}
.tg__badge {
  display: inline-block;
  margin-left: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--harvis-green);
  background: var(--harvis-green-tint);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

/* GRILLA DE PLANES ───────────────────────────────── */
.plans {
  padding-top: 0;
  padding-bottom: clamp(80px, 10vw, 140px);
}
.plans__groups {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(20px, 2.4vw, 28px);
  margin-bottom: 20px;
  align-items: end;
}
.plans__groups .eyebrow {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hairline);
  display: block;
}
.plans__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 2.4vw, 28px);
  align-items: stretch;
}
.plan {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3vw, 40px);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base) var(--ease-out);
}
.plan:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-2px);
}
.plan--enterprise {
  border-color: var(--ink);
  border-width: 1.5px;
  position: relative;
}
.plan--enterprise:hover { border-color: var(--ink); }
.plan__badge {
  position: absolute;
  top: -12px; left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 1;
}
.plan__badge::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--harvis-green-neon);
}
.plan__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1;
}
.plan__tag {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.4;
  margin: 0 0 32px;
  max-width: 32ch;
}
.plan__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 60px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}
.plan__price .currency {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--fg-3);
  letter-spacing: -0.02em;
}
.plan__price-unit {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-3);
  margin-left: 8px;
  letter-spacing: 0;
}
.plan__price-detail {
  font-size: 13px;
  color: var(--fg-2);
  margin: 8px 0 0;
  line-height: 1.4;
}
.plan__price-detail b { font-weight: 600; color: var(--fg-1); }
.plan__divider {
  height: 1px;
  background: var(--hairline);
  margin: 28px 0 24px;
}
.plan__include-head {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}
.plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plan__list li {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--fg-1);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.plan__list li::before {
  content: "";
  display: inline-block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--harvis-green-tint);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
}
.plan__list li {
  position: relative;
}
.plan__list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 7px; height: 4px;
  border-left: 1.5px solid var(--harvis-green);
  border-bottom: 1.5px solid var(--harvis-green);
  transform: rotate(-45deg);
}
.plan .btn { width: 100%; }
.plan__alt {
  font-size: 13px;
  margin-top: 14px;
  text-align: center;
  color: var(--fg-2);
}
.plan__alt a {
  color: var(--ink);
  border-bottom: 1px solid var(--hairline-strong);
  padding-bottom: 1px;
  font-weight: 500;
  transition: color var(--t-base);
}
.plan__alt a:hover { color: var(--harvis-green); border-color: var(--harvis-green); }
@media (max-width: 1040px) {
  .plans__grid { grid-template-columns: 1fr; gap: 20px; }
  .plans__groups { display: none; }
  .plan { padding: 32px; }
}

/* SECTORES ─────────────────────────────────────── */
.sectors {
  background: var(--paper-warm);
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.sectors__head { margin-bottom: clamp(48px, 6vw, 80px); text-align: center; }
.sectors__head h2 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 auto 20px;
  max-width: 18ch;
  text-wrap: balance;
}
.sectors__head h2 b { color: var(--harvis-green); font-weight: 800; }
.sectors__head p {
  font-size: 17px;
  color: var(--fg-2);
  margin: 0 auto;
  max-width: 48ch;
}
.sectors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.sector {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: var(--paper);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base), border-color var(--t-base);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  border: 2px solid rgba(45, 18, 8, 0.35);
}
.sector__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.sector:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -30px rgba(9,151,154,0.20);
}
.sector::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}
.sector__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.58;
  transition: opacity var(--t-base) var(--ease-out);
}
.sector:hover .sector__bg {
  opacity: 0.52;
}
.sector__content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.sector__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 8px;
}
.sector__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.sector__count {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 3;
  letter-spacing: -0.01em;
}

/* Borde de card alineado con la paleta de cada sector (sectores) */
.sector--cafe { border-color: rgba(91, 38, 20, 0.75); }
.sector--banano { border-color: rgba(110, 83, 10, 0.55); }
.sector--aguacate { border-color: rgba(44, 62, 21, 0.72); }
.sector--cacao { border-color: rgba(62, 32, 20, 0.75); }
.sector--arandano { border-color: rgba(42, 31, 94, 0.72); }
.sector--ganaderia { border-color: rgba(74, 54, 34, 0.7); }

/* sector palette — each crop a distinct natural hue */
.sector--cafe   .sector__bg { background:
  radial-gradient(circle at 30% 20%, #7a3a18 0%, transparent 60%),
  radial-gradient(circle at 70% 80%, #4a1f10 0%, transparent 70%),
  linear-gradient(180deg, #5b2614, #2d1208); }
.sector--banano .sector__bg { background:
  radial-gradient(circle at 60% 30%, #c19014 0%, transparent 65%),
  linear-gradient(180deg, #f0c83d 0%, #6e530a 100%); }
.sector--banano .sector__name,
.sector--banano .sector__sub { color: #1a1208; }
.sector--banano .sector__count { color: #1a1208; background: rgba(255,255,255,0.45); }
.sector--banano::before { background: linear-gradient(180deg, transparent 60%, rgba(60,40,8,0.55) 100%); }
.sector--aguacate .sector__bg { background:
  radial-gradient(circle at 40% 30%, #4a6b1a 0%, transparent 60%),
  linear-gradient(180deg, #2c3e15 0%, #1a2810 100%); }
.sector--cacao .sector__bg { background:
  radial-gradient(circle at 60% 30%, #6a3a1c 0%, transparent 65%),
  linear-gradient(180deg, #3e2014 0%, #1a0c07 100%); }
.sector--arandano .sector__bg { background:
  radial-gradient(circle at 30% 30%, #4a3c8c 0%, transparent 55%),
  linear-gradient(180deg, #2a1f5e 0%, #15103a 100%); }
.sector--ganaderia .sector__bg { background:
  radial-gradient(circle at 50% 20%, #c5a87a 0%, transparent 60%),
  linear-gradient(180deg, #8e6f4a 0%, #4a3622 100%); }

.sectors__foot {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
  font-size: 14px;
  color: var(--fg-2);
}
.sectors__foot a {
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  font-weight: 500;
  padding-bottom: 2px;
  transition: color var(--t-base), border-color var(--t-base);
}
.sectors__foot a:hover { color: var(--harvis-green); border-color: var(--harvis-green); }
@media (max-width: 760px) {
  .sectors__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .sectors__grid { grid-template-columns: 1fr; }
  .sector { aspect-ratio: 16 / 10; }
}

/* COMPARACIÓN DETALLADA ────────────────────────── */
.compare__details {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare__summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(20px, 2.4vw, 28px) clamp(24px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -0.015em;
  transition: background var(--t-base);
}
.compare__summary::-webkit-details-marker { display: none; }
.compare__summary:hover { background: var(--paper-warm); }
.compare__icon {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.compare__icon::before, .compare__icon::after {
  content: ""; position: absolute; background: currentColor;
  top: 50%; left: 50%; transition: transform var(--t-base);
}
.compare__icon::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.compare__icon::after  { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
details[open] .compare__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.compare__body {
  border-top: 1px solid var(--hairline);
  overflow-x: auto;
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  min-width: 720px;
}
.compare__table th, .compare__table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  vertical-align: middle;
}
.compare__table thead th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper-warm);
}
.compare__table thead th:not(:first-child) { text-align: center; }
.compare__table tbody td:not(:first-child) { text-align: center; color: var(--fg-1); font-weight: 500; }
.compare__table tbody td:first-child { color: var(--fg-1); }
.compare__table tbody tr { border-top: 1px solid var(--hairline); }
.compare__cat td {
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--harvis-green) !important;
  padding-top: 28px !important;
  padding-bottom: 12px !important;
  text-align: left !important;
}
.compare__cat td:not(:first-child) { color: transparent !important; }
.compare__yes { color: var(--harvis-green) !important; font-weight: 700 !important; }
.compare__no { color: var(--fg-3) !important; font-weight: 400 !important; }

/* ESCALONES ENTERPRISE ─────────────────────────── */
.escalones { background: var(--paper); }
.escalones__head { margin-bottom: clamp(40px, 5vw, 64px); }
.escalones__head h2 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 24px;
  max-width: 22ch;
  text-wrap: balance;
}
.escalones__head h2 b { color: var(--harvis-green); font-weight: 800; }
.escalones__head p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--fg-2);
  margin: 0;
  max-width: 56ch;
  line-height: 1.5;
}
.escalones__wrap {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  background: var(--paper);
}
.escalones__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.escalones__table thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--hairline);
  background: var(--paper-warm);
  white-space: nowrap;
}
.escalones__table tbody td {
  padding: 22px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--hairline);
}
.escalones__table tbody tr:last-child td { border-bottom: 0; }
.escalones__table tbody tr:hover td { background: var(--paper-warm); }
.escalones__table .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
}
.escalones__table .users {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.escalones__notes {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.45;
}
.escalones__notes li {
  list-style: none;
  padding-left: 16px;
  position: relative;
}
.escalones__notes li::before {
  content: "·";
  position: absolute;
  left: 4px;
}
.escalones__cta { margin-top: clamp(32px, 4vw, 48px); }

/* FAQ ─────────────────────────────────────────── */
.faq-pr { background: var(--paper); }
.faq-pr__head { margin-bottom: clamp(40px, 5vw, 64px); }
.faq-pr__head h2 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.faq-pr__list { max-width: 800px; }
.faq-pr__item { border-top: 1px solid var(--hairline); }
.faq-pr__item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-pr__q {
  width: 100%;
  text-align: left;
  padding: clamp(22px, 2.4vw, 28px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-base);
}
.faq-pr__q::-webkit-details-marker { display: none; }
.faq-pr__q:hover { color: var(--harvis-green); }
.faq-pr__icon {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-pr__icon::before, .faq-pr__icon::after {
  content: ""; position: absolute; background: currentColor;
  top: 50%; left: 50%; transition: transform var(--t-base);
}
.faq-pr__icon::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-pr__icon::after  { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq-pr__item[open] .faq-pr__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-pr__a {
  padding: 0 0 clamp(22px, 2.4vw, 28px);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 70ch;
}

/* CIERRE ──────────────────────────────────────── */
.close-pr {
  text-align: center;
  padding-top: clamp(120px, 14vw, 180px);
  padding-bottom: clamp(120px, 14vw, 180px);
}
.close-pr h2 {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 auto 48px;
  max-width: 16ch;
  text-wrap: balance;
}
.close-pr__cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.close-pr__cta .btn { min-width: 220px; }
@media (max-width: 600px) {
  .close-pr__cta { flex-direction: column; width: 100%; gap: 10px; }
  .close-pr__cta .btn { width: 100%; min-width: 0; }
}

/* ===== Para-personas.html ===== */
/* ─────────────────────────────────────────────────────────────────
   PARA PERSONAS — estilos específicos
   Hereda nav, footer, botones, tokens. Harvis (su rostro) es central.
   ───────────────────────────────────────────────────────────────── */

/* HERO ───────────────────────────────────────────── */
.hero-pp {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.hero-pp__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero-pp__eyebrow { margin-bottom: 24px; }
.hero-pp h1 {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-pp h1 .accent { color: var(--harvis-teal); }
.hero-pp__lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 48ch;
  margin: 0 0 44px;
}
.hero-pp__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-pp__cta .btn { min-width: 220px; }
.hero-pp__micro {
  font-size: 13px;
  color: var(--fg-3);
}

/* portrait */
.hero-pp__portrait {
  position: relative;
  margin: 0;
}
.hero-pp__portrait > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: var(--radius-xl);
  display: block;
}
.hero-pp__name-tag {
  position: absolute;
  left: 20px; top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px 8px 8px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hero-pp__name-tag::before {
  content: "";
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--harvis-green-neon);
  background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), transparent 60%);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(106,210,0,0.18);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(106,210,0,0.18); }
  50%     { box-shadow: 0 0 0 6px rgba(106,210,0,0.10); }
}
.hero-pp__name-tag b { font-weight: 600; }
.hero-pp__name-tag span { color: var(--fg-2); font-size: 12px; margin-left: 4px; }

@media (max-width: 860px) {
  .hero-pp__grid { grid-template-columns: 1fr; }
  .hero-pp__portrait { order: -1; max-width: 460px; margin: 0 auto; }
  .hero-pp__portrait > img { aspect-ratio: 1 / 1; object-position: 50% 22%; }
}
@media (max-width: 600px) {
  .hero-pp__cta { flex-direction: column; gap: 10px; }
  .hero-pp__cta .btn { width: 100%; min-width: 0; }
}

/* CONVERSACIÓN — multi-paso ───────────────────── */
.convo { background: var(--paper-warm); }
.convo__head { margin-bottom: clamp(56px, 7vw, 96px); }
.convo__head h2 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 18ch;
  text-wrap: balance;
}
.convo__head p {
  font-size: clamp(16px, 1.35vw, 19px);
  color: var(--fg-2);
  line-height: 1.5;
  margin: 0;
  max-width: 56ch;
}
.convo-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
  border-top: 1px solid var(--hairline);
}
.convo-step:last-of-type { border-bottom: 1px solid var(--hairline); }
.convo-step--reverse .convo-step__visual { order: -1; }
.convo-step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--harvis-teal);
  margin: 0 0 18px;
}
.convo-step__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  max-width: 16ch;
  text-wrap: balance;
}
.convo-step__sub {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0 0 20px;
  max-width: 44ch;
}
.convo-step__micro {
  font-size: 13px;
  color: var(--fg-3);
  margin: 0;
  max-width: 44ch;
  line-height: 1.5;
}
.convo-step__micro b { color: var(--fg-1); font-weight: 600; }

/* Form preview bubble — for step 02 */
.form-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  margin-top: 4px;
}
.form-card__head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--harvis-teal);
  margin: 0 0 8px;
}
.form-card__title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #1a1a1f;
}
.form-card__fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.form-card__fields li {
  font-size: 13px;
  color: #4a4a52;
  padding: 8px 10px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  background: #f7f7f4;
}
.form-card__fields li b { color: #1a1a1f; font-weight: 500; }
.form-card__btn {
  margin-top: 12px;
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--harvis-teal);
  background: rgba(9,151,154,0.08);
  padding: 9px;
  border-radius: 8px;
}

/* CTA buttons in step copy */
.convo-step__cta {
  margin-top: 22px;
}

@media (max-width: 860px) {
  .convo-step { grid-template-columns: 1fr; }
  .convo-step__visual { order: 2 !important; }
  .convo-step__text   { order: 1 !important; }
}

/* expanded chat */
.chat-lg {
  background: #e6dfd5;
  border-radius: 28px;
  padding: 22px 18px 20px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 30px 60px -30px rgba(9,151,154,0.20),
    0 10px 30px -20px rgba(0,0,0,0.18);
  max-width: 480px;
  margin: 0 auto;
}
.chat-lg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(0,0,0,0.04) 0 1.5px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,0.04) 0 1.5px, transparent 2px),
    radial-gradient(circle at 38% 88%, rgba(0,0,0,0.04) 0 1.5px, transparent 2px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.5;
}
.chat-lg__head {
  display: flex; align-items: center; gap: 12px;
  padding: 4px 4px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 14px;
  position: relative;
}
.chat-lg__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--harvis-teal-tint);
  flex-shrink: 0;
}
.chat-lg__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chat-lg__title { font-weight: 600; font-size: 16px; color: #1a1a1f; }
.chat-lg__sub { font-size: 11.5px; color: #4a4a52; }
.chat-lg__sub::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--harvis-green-neon);
  margin-right: 5px; vertical-align: 1px;
}
.chat-lg__bubbles { display: flex; flex-direction: column; gap: 10px; position: relative; }
.b {
  max-width: 82%;
  padding: 10px 14px 11px;
  border-radius: 16px;
  font-size: 14.5px;
  line-height: 1.42;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  word-wrap: break-word;
}
.b--me {
  align-self: flex-end;
  background: #dcf8c6;
  border-bottom-right-radius: 4px;
  color: #1a1a1f;
}
.b--h {
  align-self: flex-start;
  background: #ffffff;
  border-bottom-left-radius: 4px;
  color: #1a1a1f;
}
.b__t { font-size: 10px; color: #8a8a92; float: right; margin: 4px 0 -2px 8px; }
.b__t::after { content: " ✓✓"; color: #3697ef; }
.b--me .b__t::after { color: #3697ef; }
.b--h .b__t::after { content: ""; }
.b strong { font-weight: 600; }

@media (max-width: 860px) {
  .convo__copy { text-align: left; }
}

/* CASOS DE USO ─────────────────────────────────── */
.cases__head { margin-bottom: clamp(48px, 6vw, 80px); }
.cases__head h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin: 0;
  text-wrap: balance;
}
.cases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.case {
  padding: clamp(36px, 5vw, 56px) clamp(0px, 3vw, 32px) clamp(36px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.case:nth-child(odd) { padding-right: clamp(20px, 4vw, 48px); }
.case:nth-child(even) {
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: 0;
  border-left: 1px solid var(--hairline);
}
.case__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--harvis-teal);
  margin: 0 0 16px;
}
.case h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 16ch;
  text-wrap: balance;
}
.case p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0;
  max-width: 44ch;
}
@media (max-width: 760px) {
  .cases__grid { grid-template-columns: 1fr; }
  .case, .case:nth-child(even) {
    padding-left: 0; padding-right: 0; border-left: 0;
  }
}

/* CULTIVOS ─────────────────────────────────────── */
.crops { background: var(--paper-warm); }
.crops__head { margin-bottom: clamp(48px, 5vw, 64px); }
.crops__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
}
.crops__col {
  display: flex;
  flex-direction: column;
}
.crops__coltitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--harvis-green);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--ink);
}
.crops__coltitle--pec { color: var(--harvis-teal); }
.crops__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-left: 1px solid var(--hairline);
}
@media (max-width: 760px) {
  .crops__columns { grid-template-columns: 1fr; gap: 32px; }
}
.crops__item {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: -0.015em;
  padding: 22px 24px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: transparent;
  transition: background var(--t-base), color var(--t-base);
  cursor: default;
}
.crops__item:hover { background: var(--paper); color: var(--harvis-teal); }
.crops__cta { margin-top: clamp(32px, 4vw, 48px); }

/* TESTIMONIO ───────────────────────────────────── */
.quote__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.quote__photo {
  margin: 0;
  position: relative;
}
.quote__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: var(--radius-xl);
  display: block;
}
.quote__text blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  text-wrap: balance;
  position: relative;
}
.quote__text blockquote::before {
  content: "\201C";
  font-size: 1.4em;
  color: var(--harvis-teal);
  margin-right: 6px;
  font-weight: 700;
}
.quote__attr {
  font-size: 14px;
  line-height: 1.4;
  color: var(--fg-2);
}
.quote__attr b { display: block; color: var(--fg-1); font-weight: 600; font-size: 16px; margin-bottom: 2px; }
@media (max-width: 860px) {
  .quote__grid { grid-template-columns: 1fr; }
  .quote__photo { max-width: 420px; }
}

/* PRECIOS ──────────────────────────────────────── */
.pricing__head { margin-bottom: clamp(48px, 6vw, 80px); }
.pricing__head h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  max-width: 14ch;
  text-wrap: balance;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 28px);
}
.price-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 48px);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.price-card:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.10);
}
.price-card--featured {
  border-color: var(--ink);
  border-width: 1.5px;
}
.price-card__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 8px;
}
.price-card__name .pill {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  background: var(--harvis-green-tint);
  color: var(--harvis-green);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-transform: none;
  font-weight: 600;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 14px 0 24px;
}
.price-card__price small {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--fg-2);
  margin-left: 6px;
  letter-spacing: 0;
}
.price-card__lede {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.5;
  margin: 0 0 28px;
  max-width: 36ch;
}
.price-card__list { list-style: none; padding: 0; margin: 0 0 32px; flex: 1; }
.price-card__list li {
  font-size: 15px;
  padding: 12px 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--fg-1);
}
.price-card__list li:last-child { border-bottom: 1px solid var(--hairline); }
.price-card__list li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--harvis-teal);
  margin-top: 8px;
  flex-shrink: 0;
}
.price-card .btn { width: 100%; }
.price-card__alt {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
}
@media (max-width: 760px) {
  .pricing__grid { grid-template-columns: 1fr; }
}

/* FAQ ──────────────────────────────────────────── */
.faq__head { margin-bottom: clamp(40px, 5vw, 64px); }
.faq__head h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  max-width: 14ch;
  text-wrap: balance;
}
.faq__list { max-width: 760px; }
.faq__item {
  border-top: 1px solid var(--hairline);
}
.faq__item:last-child { border-bottom: 1px solid var(--hairline); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: clamp(22px, 2.4vw, 28px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  transition: color var(--t-base);
}
.faq__q:hover { color: var(--harvis-teal); }
.faq__icon {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transition: transform var(--t-base) var(--ease-out);
}
.faq__icon::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a {
  padding: 0 0 clamp(22px, 2.4vw, 28px);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 64ch;
}
.faq__item summary { list-style: none; cursor: pointer; }
.faq__item summary::-webkit-details-marker { display: none; }

/* CLOSING ──────────────────────────────────────── */
.closing-pp {
  padding-top: clamp(120px, 16vw, 200px);
  padding-bottom: clamp(120px, 16vw, 200px);
  text-align: center;
}
.closing-pp h2 {
  font-size: clamp(44px, 9vw, 132px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 auto 56px;
  max-width: 14ch;
  text-wrap: balance;
}
.closing-pp .btn { min-width: 280px; }
.closing-pp__alt {
  display: block;
  margin-top: 36px;
  font-size: 15px;
  color: var(--fg-2);
}
.closing-pp__alt a {
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  font-weight: 500;
  transition: color var(--t-base), border-color var(--t-base);
}
.closing-pp__alt a:hover { color: var(--harvis-teal); border-color: var(--harvis-teal); }
.case-card:hover { border-color: var(--hairline-strong) !important; transform: translateY(-2px); }
      @media (max-width: 880px) { .cases-real__grid { grid-template-columns: 1fr 1fr !important; } }
      @media (max-width: 560px) { .cases-real__grid { grid-template-columns: 1fr !important; } }

/* ===== Para-empresas.html ===== */
/* ─────────────────────────────────────────────────────────────────
   PARA EMPRESAS — estilos específicos
   Hereda nav, footer, tokens, botones. Tono corporativo, profesional.
   ───────────────────────────────────────────────────────────────── */

/* HERO ───────────────────────────────────────────── */
.hero-en {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.hero-en__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-en h1 {
  font-size: clamp(40px, 6.8vw, 92px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-en h1 .accent { color: var(--harvis-teal); }
.hero-en__lede {
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 52ch;
  margin: 0 0 40px;
  text-wrap: pretty;
}
.hero-en__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-en__cta .btn { min-width: 220px; }
.hero-en__micro {
  font-size: 13px;
  color: var(--fg-3);
}
.hero-en__micro span + span::before {
  content: "·"; margin: 0 8px; color: var(--hairline-strong);
}

/* hero dashboard preview */
.live {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  background: var(--paper);
  padding: clamp(20px, 2vw, 28px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 40px 80px -40px rgba(9,151,154,0.22);
  position: relative;
}
.live__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.live__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-1);
}
.live__title small { color: var(--fg-3); font-weight: 400; margin-left: 6px; }
.live__pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--harvis-blue-deep);
  background: var(--harvis-teal-tint);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}
.live__pill::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--harvis-teal-neon);
  margin-right: 6px; vertical-align: middle;
  animation: pulse-dot-h 1.8s ease-in-out infinite;
}
@keyframes pulse-dot-h {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.4; }
}
.live__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.live__metric {
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
}
.live__metric .l {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 600;
}
.live__metric .v {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(26px, 2.6vw, 36px); letter-spacing: -0.02em;
  margin-top: 6px;
}
.live__metric .d { font-size: 12px; color: var(--harvis-green); margin-top: 2px; font-weight: 500; }
.live__metric .d--neutral { color: var(--fg-3); font-weight: 400; }
.live__feed {
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
}
.live__feed h6 {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-3); margin: 0 0 12px; font-weight: 600;
}
.live__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  font-size: 13px;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.live__row:first-child { border-top: 0; }
.live__row b { font-weight: 600; color: var(--fg-1); }
.live__row span { color: var(--fg-2); margin-left: 6px; font-weight: 400; }
.live__row time { color: var(--fg-3); font-size: 11px; }

@media (max-width: 920px) {
  .hero-en__grid { grid-template-columns: 1fr; }
  .live { max-width: 520px; }
}
@media (max-width: 600px) {
  .hero-en__cta { flex-direction: column; gap: 10px; }
  .hero-en__cta .btn { width: 100%; min-width: 0; }
}

/* LOGOS GRID ─────────────────────────────────────── */
.cli {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(60px, 8vw, 120px) 0;
}
.cli__head {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}
.cli__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.cli__item {
  background: var(--paper);
  padding: clamp(22px, 3vw, 36px) clamp(14px, 2.2vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background var(--t-base) var(--ease-out);
  min-height: clamp(112px, 14vw, 152px);
}
.cli__logo {
  display: block;
  width: auto;
  max-width: min(100%, 280px);
  height: clamp(52px, 7vw, 96px);
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(1);
  transition: opacity var(--t-base) var(--ease-out), filter var(--t-base) var(--ease-out);
}
.cli__item:hover { background: var(--paper-warm); }
.cli__item:hover .cli__logo {
  opacity: 1;
  filter: grayscale(0);
}
@media (max-width: 760px) {
  .cli__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .cli__grid { grid-template-columns: repeat(2, 1fr); }
}

/* PROBLEMA ───────────────────────────────────────── */
.prob__head { margin-bottom: clamp(48px, 6vw, 80px); }
.prob__head h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.prob__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.prob__item {
  padding: clamp(36px, 4vw, 56px) clamp(0px, 3vw, 32px) clamp(36px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--hairline);
}
.prob__item:nth-child(even) {
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: 0;
  border-left: 1px solid var(--hairline);
}
.prob__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--danger, #c8392f);
  margin: 0 0 16px;
}
.prob__item p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg-1);
  max-width: 22ch;
  text-wrap: balance;
}
@media (max-width: 760px) {
  .prob__list { grid-template-columns: 1fr; }
  .prob__item, .prob__item:nth-child(even) {
    padding-left: 0; padding-right: 0; border-left: 0;
  }
}

/* SOLUCIÓN ─────────────────────────────────────── */
.sol__intro { margin-bottom: clamp(64px, 8vw, 120px); }
.sol__intro h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0;
  text-wrap: balance;
}
.sol__step {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(64px, 9vw, 120px) 0;
  border-top: 1px solid var(--hairline);
}
.sol__step:last-of-type { border-bottom: 1px solid var(--hairline); }
.sol__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 12vw, 144px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--harvis-teal);
  margin: 0 0 24px;
}
.sol__title {
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  max-width: 18ch;
  text-wrap: balance;
}
.sol__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0;
  max-width: 42ch;
}
@media (max-width: 860px) {
  .sol__step { grid-template-columns: 1fr; gap: 48px; }
  .sol__visual { order: 2; }
  .sol__text   { order: 1; }
}

/* visual: branded chat (cliente-marca) */
.bchat {
  background: #e6dfd5;
  border-radius: 22px;
  padding: 18px 14px 16px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 30px 60px -30px rgba(9,151,154,0.18),
    0 10px 30px -20px rgba(0,0,0,0.18);
  max-width: 440px;
  margin: 0 auto;
}
.bchat::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(0,0,0,0.04) 0 1.5px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,0.04) 0 1.5px, transparent 2px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.5;
}
.bchat__head {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 6px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 14px;
  position: relative;
}
.bchat__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #6f3815;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.bchat__title { font-weight: 600; font-size: 15px; color: #1a1a1f; }
.bchat__sub { font-size: 11px; color: #4a4a52; }
.bchat__bubbles { display: flex; flex-direction: column; gap: 8px; }
.bchat__bubbles .b {
  max-width: 80%;
  padding: 8px 12px 10px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  word-wrap: break-word;
}
.bchat__bubbles .b--me {
  align-self: flex-end; background: #dcf8c6;
  border-bottom-right-radius: 4px; color: #1a1a1f;
}
.bchat__bubbles .b--h {
  align-self: flex-start; background: #fff;
  border-bottom-left-radius: 4px; color: #1a1a1f;
}
.bchat__bubbles .b__t { font-size: 10px; color: #8a8a92; float: right; margin: 4px 0 -2px 8px; }
.bchat__tag {
  position: absolute;
  top: -10px; right: -10px;
  font-size: 10.5px; font-weight: 600;
  background: var(--ink); color: var(--paper);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  z-index: 1;
}

/* visual: fleet dashboard (lista de productores) */
.fleet {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(9,151,154,0.16);
}
.fleet__head {
  padding: 18px 24px;
  border-bottom: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--paper-warm);
}
.fleet__head h6 {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
}
.fleet__head h6 small { color: var(--fg-3); font-weight: 400; margin-left: 8px; }
.fleet__head .filter {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 600;
}
.fleet__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--hairline);
}
.fleet__row:last-child { border-bottom: 0; }
.fleet__who { display: flex; align-items: center; gap: 12px; }
.fleet__dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.fleet__dot--ok { background: var(--harvis-green-neon); }
.fleet__dot--warn { background: #f7b73f; }
.fleet__dot--alert { background: var(--danger); }
.fleet__name { font-weight: 600; font-size: 14px; }
.fleet__loc { color: var(--fg-3); font-size: 12px; margin-left: 4px; }
.fleet__activity { font-size: 12px; color: var(--fg-2); white-space: nowrap; }
.fleet__time { font-size: 11px; color: var(--fg-3); white-space: nowrap; }

/* visual: load balance bar */
.load {
  display: flex; flex-direction: column;
  gap: 28px;
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--radius-lg);
  background: var(--paper-warm);
  border: 1px solid var(--hairline);
}
.load__title {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 600; margin: 0;
}
.load__bar {
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--ink);
  overflow: hidden;
  display: flex;
}
.load__seg {
  height: 100%;
  display: flex; align-items: center;
  padding: 0 18px;
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.load__seg--harvis { background: var(--harvis-teal); width: 92%; }
.load__seg--tec { background: var(--ink); width: 8%; }
.load__legend { display: flex; gap: 28px; flex-wrap: wrap; }
.load__legend > div { font-size: 13px; color: var(--fg-2); }
.load__legend b { display: block; color: var(--fg-1); font-size: 22px; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 2px; }
.load__swatch { display: inline-block; width: 10px; height: 10px; border-radius: 2px; margin-right: 8px; vertical-align: middle; }

/* ROI CALCULATOR ─────────────────────────────── */
.roi {
  background: var(--ink);
  color: var(--paper);
}
.roi__head { margin-bottom: clamp(40px, 5vw, 64px); }
.roi__head .eyebrow { color: var(--harvis-teal-neon); }
.roi__head h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  color: var(--paper);
  max-width: 22ch;
  text-wrap: balance;
}
.roi__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,0.7);
  margin: 24px 0 0;
  max-width: 56ch;
  line-height: 1.5;
}
.roi__shell {
  background: #1c1c20;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255,255,255,0.08);
}
.roi__slider-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  margin-bottom: 24px;
}
.roi__slider-row label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.roi__value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--paper);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.roi__count {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1.5px dashed rgba(255,255,255,0.25);
  padding: 0 4px 4px;
  min-width: 0;
  text-align: right;
  width: 4.5ch;
  outline: none;
  caret-color: var(--harvis-green-neon);
  font-variant-numeric: tabular-nums;
  transition: border-color var(--t-base);
  -moz-appearance: textfield;
  appearance: textfield;
}
.roi__count::-webkit-outer-spin-button,
.roi__count::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.roi__count:focus,
.roi__count:hover {
  border-bottom-color: var(--harvis-green-neon);
}
.roi__value small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-left: 8px;
  letter-spacing: 0;
}
.roi__slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  outline: none;
  margin: 24px 0 12px;
  position: relative;
}
.roi__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--harvis-green-neon);
  cursor: grab;
  box-shadow: 0 0 0 8px rgba(106,210,0,0.15);
  transition: transform var(--t-fast);
}
.roi__slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.1); }
.roi__slider::-moz-range-thumb {
  width: 24px; height: 24px; border: 0;
  border-radius: 50%; background: var(--harvis-green-neon);
  cursor: grab; box-shadow: 0 0 0 8px rgba(106,210,0,0.15);
}
.roi__slider-marks {
  display: flex; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.roi__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.roi__col {
  padding: clamp(20px, 2.4vw, 32px);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.roi__col--good {
  background: var(--harvis-blue-deep);
  border-color: transparent;
  position: relative;
}
.roi__col--good::before {
  content: "Con Harvis";
  position: absolute;
  top: -10px; left: 24px;
  background: var(--harvis-green-neon);
  color: var(--ink);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.roi__col h6 {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 600; margin: 0;
}
.roi__col .desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  margin: 0;
}
.roi__col .big {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--paper);
}
.roi__col .big small {
  font-family: var(--font-body); font-weight: 400;
  font-size: 13px; color: rgba(255,255,255,0.55); margin-left: 6px;
}
.roi__savings {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  padding: clamp(20px, 3vw, 32px);
  margin-top: 24px;
  border-radius: var(--radius-lg);
  background: var(--harvis-green-neon);
  color: var(--ink);
}
.roi__savings .label {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700;
}
.roi__savings .amount {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}
.roi__savings .pct {
  font-size: 15px;
  font-weight: 600;
  background: var(--ink);
  color: var(--harvis-green-neon);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.roi__cta {
  margin-top: 32px;
}
.roi__cta .btn--primary {
  background: var(--harvis-green-neon);
  color: var(--ink);
}
.roi__cta .btn--primary:hover { background: #7ee010; }
@media (max-width: 760px) {
  .roi__compare { grid-template-columns: 1fr; }
}

/* CAPACIDADES ───────────────────────────────── */
.caps__head { margin-bottom: clamp(48px, 6vw, 80px); }
.caps__head h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.caps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.caps__col h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--harvis-teal);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
.caps__list { list-style: none; padding: 0; margin: 0; }
.caps__list li {
  font-size: clamp(15px, 1.2vw, 17px);
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--fg-1);
  display: flex; align-items: flex-start; gap: 14px;
  line-height: 1.4;
}
.caps__list li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--harvis-green-tint);
  background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), transparent 50%);
  border: 1.5px solid var(--harvis-green-neon);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
}
.caps__list li::after {
  content: "";
  position: absolute;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--harvis-green);
  border-bottom: 1.5px solid var(--harvis-green);
  transform: rotate(-45deg);
  margin-left: 5px;
  margin-top: 9px;
}
@media (max-width: 760px) {
  .caps__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* PRECIOS TABLA ───────────────────────────────── */
.epric { background: var(--paper-warm); }
.epric__head { margin-bottom: clamp(40px, 5vw, 64px); }
.epric__head h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.epric__table-wrap {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.epric__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  min-width: 720px;
}
.epric__table thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--hairline);
  background: var(--paper-warm);
  white-space: nowrap;
}
.epric__table tbody td {
  padding: 22px 20px;
  font-size: 15px;
  color: var(--fg-1);
  border-bottom: 1px solid var(--hairline);
  vertical-align: middle;
}
.epric__table tbody tr:last-child td { border-bottom: 0; }
.epric__table tbody tr:hover td { background: var(--paper-warm); }
.epric__table .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
}
.epric__table .users {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.epric__notes {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.45;
}
.epric__notes li {
  list-style: none;
  padding-left: 16px;
  position: relative;
}
.epric__notes li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--fg-3);
}
@media (max-width: 760px) {
  .epric__valgrid { grid-template-columns: 1fr !important; }
}

/* RESPALDOS ────────────────────────────────── */
.respaldo__head { margin-bottom: clamp(40px, 5vw, 56px); }
.respaldo__head h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
.respaldo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(32px, 3.5vw, 48px) clamp(36px, 4vw, 56px);
  align-items: center;
}
.respaldo__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: clamp(88px, 11vw, 120px);
  padding: clamp(14px, 2vw, 22px) clamp(10px, 1.5vw, 18px);
  transition: opacity var(--t-base) var(--ease-out);
}
.respaldo__logo {
  display: block;
  width: auto;
  max-width: min(100%, 280px);
  height: clamp(56px, 8vw, 112px);
  aspect-ratio: 1;
  object-fit: contain;
  opacity: 0.78;
  filter: grayscale(1);
  transition: opacity var(--t-base) var(--ease-out), filter var(--t-base) var(--ease-out);
}
.respaldo__item:hover .respaldo__logo {
  opacity: 1;
  filter: grayscale(0);
}

/* CASO DE ÉXITO ────────────────────────────── */
.case-en {
  background: var(--paper-warm);
}
.case-en__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.case-en__photo { margin: 0; }
.case-en__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: var(--radius-xl);
  display: block;
}
.case-en blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  text-wrap: balance;
  position: relative;
}
.case-en blockquote::before {
  content: "\201C";
  font-size: 1.4em;
  color: var(--harvis-teal);
  margin-right: 6px;
  font-weight: 700;
  line-height: 0;
}
.case-en__attr { font-size: 14px; line-height: 1.4; color: var(--fg-2); margin-bottom: 40px; }
.case-en__attr b { display: block; color: var(--fg-1); font-weight: 600; font-size: 16px; margin-bottom: 2px; }
.case-en__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.case-en__metric .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}
.case-en__metric .v .accent { color: var(--harvis-teal); }
.case-en__metric .l {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.35;
  max-width: 18ch;
}
@media (max-width: 860px) {
  .case-en__grid { grid-template-columns: 1fr; }
  .case-en__photo { max-width: 420px; }
}

/* CLOSING ──────────────────────────────────── */
.closing-en {
  padding-top: clamp(120px, 16vw, 200px);
  padding-bottom: clamp(120px, 16vw, 200px);
  text-align: center;
}
.closing-en h2 {
  font-size: clamp(44px, 9vw, 132px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 auto 56px;
  max-width: 14ch;
  text-wrap: balance;
}
.closing-en .btn { min-width: 240px; }
.closing-en__alt {
  display: block;
  margin-top: 36px;
  font-size: 15px;
  color: var(--fg-2);
}
.closing-en__alt a {
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  font-weight: 500;
  transition: color var(--t-base), border-color var(--t-base);
}
.closing-en__alt a:hover { color: var(--harvis-teal); border-color: var(--harvis-teal); }
@media (max-width: 880px) {
        .pillar { grid-template-columns: 1fr !important; }
        .pillar .pillar__visual { order: 2 !important; position: static !important; }
        .pillar .pillar__text   { order: 1 !important; }
      }
.icp-card:hover { border-color: var(--hairline-strong) !important; }
      @media (max-width: 760px) {
        .icp-cases__grid { grid-template-columns: 1fr !important; }
      }

/* HOME · CTA documentación (la home no carga blog.css → .nl-form no aplica) */
.home-doc-cta-section {
  background: var(--paper-warm);
  border-top: 1px solid var(--hairline);
}
.home-doc-cta {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 36px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--hairline);
  background: var(--paper);
  box-shadow: 0 16px 48px -32px rgba(15, 23, 42, 0.14);
}
.home-doc-cta__eyebrow {
  margin: 0 0 12px;
}
.home-doc-cta__title {
  margin: 0 0 14px;
}
.home-doc-cta__lede {
  margin: 0 auto 22px;
  max-width: 46ch;
  text-wrap: pretty;
  color: var(--fg-2);
}
.home-doc-cta__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: stretch;
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}
.home-doc-cta__input-wrap {
  position: relative;
  min-width: 0;
}
.home-doc-cta__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fg-3);
  pointer-events: none;
}
.home-doc-cta__input {
  width: 100%;
  height: 56px;
  padding: 0 18px 0 48px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--hairline-strong);
  background: var(--paper-warm);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.home-doc-cta__input::placeholder {
  color: var(--fg-3);
}
.home-doc-cta__input:hover {
  border-color: var(--hairline-strong);
}
.home-doc-cta__input:focus {
  border-color: var(--harvis-teal);
  box-shadow: 0 0 0 3px rgba(9, 151, 154, 0.2);
}
.home-doc-cta__submit {
  height: 56px;
  min-width: 120px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  background: var(--harvis-green-neon);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background var(--t-base) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.home-doc-cta__submit:hover {
  background: #7ee010;
}
.home-doc-cta__submit:active {
  transform: scale(0.98);
}
.home-doc-cta__submit:focus-visible {
  outline: 2px solid var(--harvis-teal);
  outline-offset: 2px;
}
@media (max-width: 520px) {
  .home-doc-cta__form {
    grid-template-columns: 1fr;
  }
  .home-doc-cta__submit {
    width: 100%;
    min-width: 0;
  }
}
