@charset "UTF-8";
/* ==========================================================================
   HVL 3サービスページ専用スタイル
   （SI／受託開発・AIリバースエンジニアリング・マーケティングプロパートナー）

   すべて .hvl-sv 配下へ限定しているため、他ページへは影響しません。
   既存の assets/service.css の後に読み込みます。
   ボタン・パンくず・英字ラベル・FAQ・注記は service.css の
   .hvl-service-* をそのまま再利用します。

   2026-08 改修：トップページ（index.php）を正としてトーンを統一。
     - 面色／罫線／補足文の色をトップページの実値へ揃える
       （#F4F6F8 / #DCE3E9 / #5A6876）
     - コンテナ幅の独自上限（1280px）を撤去し、サイト共通の
       1200→1340→1560→1720px の拡張に従う
     - 本文系のサイズを 1rem 固定からトップページのスケール
       （.86〜.96rem）へ縮小
     - セクション見出しをトップページと同じ構造
       （番号+36px罫線 / 大英字 Archivo 900 / 灰色の和文h2）に変更
     - 各セクション背景へゴースト英字（data-word）、ヒーローへ縦グリッド線
     - CTA の面（--dark / --accent / --soft）を廃し、トップページと同じ
       「灰面 + 白ボックス + アクセント枠 + グロー」に統一
     - 背景ゴースト英字を各セクションの data-word で出力（PHP 側で付与）
     - 大英字の字送りは body から継承させ、トップページと同じ 0.16px にする
     - 和文サブ見出しの行間をトップページと同じ 1.45 に合わせる
   ========================================================================== */

.hvl-sv {
  --sv-ink: #0E1620;
  --sv-sub: #5A6876;
  --sv-cyan: #00C2FF;
  --sv-cyan-d: #00719E;
  --sv-pale: rgba(0, 194, 255, .06);
  --sv-surface: #F4F6F8;
  --sv-subtle: #F8FAFC;
  --sv-border: #DCE3E9;
  counter-reset: hvl-sv-sec;
  color: var(--sv-ink);
  background: #FFFFFF;
}

.hvl-sv a { color: var(--sv-cyan-d); }
.hvl-sv a:hover { color: var(--sv-ink); }

/* 和文の不自然な単語途中改行を避ける（対応ブラウザでは文節単位で改行する） */
.hvl-sv h1,
.hvl-sv h2,
.hvl-sv h3,
.hvl-sv .hvl-sv-hero-lead,
.hvl-sv .hvl-sv-head p,
.hvl-sv .hvl-sv-copy,
.hvl-sv .hvl-sv-card p,
.hvl-sv .hvl-sv-step p,
.hvl-sv .hvl-sv-chips li,
.hvl-sv .hvl-sv-qs li {
  word-break: auto-phrase;
}

/* --- 背景のゴースト英字（トップページ 2-6 と同一の指定） ----------------- */
.hvl-sv-hero[data-word]::before,
.hvl-sv-sec[data-word]::before,
.hvl-sv-cta[data-word]::before {
  position: absolute;
  top: 38px;
  right: -1%;
  content: attr(data-word);
  font-family: 'Archivo', sans-serif;
  font-size: clamp(3.7rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  color: rgba(14, 22, 32, .02);
  -webkit-text-stroke: 1px rgba(14, 22, 32, .18);
  user-select: none;
  pointer-events: none;
}

.hvl-sv-hero[data-word]::before { top: 86px; right: -1.5%; }

/* 読み上げ対象から外す。alt 指定に対応しないブラウザでは
   上の content: attr(data-word) がそのまま使われる。 */
@supports (content: "a" / "b") {
  .hvl-sv-hero[data-word]::before,
  .hvl-sv-sec[data-word]::before,
  .hvl-sv-cta[data-word]::before { content: attr(data-word) / ""; }
}


/* CTA のゴースト英字は左（トップページ GET STARTED と同じ） */
.hvl-sv-cta[data-word]::before {
  right: auto;
  left: -1%;
  font-size: clamp(4.5rem, 13vw, 10rem);
}

.hvl-sv-hero > .hvl-container,
.hvl-sv-sec > .hvl-container,
.hvl-sv-cta > .hvl-container {
  position: relative;
  z-index: 1;
}

/* --- セクション ---------------------------------------------------------- */
.hvl-sv-sec {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 9vw, 110px) 0;
  background: #FFFFFF;
}

.hvl-sv-sec--surface { background: var(--sv-surface); }
.hvl-sv-sec--border { border-top: 1px solid var(--sv-border); }

/* 同じ面色が連続する場合は罫線で境界を作る（トップページ NEWS と同じ扱い） */
.hvl-sv-sec--surface + .hvl-sv-cta { border-top: 1px solid var(--sv-border); }

/* --- セクション見出し（トップページの C10 と同一構造） ------------------- */
.hvl-sv-head {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: start;
  margin: 0 0 clamp(36px, 5vw, 56px);
  counter-increment: hvl-sv-sec;
}

.hvl-sv-head > * { grid-column: 2; }

/* 番号 + 36px のアクセント罫線 */
.hvl-sv-head::before {
  grid-column: 1;
  grid-row: 1;
  padding-top: 17px;
  padding-right: 48px;
  content: counter(hvl-sv-sec, decimal-leading-zero);
  font-family: 'IBM Plex Mono', monospace;
  font-size: .8rem;
  line-height: 1.5;
  letter-spacing: .14em;
  color: var(--sv-cyan-d);
  background-image: linear-gradient(var(--sv-cyan), var(--sv-cyan));
  background-repeat: no-repeat;
  background-size: 36px 1px;
  background-position: right calc(17px + .75em);
}

/* 大英字（旧：モノ小ラベル） */
.hvl-sv-head-en {
  display: block;
  margin: 0 0 14px;
  font-family: 'Archivo', 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.02;
  /* letter-spacing は body の .01em（=0.16px）をそのまま継承させる。
     ここで .01em を指定し直すと文字サイズ基準で計算され、トップページより広がる。 */
  color: var(--sv-ink);
}

/* 和文サブ見出し（22px の細線 + 灰色） */
.hvl-sv-head h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 36em;
  margin: 0;
  font-size: clamp(1.02rem, 1.9vw, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .01em;
  color: var(--sv-sub);
  text-wrap: pretty;
}

.hvl-sv-head h2::before {
  flex: none;
  width: 22px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: .5;
}

.hvl-sv-head p:not(.hvl-sv-head-en) {
  max-width: 38em;
  margin: 22px 0 0;
  font-size: .94rem;
  line-height: 2;
  color: var(--sv-sub);
  text-wrap: pretty;
}

.hvl-sv-copy {
  max-width: 52em;
  margin: 0;
  font-size: .94rem;
  line-height: 2;
  color: var(--sv-sub);
  text-wrap: pretty;
}

.hvl-sv-copy + .hvl-sv-copy { margin-top: 1.2em; }

/* --- ヒーロー ------------------------------------------------------------ */
.hvl-sv-hero {
  position: relative;
  overflow: hidden;
  padding: calc(72px + clamp(36px, 5vw, 64px)) 0 clamp(56px, 8vw, 96px);
  /* トップページと同じ 25% / 50% / 75% の縦グリッド線 */
  background-color: #FFFFFF;
  background-image:
    linear-gradient(rgba(14, 22, 32, .05), rgba(14, 22, 32, .05)),
    linear-gradient(rgba(14, 22, 32, .05), rgba(14, 22, 32, .05)),
    linear-gradient(rgba(14, 22, 32, .05), rgba(14, 22, 32, .05));
  background-repeat: no-repeat;
  background-size: 1px 100%;
  background-position: 25% 0, 50% 0, 75% 0;
}

.hvl-sv-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.22fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.hvl-sv-hero h1 {
  max-width: 16em;
  margin: 0 0 28px;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: .005em;
  color: var(--sv-ink);
  text-wrap: pretty;
}

.hvl-sv-hero-lead {
  max-width: 40em;
  margin: 0;
  font-size: clamp(.92rem, 1.3vw, 1.05rem);
  line-height: 2;
  color: var(--sv-sub);
  text-wrap: pretty;
}

/* --- サービス素材（透過WebP／PNG）の配置 -------------------------------- */
.hvl-sv-art {
  margin: 0;
  width: 100%;
  max-width: var(--sv-art-w, 100%);
}

.hvl-sv-art picture { display: block; }

.hvl-sv-art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hvl-sv-art--hero { margin-inline: auto; }

.hvl-sv-art--center {
  margin: 0 auto clamp(36px, 4.5vw, 64px);
}

.hvl-sv-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
  margin-bottom: clamp(36px, 4.5vw, 64px);
}

.hvl-sv-split .hvl-sv-art { justify-self: center; }
.hvl-sv-split--media-first .hvl-sv-art { order: -1; }
.hvl-sv-head--flush { margin-bottom: 0; }

/* --- カードグリッド ------------------------------------------------------ */
.hvl-sv-grid { display: grid; gap: clamp(18px, 2.5vw, 30px); }
.hvl-sv-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hvl-sv-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hvl-sv-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hvl-sv-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.hvl-sv-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid var(--sv-border);
  border-radius: 3px;
  background: #FFFFFF;
}

.hvl-sv-card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--sv-ink);
  text-wrap: pretty;
}

.hvl-sv-card p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.9;
  color: var(--sv-sub);
  text-wrap: pretty;
}

.hvl-sv-card-en {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .67rem;
  line-height: 1.6;
  letter-spacing: .16em;
  color: var(--sv-cyan-d);
}

a.hvl-sv-card {
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

a.hvl-sv-card:hover,
a.hvl-sv-card:focus-visible {
  border-color: var(--sv-cyan);
  box-shadow: 0 10px 30px -22px rgba(0, 194, 255, .8);
  color: var(--sv-cyan-d);
}

.hvl-sv-card-arrow {
  margin-top: auto;
  font-family: 'Archivo', sans-serif;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--sv-cyan-d);
}

/* アイコン素材が無い項目：同じ線のルールで短い罫線を用いる */
.hvl-sv-card-rule {
  width: 56px;
  height: 56px;
  box-sizing: border-box;
  border: 1px solid var(--sv-border);
  position: relative;
}

.hvl-sv-card-rule::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 30px;
  height: 1px;
  content: "";
  background: var(--sv-cyan);
}

/* 見出しのみのカードは、罫線で始点を示す */
.hvl-sv-card:not(:has(p)):not(:has(.hvl-sv-card-en)) h3::before {
  display: block;
  width: 28px;
  height: 1px;
  margin-bottom: 16px;
  content: "";
  background: var(--sv-cyan);
}

.hvl-sv-card:not(:has(p)):not(:has(.hvl-sv-card-en)) h3 { font-size: 1.12rem; }

/* --- 補助項目（チップ） -------------------------------------------------- */
.hvl-sv-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 10px;
  margin: clamp(18px, 2.5vw, 30px) 0 0;
  padding: 0;
  list-style: none;
}

.hvl-sv-chips li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid var(--sv-border);
  border-radius: 2px;
  background: #FFFFFF;
  font-size: .86rem;
  line-height: 1.9;
  color: #33465A;
  text-wrap: pretty;
}

.hvl-sv-chips li::before {
  flex: none;
  width: 14px;
  height: 1px;
  margin-top: .95em;
  content: "";
  background: var(--sv-cyan);
}

.hvl-sv-sec--surface .hvl-sv-chips li { background: #FFFFFF; }

/* --- 工程（3列×2段） ---------------------------------------------------- */
.hvl-sv-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}

.hvl-sv-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--sv-border);
  border-radius: 3px;
  background: #FFFFFF;
}

.hvl-sv-step::after {
  position: absolute;
  top: 50%;
  right: calc(-1 * clamp(18px, 2.5vw, 30px));
  width: clamp(18px, 2.5vw, 30px);
  transform: translateY(-50%);
  content: "\2192";
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  text-align: center;
  color: var(--sv-cyan-d);
}

.hvl-sv-step:nth-child(3n)::after,
.hvl-sv-step:last-child::after { content: none; }

.hvl-sv-step-num {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .8rem;
  line-height: 1;
  letter-spacing: .14em;
  color: var(--sv-cyan-d);
}

.hvl-sv-step-num::after {
  flex: none;
  width: 36px;
  height: 1px;
  content: "";
  background: var(--sv-cyan);
}

.hvl-sv-step h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--sv-ink);
}

.hvl-sv-step p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.9;
  color: var(--sv-sub);
  text-wrap: pretty;
}

/* --- 成果物カード ------------------------------------------------------- */
.hvl-sv-out {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border: 1px solid var(--sv-border);
  border-radius: 3px;
  background: #FFFFFF;
}

.hvl-sv-out-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 3.5vw, 36px);
}

.hvl-sv-out-body h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.6;
}

.hvl-sv-deflist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hvl-sv-deflist li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: .86rem;
  line-height: 1.85;
  color: var(--sv-sub);
}

.hvl-sv-deflist li::before {
  flex: none;
  width: 10px;
  height: 1px;
  margin-top: .9em;
  content: "";
  background: var(--sv-cyan);
}

/* --- 診断導線 ----------------------------------------------------------- */
.hvl-sv-diag {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  box-sizing: border-box;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--sv-border);
  border-radius: 3px;
  background: #FFFFFF;
}

.hvl-sv-diag h2 {
  margin: 0 0 18px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.6;
}

.hvl-sv-qs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hvl-sv-qs li {
  box-sizing: border-box;
  padding: 15px 16px;
  border: 1px solid var(--sv-border);
  border-radius: 2px;
  background: var(--sv-subtle);
  font-size: .86rem;
  line-height: 1.85;
  color: #33465A;
}

.hvl-sv-qs b {
  display: block;
  margin-bottom: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--sv-cyan-d);
}

/* --- 顧客行動の図解（HTML） ---------------------------------------------- */
.hvl-sv-journey {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.hvl-sv-chan {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hvl-sv-chan li {
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  padding: 14px;
  border: 1px solid var(--sv-border);
  border-radius: 2px;
  background: #FFFFFF;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.5;
}

.hvl-sv-jrow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hvl-sv-jbox {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  padding: 18px 10px;
  border: 1px solid var(--sv-border);
  border-radius: 2px;
  background: #FFFFFF;
  text-align: center;
}

.hvl-sv-jbox strong {
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.6;
}

.hvl-sv-jbox span {
  font-size: .78rem;
  line-height: 1.7;
  color: var(--sv-sub);
}

.hvl-sv-jbox:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 12px;
  transform: translateY(-50%);
  content: "\2192";
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  color: var(--sv-cyan-d);
}

.hvl-sv-jbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-sizing: border-box;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--sv-cyan);
  border-radius: 2px;
  background: var(--sv-pale);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

/* --- 最終CTA（トップページ C25 と同一） --------------------------------- */
.hvl-sv-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 9.5vw, 120px) 0;
  background: var(--sv-surface);
}

/* 旧 --dark / --accent / --soft の面はトップページに合わせて灰面へ統一 */
.hvl-sv-cta--dark,
.hvl-sv-cta--accent,
.hvl-sv-cta--soft { background: var(--sv-surface); }

.hvl-sv-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-start;
  box-sizing: border-box;
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid var(--sv-cyan);
  border-radius: 3px;
  background: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(0, 194, 255, .1), 0 24px 70px -40px rgba(0, 194, 255, .35);
}

.hvl-sv-cta h2 {
  max-width: 24em;
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 3.4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.4;
  color: var(--sv-ink);
  text-wrap: pretty;
}

.hvl-sv-cta p:not(.hvl-sv-cta-label) {
  max-width: 36em;
  margin: 0;
  font-size: .96rem;
  line-height: 1.95;
  color: var(--sv-sub);
  text-wrap: pretty;
}

.hvl-sv-cta-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .8rem;
  line-height: 1.5;
  letter-spacing: .14em;
  color: var(--sv-cyan-d);
}

.hvl-sv-cta-label::after {
  flex: none;
  width: 36px;
  height: 1px;
  content: "";
  background: var(--sv-cyan);
}

.hvl-sv-cta .hvl-service-actions { margin-top: 0; }

/* --- フォーカス表示 ------------------------------------------------------ */
.hvl-sv a:focus-visible,
.hvl-sv summary:focus-visible {
  outline: 2px solid var(--sv-cyan-d);
  outline-offset: 3px;
}

/* --- レスポンシブ -------------------------------------------------------- */
@media (max-width: 1180px) {
  .hvl-sv-grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1080px) {
  .hvl-sv-split { grid-template-columns: 1fr; }
  .hvl-sv-split--media-first .hvl-sv-art { order: 0; }
}

@media (max-width: 1024px) {
  .hvl-sv-hero-grid { grid-template-columns: 1fr; }
  .hvl-sv-hero h1 { max-width: none; }
  .hvl-sv-hero-figure { order: 2; }
  .hvl-sv-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hvl-sv-journey { grid-template-columns: 1fr; }
  .hvl-sv-chan { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  .hvl-sv-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hvl-sv-step:nth-child(3n)::after { content: "\2192"; }
  .hvl-sv-step:nth-child(2n)::after,
  .hvl-sv-step:last-child::after { content: none; }
  .hvl-sv-qs { grid-template-columns: 1fr; }
  .hvl-sv-jrow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hvl-sv-jbox:not(:last-child)::after { content: none; }
}

/* 700px 以下は見出しブロックを縦積みにする（トップページと同じ挙動） */
@media (max-width: 700px) {
  .hvl-sv-head { grid-template-columns: 1fr; gap: 16px; }
  .hvl-sv-head > * { grid-column: 1; }

  .hvl-sv-head::before {
    grid-column: 1;
    padding-top: 0;
    background-position: right calc(.75em);
  }

  .hvl-sv-grid--2,
  .hvl-sv-grid--3,
  .hvl-sv-grid--4,
  .hvl-sv-grid--5 { grid-template-columns: 1fr; }

  .hvl-sv-diag { grid-template-columns: 1fr; }
  .hvl-sv-diag .hvl-service-button { grid-column: 1; justify-self: stretch; }
  .hvl-sv-chan { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .hvl-sv-hero { padding-top: calc(72px + 40px); }

  /* ゴースト英字は service/ のハブページと同じ縮小率にそろえる */
  .hvl-sv-hero[data-word]::before {
    top: 92px;
    right: -4%;
    font-size: clamp(3rem, 18vw, 5.4rem);
  }

  .hvl-sv-steps { grid-template-columns: 1fr; }

  .hvl-sv-step::after,
  .hvl-sv-step:nth-child(3n)::after {
    top: auto;
    right: auto;
    bottom: calc(-1 * clamp(18px, 2.5vw, 30px));
    left: 50%;
    width: auto;
    transform: translateX(-50%);
    content: "\2193";
  }

  .hvl-sv-step:last-child::after { content: none; }
  .hvl-sv-jrow { grid-template-columns: 1fr; }
  .hvl-sv-cta .hvl-service-actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hvl-sv a.hvl-sv-card { transition: none; }
}
