/* Vertecia homepage V3 — obra editorial + precisión técnica */
:root {
  --v3-paper: #f3f0e8;
  --v3-white: #fffdf8;
  --v3-ink: #111512;
  --v3-muted: #626a63;
  --v3-orange: #f05a28;
  --v3-orange-dark: #d94818;
  --v3-line: #d8d5ce;
  --v3-blue: #164d9b;
  --v3-container: min(1280px, calc(100vw - 48px));
  --v3-ease: cubic-bezier(.2,.75,.2,1);
}

html { background: var(--v3-ink); scroll-padding-top: 92px; }

.conversion-home {
  background: var(--v3-paper);
  color: var(--v3-ink);
  font-family: "IBM Plex Sans", Arial, sans-serif;
}

.conversion-home main h1,
.conversion-home main h2,
.conversion-home main h3,
.conversion-home main p,
.conversion-home main figure { margin: 0; }

.conversion-home .reading-progress span { background: var(--v3-orange); }

.conversion-home :focus-visible {
  outline: 3px solid var(--v3-orange);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--v3-white);
}

.v3-container {
  width: var(--v3-container);
  margin: 0 auto;
}

.v3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--v3-orange-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .09em;
}

.v3-eyebrow::before {
  width: 7px;
  height: 7px;
  background: var(--v3-orange);
  content: "";
}

/* Flat, physical header */
.conversion-home .v-header {
  top: 0;
  left: 0;
  grid-template-columns: 190px 1fr auto;
  width: 100%;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  transform: none;
  border: 0;
  border-bottom: 1px solid rgba(17,21,18,.12);
  border-radius: 0;
  background: rgba(243,240,232,.94);
  box-shadow: none;
  color: var(--v3-ink);
  backdrop-filter: blur(18px) saturate(120%);
}

.conversion-home .v-header.is-scrolled {
  top: 0;
  border-color: rgba(17,21,18,.18);
  background: rgba(255,253,248,.97);
  box-shadow: 0 10px 30px rgba(17,21,18,.06);
}

.conversion-home .v-brand { width: 150px; }

.conversion-home .v-nav a {
  color: rgba(17,21,18,.64);
  font-size: 13px;
}

.conversion-home .v-nav a:hover,
.conversion-home .v-nav a.active { color: var(--v3-ink); }

.conversion-home .v-nav a::after { background: var(--v3-orange); }

.conversion-home .v-header-cta {
  min-height: 46px;
  padding: 0 17px 0 20px;
  border-radius: 4px;
  background: var(--v3-orange);
  color: #fff;
  font-size: 12px;
  box-shadow: none;
}

.conversion-home .v-header-cta:hover {
  background: var(--v3-orange-dark);
  box-shadow: 0 10px 24px rgba(240,90,40,.18);
}

.conversion-home .v-menu { border-color: rgba(17,21,18,.18); }
.conversion-home .v-menu > span:not(.sr-only) { background: var(--v3-ink); }

/* Hero */
.v3-hero {
  padding: 154px 0 92px;
  overflow: hidden;
  background: var(--v3-paper);
}

.v3-hero-copy {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.v3-hero h1 {
  max-width: 980px;
  margin: 24px auto 22px;
  font-family: "IBM Plex Sans Condensed", Arial, sans-serif;
  font-size: clamp(62px, 6.2vw, 84px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .96;
}

.v3-hero h1 em {
  color: var(--v3-orange);
  font-style: normal;
}

.v3-hero-copy > p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--v3-muted);
  font-size: 18px;
  line-height: 1.55;
}

.v3-hero-copy > small {
  display: block;
  margin-top: 16px;
  color: var(--v3-muted);
  font-size: 11px;
}

.v3-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.v3-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s var(--v3-ease), background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.v3-button:hover { transform: translateY(-2px); }

.v3-button-primary {
  background: var(--v3-orange);
  color: #fff;
}

.v3-button-primary:hover {
  background: var(--v3-orange-dark);
  box-shadow: 0 12px 26px rgba(240,90,40,.18);
}

.v3-button-quiet {
  border-color: rgba(17,21,18,.22);
  background: rgba(255,253,248,.56);
  color: var(--v3-ink);
}

.v3-button-quiet:hover { border-color: var(--v3-ink); background: var(--v3-white); }

.v3-hero-visual {
  position: relative;
  height: clamp(560px, 53vw, 700px);
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid rgba(17,21,18,.18);
  border-radius: 7px;
  background: #d8d1c7;
  box-shadow: 0 30px 65px rgba(17,21,18,.13);
  isolation: isolate;
}

.v3-hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition: transform .9s var(--v3-ease), filter .5s ease;
}

.v3-hero-visual:hover > img { transform: scale(1.018); }

.v3-hero-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(17,21,18,.55), transparent 36%, rgba(17,21,18,.02));
  content: "";
}

.v3-image-label {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  background: rgba(255,253,248,.9);
  color: var(--v3-ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: .07em;
  backdrop-filter: blur(10px);
}

.v3-hotspot {
  position: absolute;
  z-index: 4;
  top: var(--y);
  left: var(--x);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  transform: translate(-50%,-50%);
  border: 0;
  background: transparent;
  color: var(--v3-ink);
  cursor: pointer;
}

.v3-hotspot > i {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--v3-orange);
  box-shadow: 0 3px 12px rgba(17,21,18,.28);
}

.v3-hotspot > i::after {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(240,90,40,.7);
  border-radius: 50%;
  content: "";
  animation: v3-pulse 2s ease-out infinite;
}

.v3-hotspot.is-active > i::after { animation: none; border-width: 2px; opacity: 1; }

.v3-hotspot > span {
  padding: 7px 9px;
  border-radius: 3px;
  background: rgba(255,253,248,.93);
  box-shadow: 0 4px 14px rgba(17,21,18,.15);
  font-size: 10px;
  font-weight: 700;
}

.v3-hotspot.is-active > span { background: var(--v3-orange); color: #fff; }

@keyframes v3-pulse {
  0% { transform: scale(.72); opacity: 1; }
  75%,100% { transform: scale(1.45); opacity: 0; }
}

.v3-inspector-note {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 22px;
  width: min(410px, calc(100% - 44px));
  padding: 21px 23px;
  border-left: 4px solid var(--v3-orange);
  border-radius: 3px;
  background: rgba(17,21,18,.9);
  color: #fff;
  backdrop-filter: blur(14px);
}

.v3-inspector-note small {
  color: #ff9a75;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: .08em;
}

.v3-inspector-note strong {
  display: block;
  margin-top: 8px;
  font-family: "IBM Plex Sans Condensed", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.05;
}

.v3-inspector-note p {
  margin-top: 7px;
  color: rgba(255,255,255,.68);
  font-size: 11px;
  line-height: 1.5;
}

.v3-inspector-note.is-refreshing { animation: v3-note .36s var(--v3-ease); }

@keyframes v3-note {
  0% { transform: translateY(8px); opacity: .45; }
  100% { transform: translateY(0); opacity: 1; }
}

.v3-method {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 16px;
  border: 1px solid var(--v3-line);
  background: var(--v3-white);
}

.v3-method > div {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 3px 12px;
  align-items: center;
  min-height: 92px;
  padding: 18px 24px;
  border-right: 1px solid var(--v3-line);
}

.v3-method > div:last-child { border-right: 0; }

.v3-method span {
  grid-row: 1 / span 2;
  color: var(--v3-orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.v3-method strong {
  font-family: "IBM Plex Sans Condensed", Arial, sans-serif;
  font-size: 20px;
}

.v3-method small { color: var(--v3-muted); font-size: 11px; }

/* Shared section heading */
.v3-section-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.v3-section-heading h2,
.v3-diagnostic h2,
.v3-final-cta h2 {
  margin-top: 18px;
  font-family: "IBM Plex Sans Condensed", Arial, sans-serif;
  font-size: clamp(46px, 4.7vw, 64px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
}

.v3-section-heading > p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--v3-muted);
  font-size: 16px;
  line-height: 1.55;
}

/* Problem picker */
.v3-problem {
  padding: 105px 0;
  border-top: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
  background: var(--v3-white);
  scroll-margin-top: 92px;
}

.v3-problem-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 8px;
  max-width: 1050px;
  margin: 48px auto 0;
}

.v3-problem-tabs button {
  min-height: 58px;
  padding: 10px 13px;
  border: 1px solid var(--v3-line);
  border-radius: 4px;
  background: var(--v3-white);
  color: var(--v3-ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: transform .25s var(--v3-ease), border-color .25s ease, background .25s ease, color .25s ease;
}

.v3-problem-tabs button:hover { transform: translateY(-2px); border-color: var(--v3-orange); }

.v3-problem-tabs button.is-selected {
  border-color: var(--v3-orange);
  background: var(--v3-orange);
  color: #fff;
}

.v3-problem-result {
  display: grid;
  grid-template-columns: 1.25fr .85fr auto;
  gap: 50px;
  align-items: center;
  max-width: 1120px;
  min-height: 225px;
  margin: 18px auto 0;
  padding: 36px 38px;
  border-radius: 5px;
  background: var(--v3-ink);
  color: #fff;
}

.v3-problem-result.is-refreshing { animation: v3-result .36s var(--v3-ease); }

@keyframes v3-result {
  0% { transform: translateY(7px); opacity: .62; }
  100% { transform: translateY(0); opacity: 1; }
}

.v3-result-copy > span,
.v3-result-output > small {
  color: #ff9a75;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: .08em;
}

.v3-result-copy h3 {
  margin-top: 10px;
  font-family: "IBM Plex Sans Condensed", Arial, sans-serif;
  font-size: clamp(30px,3vw,42px);
  letter-spacing: -.035em;
  line-height: 1;
}

.v3-result-copy p {
  max-width: 530px;
  margin-top: 11px;
  color: rgba(255,255,255,.64);
  font-size: 12px;
  line-height: 1.55;
}

.v3-result-output ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.v3-result-output li {
  position: relative;
  padding-left: 15px;
  color: rgba(255,255,255,.84);
  font-size: 11px;
}

.v3-result-output li::before {
  position: absolute;
  top: .5em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--v3-orange);
  content: "";
}

.v3-result-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 170px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--v3-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  transition: transform .25s var(--v3-ease), background .25s ease;
}

.v3-result-cta:hover { transform: translateY(-2px); background: var(--v3-orange-dark); }

.v3-result-note {
  margin-top: 13px;
  color: var(--v3-muted);
  font-size: 10px;
  text-align: center;
}

/* Image-led solutions */
.v3-solutions { padding: 110px 0 120px; background: var(--v3-paper); }

.v3-solution-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
  margin-top: 58px;
}

.v3-solution-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--v3-line);
  border-radius: 5px;
  background: var(--v3-white);
  transition: transform .35s var(--v3-ease), box-shadow .35s ease;
}

.v3-solution-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(17,21,18,.1);
}

.v3-solution-card figure {
  height: 340px;
  overflow: hidden;
  background: #d4d0c8;
}

.v3-solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--v3-ease);
}

.v3-solution-card:nth-child(2) img { object-position: center; }
.v3-solution-card:hover img { transform: scale(1.04); }

.v3-solution-card > div {
  position: relative;
  min-height: 200px;
  padding: 25px 27px 28px;
}

.v3-solution-card > div > span {
  color: var(--v3-orange-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: .08em;
}

.v3-solution-card h3 {
  max-width: 310px;
  margin-top: 22px;
  font-family: "IBM Plex Sans Condensed", Arial, sans-serif;
  font-size: 30px;
  letter-spacing: -.03em;
  line-height: 1;
}

.v3-solution-card p {
  max-width: 330px;
  margin-top: 11px;
  color: var(--v3-muted);
  font-size: 12px;
  line-height: 1.5;
}

.v3-solution-card i {
  position: absolute;
  top: 25px;
  right: 26px;
  color: var(--v3-orange);
  font-style: normal;
}

.v3-reference-note {
  margin-top: 14px;
  color: var(--v3-muted);
  font-size: 9px;
  text-align: center;
}

/* Demonstrative output preview */
.v3-output-preview {
  max-width: 1120px;
  margin: 66px auto 0;
  padding: 42px;
  border: 1px solid var(--v3-line);
  border-top: 4px solid var(--v3-orange);
  border-radius: 5px;
  background: var(--v3-white);
}

.v3-output-heading { text-align: center; }

.v3-output-heading h3 {
  margin-top: 12px;
  font-family: "IBM Plex Sans Condensed", Arial, sans-serif;
  font-size: clamp(34px,3.6vw,48px);
  letter-spacing: -.035em;
  line-height: 1;
}

.v3-output-heading p {
  max-width: 540px;
  margin: 12px auto 0;
  color: var(--v3-muted);
  font-size: 12px;
  line-height: 1.5;
}

.v3-output-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
  margin-top: 32px;
}

.v3-output-card {
  min-width: 0;
  padding: 19px;
  border: 1px solid var(--v3-line);
  border-radius: 3px;
  background: var(--v3-paper);
}

.v3-output-card > header {
  display: flex;
  gap: 9px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--v3-line);
}

.v3-output-card > header span,
.v3-output-card > header strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.v3-output-card > header span { color: var(--v3-orange-dark); }
.v3-output-card > header strong { color: var(--v3-ink); }

.v3-sample-table { display: grid; gap: 8px; margin-top: 16px; }

.v3-sample-table > span {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 9px;
  background: var(--v3-white);
}

.v3-sample-table i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #79847c;
}

.v3-sample-table i.is-critical { background: var(--v3-orange); }
.v3-sample-table i.is-review { background: #d99b28; }
.v3-sample-table b,.v3-sample-table em { font-size: 8px; font-style: normal; }
.v3-sample-table b { font-family: "IBM Plex Mono", monospace; }
.v3-sample-table em { color: var(--v3-muted); }

.v3-clash-sample { margin-top: 16px; }

.v3-clash-sample > div {
  position: relative;
  height: 68px;
  overflow: hidden;
  border: 1px solid var(--v3-line);
  background: var(--v3-white);
}

.v3-clash-sample > div::before,
.v3-clash-sample > div::after {
  position: absolute;
  content: "";
}

.v3-clash-sample > div::before {
  top: 28px;
  right: 16px;
  left: 16px;
  height: 11px;
  background: #9da29d;
}

.v3-clash-sample > div::after {
  top: 10px;
  left: 51%;
  width: 14px;
  height: 48px;
  border-radius: 8px;
  background: var(--v3-orange);
  transform: rotate(36deg);
}

.v3-clash-sample > div span {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 7px;
  padding: 3px 5px;
  background: var(--v3-ink);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 7px;
}

.v3-clash-sample > div i {
  position: absolute;
  z-index: 3;
  top: 23px;
  left: calc(51% + 2px);
  width: 24px;
  height: 24px;
  border: 2px solid var(--v3-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,255,255,.86);
}

.v3-clash-sample p { display: flex; justify-content: space-between; margin-top: 9px; font-size: 8px; }
.v3-clash-sample p em { color: var(--v3-orange-dark); font-style: normal; }

.v3-route-sample { display: grid; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.v3-route-sample li { display: flex; gap: 9px; align-items: center; min-height: 31px; padding: 6px 9px; background: var(--v3-white); font-size: 8px; }
.v3-route-sample i { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; background: var(--v3-ink); color: #fff; font-family: "IBM Plex Mono", monospace; font-size: 7px; font-style: normal; }

/* Productized diagnostic */
.v3-diagnostic { padding: 0 0 120px; background: var(--v3-paper); scroll-margin-top: 92px; }

.v3-diagnostic-shell {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 64px;
  overflow: hidden;
  border-top: 7px solid var(--v3-orange);
  border-radius: 5px;
  background: var(--v3-ink);
  color: #fff;
  text-align: center;
}

.v3-diagnostic-shell > * { position: relative; z-index: 2; }
.v3-diagnostic-shell .v3-eyebrow { color: #ff9a75; }

.v3-diagnostic h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(52px,5.4vw,72px);
}

.v3-diagnostic-shell > p {
  max-width: 570px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.55;
}

.v3-price {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: baseline;
  margin-top: 32px;
}

.v3-price > span {
  color: #ff9a75;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
}

.v3-price strong {
  font-family: "IBM Plex Sans Condensed", Arial, sans-serif;
  font-size: clamp(50px,5vw,68px);
  letter-spacing: -.04em;
}

.v3-price small { color: rgba(255,255,255,.5); font-size: 9px; }

.v3-deliverables {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 25px 0 28px;
}

.v3-deliverables span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 3px;
  color: rgba(255,255,255,.76);
  font-size: 10px;
}

.v3-diagnostic-shell > small {
  display: block;
  max-width: 780px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.4);
  font-size: 9px;
  line-height: 1.5;
}

/* Workflow and close */
.v3-workflow { padding: 110px 0; background: var(--v3-white); }

.v3-steps {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 0;
  max-width: 1050px;
  margin: 58px auto 0;
  padding: 0;
  border-top: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
  list-style: none;
}

.v3-steps li {
  min-width: 0;
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--v3-line);
  text-align: center;
}

.v3-steps li:last-child { border-right: 0; }

.v3-steps span {
  color: var(--v3-orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.v3-steps h3 {
  margin-top: 37px;
  font-family: "IBM Plex Sans Condensed", Arial, sans-serif;
  font-size: 30px;
  letter-spacing: -.025em;
}

.v3-steps p {
  margin-top: 8px;
  color: var(--v3-muted);
  font-size: 12px;
}

.v3-final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
  margin-top: 80px;
  padding: 55px 58px;
  border-radius: 5px;
  background: var(--v3-paper);
}

.v3-final-cta h2 { max-width: 720px; font-size: clamp(42px,4.3vw,58px); }
.v3-final-cta > div:last-child { display: grid; gap: 12px; justify-items: stretch; min-width: 245px; }
.v3-final-cta > div:last-child small { max-width: 260px; color: var(--v3-muted); font-size: 9px; line-height: 1.5; }

/* Footer recolor */
.conversion-home .v-footer { background: var(--v3-ink); }
.conversion-home .v-footer-talk:hover { background: var(--v3-orange); color: #fff; }
.conversion-home .v-footer-links a:hover { color: #ff9a75; }

/* Responsive */
@media (max-width: 1120px) {
  .conversion-home .v-header { grid-template-columns: 170px 1fr auto; }
  .conversion-home .v-nav { gap: 16px; }
  .v3-hero-visual { height: 600px; }
  .v3-problem-result { gap: 28px; }
  .v3-solution-card figure { height: 300px; }
}

@media (max-width: 960px) {
  :root { --v3-container: min(100% - 36px, 820px); }
  .conversion-home .v-header { grid-template-columns: 1fr auto auto; padding-right: 18px; padding-left: 18px; }
  .conversion-home .v-nav {
    top: 78px;
    right: 18px;
    left: 18px;
    background: rgba(255,253,248,.98);
    box-shadow: 0 20px 50px rgba(17,21,18,.15);
  }
  .conversion-home .v-nav a { border-color: var(--v3-line); color: var(--v3-ink); }
  .v3-hero { padding-top: 132px; }
  .v3-hero-visual { height: 560px; margin-top: 52px; }
  .v3-problem-result { grid-template-columns: 1fr 1fr; }
  .v3-result-cta { grid-column: 1 / span 2; width: 100%; }
  .v3-solution-grid { grid-template-columns: 1fr; max-width: 760px; margin-right: auto; margin-left: auto; }
  .v3-solution-card { grid-template-columns: .9fr 1.1fr; }
  .v3-solution-card figure { height: 100%; min-height: 330px; }
  .v3-solution-card > div { align-self: stretch; min-height: 330px; padding: 32px; }
  .v3-solution-card h3 { margin-top: 78px; }
  .v3-output-preview { max-width: 760px; }
  .v3-output-grid { grid-template-columns: 1fr; }
  .v3-output-card { padding: 20px; }
  .v3-final-cta { grid-template-columns: 1fr; gap: 35px; }
  .v3-final-cta > div:last-child { max-width: 350px; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 76px; }
  :root { --v3-container: calc(100vw - 32px); }
  .conversion-home .v-header { min-height: 68px; padding-right: 11px; padding-left: 16px; }
  .conversion-home .v-brand { width: 126px; }
  .conversion-home .v-header-cta { width: 44px; min-height: 44px; padding: 0; }
  .conversion-home .v-menu { width: 44px; height: 44px; margin-right: 5px; }
  .conversion-home .v-nav { top: 68px; right: 10px; left: 10px; }
  .v3-eyebrow { font-size: 8px; }
  .v3-hero { padding: 112px 0 70px; }
  .v3-hero h1 { margin-top: 18px; font-size: clamp(46px,13.1vw,58px); line-height: .95; }
  .v3-hero-copy > p { font-size: 15px; line-height: 1.55; }
  .v3-actions { flex-direction: column; margin-top: 26px; }
  .v3-button { width: 100%; }
  .v3-hero-copy > small { font-size: 10px; }
  .v3-hero-visual { height: 430px; margin-top: 42px; border-radius: 4px; }
  .v3-hero-visual > img { object-position: 53% center; }
  .v3-image-label { top: 10px; left: 10px; font-size: 7px; }
  .v3-hotspot > span { display: none; }
  .v3-hotspot.is-active > span {
    position: absolute;
    top: 25px;
    left: 50%;
    display: block;
    padding: 5px 7px;
    font-size: 8px;
    white-space: nowrap;
    transform: translateX(-50%);
  }
  .v3-hotspot > i { width: 18px; height: 18px; }
  .v3-inspector-note { right: 10px; bottom: 10px; width: calc(100% - 20px); padding: 16px 17px; }
  .v3-inspector-note strong { font-size: 21px; }
  .v3-inspector-note p { font-size: 10px; }
  .v3-method { grid-template-columns: repeat(3,1fr); }
  .v3-method > div { display: grid; grid-template-columns: 1fr; justify-items: center; min-height: 82px; padding: 15px 6px; border-right: 1px solid var(--v3-line); text-align: center; }
  .v3-method span { grid-row: auto; }
  .v3-method strong { font-size: 17px; }
  .v3-method small { display: none; }
  .v3-section-heading h2,.v3-diagnostic h2,.v3-final-cta h2 { font-size: clamp(42px,12vw,54px); }
  .v3-section-heading > p { margin-top: 14px; font-size: 14px; }
  .v3-problem { padding: 75px 0; scroll-margin-top: 76px; }
  .v3-problem-tabs { grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 35px; }
  .v3-problem-tabs button { min-height: 64px; padding: 9px; font-size: 11px; }
  .v3-problem-result { grid-template-columns: 1fr; gap: 26px; min-height: 0; margin-top: 10px; padding: 28px 22px; }
  .v3-result-copy h3 { font-size: 34px; }
  .v3-result-copy p { font-size: 11px; }
  .v3-result-output li { font-size: 11px; }
  .v3-result-cta { grid-column: 1; }
  .v3-solutions { padding: 76px 0 85px; }
  .v3-solution-grid { margin-top: 40px; }
  .v3-solution-card { grid-template-columns: 1fr; }
  .v3-solution-card figure { min-height: 280px; height: 280px; }
  .v3-solution-card > div { min-height: 190px; padding: 24px 22px; }
  .v3-solution-card h3 { margin-top: 20px; font-size: 29px; }
  .v3-output-preview { margin-top: 46px; padding: 30px 18px 18px; }
  .v3-output-heading h3 { font-size: 36px; }
  .v3-output-heading p { font-size: 11px; }
  .v3-output-grid { margin-top: 24px; }
  .v3-diagnostic { padding-bottom: 82px; }
  .v3-diagnostic-shell { padding: 50px 21px; }
  .v3-diagnostic h2 { font-size: clamp(44px,12.4vw,58px); }
  .v3-diagnostic-shell > p { font-size: 13px; }
  .v3-price { flex-wrap: wrap; }
  .v3-price strong { font-size: 52px; }
  .v3-deliverables { display: grid; grid-template-columns: 1fr 1fr; }
  .v3-workflow { padding: 78px 0; }
  .v3-steps { grid-template-columns: 1fr; margin-top: 40px; }
  .v3-steps li { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--v3-line); }
  .v3-steps li:last-child { border-bottom: 0; }
  .v3-steps h3 { margin-top: 21px; }
  .v3-final-cta { margin-top: 55px; padding: 38px 23px; }
  .v3-final-cta > div:last-child { min-width: 0; }
}

@media (max-width: 380px) {
  .v3-hero h1 { font-size: 45px; }
  .v3-problem-tabs { grid-template-columns: 1fr; }
  .v3-hotspot:nth-of-type(2) { left: 62%; }
}

@media (prefers-reduced-motion: reduce) {
  .v3-hotspot > i::after { animation: none; }
  .v3-inspector-note.is-refreshing,
  .v3-problem-result.is-refreshing { animation: none; }
  .v3-hero-visual > img,
  .v3-solution-card img { transition: none; }
}
