/* 引継ぎ代行プラス LP */

/* ---------- color tokens ----------
   白×オレンジ（2026-09-27 決定）。色は役割で分けている。
   --head   見出し・強い文字
   --brand  大きな面（about・bridge・ご利用イメージ・料金例・お問い合わせ）
   --solid  小さな濃い部品（ラベル、吹き出し、選択中のタブ、Qの丸、フォームの見出し）
   --pop    面の上で目立たせる文字
   --chip   面の上に載せる小さな札
*/
:root {
  --head: #1A1A1A;
  --ink: #2A2A2A;
  --muted: #5E5E5E;
  --sub: #8C8C8C;
  --line: #E8E8E8;
  --brand: #F4F4F4;
  --brand-2: #FFFFFF;
  --on-brand: #1A1A1A;
  --on-brand-sub: #5E5E5E;
  --on-brand-sub2: #8C8C8C;
  --solid: #1A1A1A;
  --border: #1A1A1A;
  --orange: #FF8322;
  --orange-dark: #D9650B;
  --orange-pale: #FFF1DE;
  --pop: #F26A12;
  --chip-bg: #FF8322;
  --chip-ink: #FFFFFF;
  --soft: #FFEFE3;
  --medal-bg: #FFFFFF;
  --medal-ring: #1A1A1A;
  --band-bg: #1A1A1A;
  --band-ink: #FFFFFF;
  --cream: #FAFAFA;
  --gray: #F4F4F4;
  --pill-bg: #EDEDED;
  --dont-bg: #EBEBEB;
  --dont-line: #D9D9D9;
  --them-bg: #E9E9E9;
  --app-border: #E0E0E0;
  --chat-bg: #FAFAFA;
  --footer-bg: #1A1A1A;
  --footer-ink: #A0A0A0;
  --shadow: 0, 0, 0;
  --white: #FFFFFF;
  --en: "Montserrat", "Noto Sans JP", sans-serif;
  --side: 300px;
  --header: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--white);
  font-feature-settings: "palt" 1;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p, ul, ol, dl, dd, h1, h2, h3, figure { margin: 0; }
h1, h2, h3, p, li, dd, dt, summary, figcaption, label { word-break: auto-phrase; text-wrap: pretty; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
em { font-style: normal; }
.sp-only { display: none; }

/* ---------- header ---------- */
.topbar { background: var(--gray); font-size: 11px; color: var(--muted); padding: 4px 24px; line-height: 1.6; }
.topbar p { display: flex; justify-content: space-between; gap: 16px; }
.topbar__offer { color: var(--orange); font-weight: 700; text-decoration: none; }
.topbar__offer:hover { text-decoration: underline; }
.header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header);
  display: flex; align-items: center; gap: 28px;
  padding: 0 24px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header__logo img { width: 226px; }
.header__nav { display: flex; gap: 22px; margin-left: auto; font-size: 14px; font-weight: 700; color: var(--head); }
.header__nav a { text-decoration: none; white-space: nowrap; }
.header__nav a:hover { color: var(--orange); }
.header__cta { display: flex; gap: 8px; }
.btn-s {
  display: inline-flex; align-items: center; height: 40px; padding: 0 16px;
  border-radius: 6px; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap;
}
.btn-s--line { color: var(--orange); border: 1.5px solid var(--orange); background: var(--white); }
.btn-s--fill { color: var(--white); background: var(--orange); border: 1.5px solid var(--orange); box-shadow: 0 3px 0 var(--orange-dark); }
.btn-s--line:hover { background: var(--orange-pale); }
.btn-s--fill:hover { transform: translateY(1px); box-shadow: 0 2px 0 var(--orange-dark); }

/* ---------- layout with side form ---------- */
.page { display: block; }
.main { min-width: 0; }
@media (min-width: 1280px) {
  .main > section, .footer { padding-right: var(--side); }
}
.wrap { max-width: 960px; margin: 0 auto; padding: 0 32px; }
.sec { padding: 96px 0; }

/* ---------- shared type ---------- */
.label {
  display: inline-block;
  font-family: var(--en); font-weight: 800; font-size: 11px; letter-spacing: .08em;
  color: var(--white); background: var(--solid);
  padding: 3px 12px; border-radius: 999px; line-height: 1.6;
}
.label--light { background: var(--chip-bg); color: var(--chip-ink); }
.h2 { margin-top: 12px; font-size: 36px; line-height: 1.45; font-weight: 900; color: var(--head); letter-spacing: .01em; }
.h2--white { color: var(--on-brand); }
.h2--logo { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.h2--logo img { width: 290px; }
.lead { margin-top: 14px; font-size: 17px; font-weight: 500; color: var(--muted); }
.lead em { color: var(--orange); font-weight: 700; }
.lead--white { color: var(--on-brand-sub); }
.note { margin-top: 14px; font-size: 12px; color: var(--sub); }
.sechead { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.sechead__img { flex: none; height: 170px; width: auto; }

/* ---------- CTA buttons ---------- */
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 64px; padding: 10px 28px;
  border-radius: 999px; text-decoration: none; font-weight: 900; font-size: 18px; line-height: 1.35;
  transition: transform .12s, box-shadow .12s;
}
.cta--fill { color: var(--white); background: var(--orange); border: 2px solid var(--orange); box-shadow: 0 5px 0 var(--orange-dark); }
.cta--fill:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--orange-dark); }
.cta--line { color: var(--head); background: var(--white); border: 2px solid var(--border); box-shadow: 0 5px 0 var(--border); font-size: 15px; padding: 8px 26px 8px 12px; }
.cta--line b { font-size: 18px; color: var(--orange); font-weight: 900; }
.cta--line:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--border); }
.cta--block { width: 100%; }
.cta__tag {
  display: inline-block; font-size: 12px; font-weight: 900; line-height: 1;
  padding: 5px 7px; border-radius: 4px; background: var(--white); color: var(--orange);
}
.cta__tag--orange { background: var(--orange); color: var(--white); }
.cta__thumb { width: 54px; border-radius: 4px; }

/* ---------- MV ---------- */
.mv { position: relative; background: var(--gray); overflow: hidden; }
.mv::before {
  content: ""; position: absolute; inset: 0;
  background: var(--white);
  clip-path: polygon(62% 0, 100% 0, 100% 100%, 38% 100%);
}
.mv__inner {
  position: relative; max-width: 1180px; margin: 0 auto; padding: 64px 40px 72px;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); gap: 40px; align-items: center;
}
.mv__notice {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-size: 14px; font-weight: 700; color: var(--head); text-decoration: none;
  background: var(--white); border: 1.5px solid var(--orange); border-radius: 999px; padding: 5px 16px 5px 5px;
}
.mv__notice b { font-size: 12px; color: var(--white); background: var(--orange); border-radius: 999px; padding: 3px 10px; }
.mv__notice:hover { background: var(--orange-pale); }
.mv__title { font-weight: 900; color: var(--head); font-size: 56px; line-height: 1.3; letter-spacing: .01em; }
.mv__line { display: block; white-space: nowrap; }
.mv__title small { font-size: .7em; }
.mv__lead { margin-top: 22px; font-size: 26px; font-weight: 900; color: var(--head); line-height: 1.4; }
.mv__sub { margin-top: 6px; font-size: 16px; color: var(--muted); font-weight: 500; }
.mv__btns { margin-top: 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.mv__btns .cta { min-width: 360px; }

/* app mock */
.mv__visual { position: relative; padding-bottom: 112px; }
.app {
  background: var(--white); border: 1px solid var(--app-border); border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 48px rgba(var(--shadow), .14);
  font-size: 12px; line-height: 1.5;
}
.app__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--solid); color: var(--white); }
.app__bar img { width: 18px; background: var(--white); border-radius: 4px; padding: 2px; }
.app__title { font-weight: 700; font-size: 13px; }
.app__who { color: rgba(255, 255, 255, .6); font-size: 11px; }
.app__live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--solid); background: var(--white); border-radius: 999px; padding: 2px 10px; }
.app__live i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { opacity: .25; } }
.app__body { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 300px; }
.app__list { padding: 16px; border-right: 1px solid var(--line); }
.app__chat { padding: 16px; background: var(--chat-bg); display: flex; flex-direction: column; gap: 10px; }
.app__h { display: flex; justify-content: space-between; align-items: baseline; font-weight: 700; color: var(--head); font-size: 12px; margin-bottom: 10px; }
.app__count { font-weight: 500; color: var(--sub); font-size: 11px; }
.app__count b { color: var(--orange); font-family: var(--en); font-size: 13px; }
.tasks { display: grid; gap: 7px; }
.task {
  display: grid; grid-template-columns: 16px 1fr auto; align-items: center; gap: 8px;
  padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--white);
  transition: opacity .35s, transform .35s, border-color .35s;
}
.task__check { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid #C4CCD3; position: relative; transition: background .3s, border-color .3s; }
.task__check::after {
  content: ""; position: absolute; left: 4.5px; top: 2px; width: 4px; height: 7px;
  border: solid var(--white); border-width: 0 1.8px 1.8px 0; transform: rotate(45deg); opacity: 0; transition: opacity .3s;
}
.task__name { font-weight: 700; color: var(--ink); }
.task__freq { color: var(--sub); font-size: 11px; }
.task.is-done { border-color: #FFD7B3; }
.task.is-done .task__check { background: var(--orange); border-color: var(--orange); }
.task.is-done .task__check::after { opacity: 1; }
.app.is-playing .task:not(.is-done) { opacity: .45; }
.msg { max-width: 92%; padding: 9px 12px; border-radius: 12px; transition: opacity .35s, transform .35s; }
.msg--q { align-self: flex-end; background: var(--solid); color: var(--white); border-bottom-right-radius: 4px; }
.msg--a { align-self: flex-start; background: var(--white); border: 1px solid var(--line); border-bottom-left-radius: 4px; color: var(--ink); }
.msg__text { display: block; }
.msg__ref { display: block; margin-top: 6px; font-size: 10px; color: var(--orange); font-weight: 700; }
.msg__typing { display: none; gap: 4px; padding: 4px 2px; }
.msg__typing i { width: 6px; height: 6px; border-radius: 50%; background: #B8C2CB; animation: blink 1s infinite; }
.msg__typing i:nth-child(2) { animation-delay: .15s; }
.msg__typing i:nth-child(3) { animation-delay: .3s; }
@keyframes blink { 50% { opacity: .2; } }
.app.is-playing .js-q:not(.is-in), .app.is-playing .js-a:not(.is-in) { opacity: 0; transform: translateY(6px); }
.js-a.is-typing .msg__typing { display: inline-flex; }
.js-a.is-typing .msg__text, .js-a.is-typing .msg__ref { display: none; }

/* medals (flat) */
.medals { position: absolute; left: -20px; bottom: 0; display: flex; gap: 10px; }
.medal {
  width: 124px; height: 124px; border-radius: 50%;
  background: var(--medal-bg);
  box-shadow: inset 0 0 0 2px var(--medal-ring), 0 8px 20px rgba(var(--shadow), .10);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--head); text-align: center; line-height: 1.2;
}
.medal__s { font-size: 12px; font-weight: 700; }
.medal__l { font-size: 34px; font-weight: 900; letter-spacing: -.02em; margin: 2px 0; color: var(--orange); }
.medal__l small { font-size: 12px; letter-spacing: 0; color: var(--head); }
.medal:nth-child(3) .medal__l { font-size: 30px; }
.medal:nth-child(3) .medal__s:last-child { font-size: 10px; }

/* ---------- ticker ---------- */
.ticker { display: flex; align-items: center; gap: 20px; padding: 18px 0 18px 24px; border-bottom: 1px solid var(--line); background: var(--white); overflow: hidden; }
.ticker__label { flex: none; font-size: 12px; font-weight: 700; color: var(--white); background: var(--solid); padding: 4px 12px; border-radius: 4px; }
.ticker__track { display: flex; overflow: hidden; }
.ticker__list { display: flex; flex: none; gap: 10px; padding-right: 10px; animation: ticker 48s linear infinite; }
.ticker__list li { flex: none; font-size: 14px; font-weight: 700; color: var(--head); border: 1.5px solid var(--line); border-radius: 999px; padding: 4px 16px; white-space: nowrap; }
@keyframes ticker { to { transform: translateX(-100%); } }

/* ---------- about ---------- */
.about { padding-top: 72px; padding-bottom: 0; }
.about__box { background: var(--brand); border-radius: 16px; padding: 48px 48px 44px; color: var(--on-brand); }
.about__title { text-align: center; font-size: 30px; font-weight: 900; line-height: 1.5; }
.relay { margin-top: 32px; display: grid; grid-template-columns: 150px 1fr 250px 1fr 150px; align-items: center; }
.relay__person { text-align: center; }
.relay__person img { height: 220px; width: auto; margin: 0 auto; }
.relay__person figcaption {
  margin-top: 10px; display: inline-block; font-size: 14px; font-weight: 700; line-height: 1.4;
  background: var(--white); color: var(--head); border-radius: 999px; padding: 6px 16px;
}
.relay__person figcaption small { display: block; font-size: 11px; color: var(--muted); font-weight: 500; }
.relay__arrow { position: relative; height: 2px; background: var(--orange); margin: 0 10px; }
.relay__arrow::after {
  content: ""; position: absolute; right: -2px; top: 50%; width: 10px; height: 10px;
  border: solid var(--orange); border-width: 2px 2px 0 0; transform: translateY(-50%) rotate(45deg);
}
.relay__arrow span {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  white-space: nowrap; background: var(--orange); color: var(--white);
  font-size: 13px; font-weight: 900; padding: 4px 12px; border-radius: 999px;
}
.relay__us { background: var(--white); border-radius: 12px; padding: 20px 18px; color: var(--head); border: 3px solid var(--orange); }
.relay__us img { width: 190px; margin: 0 auto 12px; }
.relay__us ol { display: grid; gap: 6px; }
.relay__us li { display: flex; flex-wrap: wrap; align-items: center; gap: 0 10px; font-weight: 700; font-size: 15px; background: var(--gray); border-radius: 8px; padding: 8px 12px; }
.relay__us b { font-family: var(--en); color: var(--orange); font-size: 13px; }
.relay__us small { flex-basis: 100%; padding-left: 27px; font-size: 11px; font-weight: 700; color: var(--orange); line-height: 1.4; }
.checks { display: grid; gap: 8px; }
.checks li { position: relative; padding-left: 30px; font-weight: 700; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange);
}
.checks li::after {
  content: ""; position: absolute; left: 7px; top: calc(.35em + 4px); width: 5px; height: 9px;
  border: solid var(--white); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.checks--white { margin: 32px auto 0; width: fit-content; }

/* ---------- problem ---------- */
.problem__box { margin-top: 32px; background: var(--gray); border-radius: 16px; padding: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pcard { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 24px 22px 26px; }
.pcard img { height: 170px; width: auto; margin: 0 auto 14px; }
.pcard h3 { text-align: center; font-size: 20px; font-weight: 900; color: var(--head); line-height: 1.45; margin-bottom: 12px; }
.pcard li { position: relative; padding-left: 14px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.pcard li + li { margin-top: 6px; }
.pcard li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.facts { margin-top: 28px; border-top: 2px solid var(--border); padding-top: 24px; }
.facts__title { font-size: 15px; font-weight: 900; color: var(--head); }
.facts__list { margin-top: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.facts__list dt { font-family: var(--en); font-weight: 800; color: var(--orange); font-size: 20px; line-height: 1; }
.facts__list dt b { font-size: 48px; letter-spacing: -.02em; }
.facts__list dd { margin-top: 8px; font-weight: 700; color: var(--head); font-size: 15px; line-height: 1.5; }
.facts__list .facts__src { margin-top: 6px; font-size: 11px; color: var(--sub); font-weight: 400; }

/* ---------- bridge ---------- */
.bridge { padding: 8px 0 96px; }
.bridge .wrap { display: flex; flex-direction: column; align-items: center; }
.bridge__arrow { width: 0; height: 0; border-left: 70px solid transparent; border-right: 70px solid transparent; border-top: 44px solid var(--orange); }
.bridge__pill {
  margin-top: -6px; position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 2px solid var(--border); border-radius: 999px;
  padding: 10px 26px; font-size: 22px; font-weight: 900; color: var(--head); line-height: 1;
}
.bridge__pill img { width: 170px; }
.bridge__box {
  margin-top: -24px; width: 100%; background: var(--brand); border-radius: 16px;
  padding: 64px 40px 0; text-align: center; color: var(--on-brand); overflow: hidden;
}
.bridge__small { font-size: 18px; font-weight: 700; color: var(--on-brand-sub); }
.bridge__big { margin-top: 10px; font-size: 38px; font-weight: 900; line-height: 1.5; }
.bridge__big em { color: var(--pop); }
.bridge__img { width: 380px; margin: 28px auto -8px; }

/* ---------- features ---------- */
.features { background: var(--cream); }
.pain { margin-top: 56px; display: flex; align-items: flex-end; gap: 16px; }
.h2 + .pain { margin-top: 40px; }
.pain__list { display: grid; gap: 8px; }
.pain__list li { background: var(--pill-bg); color: var(--muted); font-size: 14px; font-weight: 700; padding: 8px 18px; border-radius: 6px; width: fit-content; }
.pain__img { height: 130px; width: auto; flex: none; }
.fcard {
  margin-top: 14px; background: var(--white); border: 2px solid var(--border); border-radius: 16px;
  padding: 40px; display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start;
}
.fcard__text { position: relative; }
.fcard__num { font-family: var(--en); font-weight: 800; font-size: 120px; line-height: .8; color: var(--soft); position: absolute; left: -6px; top: -6px; z-index: 0; }
.fcard__title {
  position: relative; z-index: 1; padding-left: 64px;
  font-size: 28px; font-weight: 900; color: var(--head); line-height: 1.45;
}
.fcard__text > p:not(.fcard__num) { margin-top: 16px; font-size: 15px; color: var(--ink); line-height: 1.9; }
.fcard__title + p { margin-top: 28px !important; padding-top: 24px; border-top: 2px solid var(--soft); }
.fcard__panel { background: var(--orange-pale); border-radius: 12px; padding: 22px; }
.fcard__panel-title { font-size: 13px; font-weight: 900; color: var(--orange); margin-bottom: 12px; text-align: center; }
.kit { display: grid; gap: 6px; }
.kit li { display: flex; align-items: center; gap: 10px; background: var(--white); border-radius: 8px; padding: 9px 12px; font-weight: 700; color: var(--head); font-size: 14px; line-height: 1.4; }
.kit__sq { width: 10px; height: 10px; border-radius: 2px; background: var(--solid); flex: none; }
.kit__sq--o { background: var(--orange); }
.kit__meta { margin-left: auto; font-size: 11px; color: var(--sub); font-weight: 500; }
.chat { display: flex; flex-direction: column; gap: 10px; font-size: 13px; line-height: 1.65; }
.chat__q { align-self: flex-end; max-width: 88%; background: var(--solid); color: var(--white); padding: 9px 13px; border-radius: 12px 12px 4px 12px; font-weight: 500; }
.chat__a { align-self: flex-start; max-width: 94%; background: var(--white); padding: 10px 13px; border-radius: 12px 12px 12px 4px; }
.chat__a span { display: block; margin-top: 6px; font-size: 11px; font-weight: 700; color: var(--orange); }
.flowviz__h { font-size: 12px; font-weight: 700; color: var(--muted); margin: 4px 0 8px; }
.flowviz__row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; margin-bottom: 16px; }
.flowviz__row li {
  position: relative; background: var(--white); border-radius: 8px; padding: 12px 6px; min-height: 58px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 12.5px; font-weight: 700; color: var(--head); line-height: 1.4;
}
.flowviz__row li + li::before {
  content: ""; position: absolute; left: -13px; top: 50%; width: 7px; height: 7px;
  border: solid var(--head); border-width: 2px 2px 0 0; transform: translateY(-50%) rotate(45deg);
}
.flowviz__row:not(.flowviz__row--after) li:nth-child(2) { background: #FBE3CF; color: var(--muted); }
.flowviz__row li.is-auto { background: var(--orange); color: var(--white); }
.flowviz__note { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); }
.flowviz__note span { width: 12px; height: 12px; border-radius: 3px; background: var(--orange); }

/* 引継ぎでつくるもの */
.deliv { display: grid; gap: 8px; }
.deliv__item { display: grid; grid-template-columns: 92px 1fr; gap: 12px; align-items: center; background: var(--white); border-radius: 10px; padding: 10px; }
.deliv__name { font-weight: 900; color: var(--head); font-size: 15px; line-height: 1.4; }
.deliv__meta { font-size: 12px; color: var(--muted); line-height: 1.55; margin-top: 2px; }
.deliv__vis { position: relative; height: 62px; border-radius: 6px; overflow: hidden; }
.deliv__vis--doc { background: var(--gray); padding: 9px 10px; display: grid; gap: 5px; align-content: start; }
.deliv__vis--doc i { display: block; height: 5px; border-radius: 3px; background: #CFCFCF; }
.deliv__vis--doc i:first-child { width: 60%; height: 7px; background: var(--head); }
.deliv__vis--doc i:nth-child(3) { width: 80%; }
.deliv__vis--doc i:last-child { width: 45%; background: var(--orange); }
.deliv__vis--video { background: var(--head); }
.deliv__vis--video b {
  position: absolute; left: 50%; top: 42%; transform: translate(-40%, -50%);
  border-left: 16px solid var(--white); border-top: 10px solid transparent; border-bottom: 10px solid transparent;
}
.deliv__vis--video i { position: absolute; left: 8px; right: 8px; bottom: 8px; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, .3); }
.deliv__vis--video i::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 40%; border-radius: 2px; background: var(--orange); }
.deliv__vis--ai { background: var(--gray); padding: 9px; display: flex; flex-direction: column; gap: 6px; }
.deliv__vis--ai i { display: block; height: 16px; border-radius: 8px; }
.deliv__vis--ai i:first-child { width: 62%; align-self: flex-end; background: var(--head); }
.deliv__vis--ai i:last-child { width: 80%; background: var(--white); border: 1.5px solid var(--orange); }
.deliv__more { margin-top: 12px; font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ---------- automation ---------- */
.routes { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.route { background: var(--gray); border-radius: 16px; padding: 24px 28px 28px; }
.route__tag { display: inline-block; font-size: 13px; font-weight: 900; color: var(--orange); background: var(--white); border: 1.5px solid var(--orange); border-radius: 999px; padding: 3px 14px; }
.route--build .route__tag { color: var(--white); background: var(--head); border-color: var(--head); }
.route__img { height: 210px; width: auto; margin: 14px auto 12px; }
.route__title { font-size: 22px; font-weight: 900; color: var(--head); line-height: 1.45; }
.route__text { margin-top: 8px; font-size: 15px; color: var(--muted); line-height: 1.85; }
.auto__subhead { margin-top: 48px; font-size: 20px; font-weight: 900; color: var(--head); }
.autolist { margin-top: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.acard { display: flex; flex-direction: column; border: 1.5px solid var(--line); border-radius: 14px; padding: 18px 18px 20px; background: var(--white); }
.acard__tag { align-self: flex-start; }
.acard__tag { display: inline-block; font-size: 11px; font-weight: 900; color: var(--orange); border: 1.5px solid var(--orange); border-radius: 4px; padding: 1px 8px; }
.acard--build .acard__tag { color: var(--white); background: var(--head); border-color: var(--head); }
.acard h3 { margin-top: 10px; font-size: 17px; font-weight: 900; color: var(--head); line-height: 1.4; }
.acard p:not(.acard__tag) { font-size: 13.5px; line-height: 1.65; }
.acard p span { display: block; font-size: 11px; font-weight: 700; }
.acard__before { margin: 10px 0 18px; color: var(--muted); }
.acard__before span { color: var(--sub); }
.acard__after { position: relative; margin-top: auto; padding: 10px 12px; border-radius: 8px; background: var(--orange-pale); color: var(--head); font-weight: 700; }
.acard__after::before {
  content: ""; position: absolute; left: 14px; top: -14px; width: 8px; height: 8px;
  border: solid var(--orange); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.acard__after span { color: var(--orange); }

/* ---------- CTA band ---------- */
.ctaband { background: var(--band-bg); padding: 48px 0; }
.ctaband__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.ctaband__img { flex: none; height: 160px; width: auto; margin: -24px 0 -48px; align-self: flex-end; }
.ctaband__img--wide { height: 140px; margin-bottom: -48px; }
.ctaband__text { flex: 1; }
.ctaband__small { font-size: 14px; font-weight: 700; color: var(--band-ink); opacity: .8; }
.ctaband__big { margin-top: 4px; font-size: 24px; font-weight: 900; color: var(--band-ink); line-height: 1.5; }
.ctaband__btns { display: flex; flex-direction: column; gap: 14px; flex: none; }
.ctaband__btns .cta { min-width: 320px; min-height: 58px; font-size: 16px; }
.ctaband__btns .cta--line b { font-size: 16px; }

/* ---------- compare ---------- */
.versus { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vs { border-radius: 16px; padding: 24px 28px 28px; text-align: center; }
.vs--them { background: var(--gray); }
.vs--us { background: var(--white); border: 3px solid var(--orange); }
.vs__tag {
  display: inline-flex; align-items: center; height: 34px; padding: 0 16px; border-radius: 999px;
  font-size: 15px; font-weight: 900; color: var(--muted); background: var(--white); border: 1.5px solid var(--line);
}
.vs--us .vs__tag { border-color: var(--orange); }
.vs__tag img { width: 150px; }
.vs__img { height: 200px; width: auto; margin: 14px auto 10px; }
.vs__title { font-size: 26px; font-weight: 900; color: var(--head); line-height: 1.4; }
.vs--us .vs__title { color: var(--orange); }
.vs__text { margin-top: 8px; font-size: 15px; color: var(--muted); line-height: 1.8; }
.ctable { margin-top: 20px; border-radius: 14px; overflow: hidden; border: 2px solid var(--border); }
.ctable__row { display: grid; grid-template-columns: 200px 1fr 1.15fr; }
.ctable__row > span { padding: 16px 20px; border-top: 1px solid var(--line); font-size: 15px; line-height: 1.6; display: block; }
.ctable__row > span:first-child { background: var(--gray); font-weight: 900; color: var(--head); font-size: 14px; }
.ctable__row > span:nth-child(2) { color: var(--muted); }
.ctable__row > span:nth-child(3) { background: #FFFAF4; color: var(--head); }
.ctable__row > span:nth-child(3) b { color: var(--orange); font-weight: 900; }
.ctable__row--head > span { border-top: 0; padding: 14px 20px; display: flex; align-items: center; justify-content: center; font-weight: 900; }
.ctable__row--head > span:first-child { background: var(--gray); }
.ctable__row--head .ctable__them { background: var(--them-bg) !important; color: var(--head) !important; font-size: 17px; }
.ctable__row--head .ctable__us { background: var(--solid) !important; }
.ctable__us img { width: 170px; }

/* ---------- scope ---------- */
.scope { background: var(--gray); }
.scope__grid { margin-top: 32px; display: grid; grid-template-columns: 1.35fr 1fr; gap: 20px; }
.scope__do, .scope__dont { border-radius: 14px; padding: 28px; }
.scope__do { background: var(--white); border: 2px solid var(--border); }
.scope__dont { background: var(--dont-bg); }
.scope__head { font-size: 20px; font-weight: 900; color: var(--head); margin-bottom: 16px; }
.scope__dont .scope__head { color: var(--muted); }
.scope__groups { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sg { background: var(--gray); border-radius: 10px; padding: 14px 16px; }
.sg p:not(.sg__t) { font-size: 13.5px; color: var(--muted); line-height: 1.75; }
.sg__t { display: inline-block; font-size: 13px; font-weight: 900; color: var(--white); background: var(--orange); padding: 2px 10px; border-radius: 4px; margin-bottom: 8px; }
.scope__note { margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--head); background: var(--orange-pale); border-radius: 8px; padding: 10px 14px; }
.scope__dont li { position: relative; padding: 10px 0 10px 24px; border-bottom: 1px solid var(--dont-line); font-size: 14.5px; font-weight: 700; color: var(--muted); line-height: 1.5; }
.scope__dont li::before { content: ""; position: absolute; left: 2px; top: 50%; width: 12px; height: 2px; background: #9AA3AC; }

/* ---------- case ---------- */
.tabs { margin-top: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.tabs__btn {
  border: 2px solid var(--border); background: var(--white); color: var(--head);
  border-radius: 10px 10px 0 0; padding: 12px 10px; font-weight: 900; font-size: 16px; line-height: 1.3;
}
.tabs__btn small { display: block; font-size: 12px; font-weight: 700; color: var(--muted); }
.tabs__btn.is-active { background: var(--solid); border-color: var(--solid); color: var(--white); }
.tabs__btn.is-active small { color: rgba(255, 255, 255, .75); }
.ccard { background: var(--brand); color: var(--on-brand); border-radius: 0 0 16px 16px; padding: 36px 40px 32px; }
.ccard__head { display: grid; grid-template-columns: 1fr 210px; gap: 24px; align-items: center; }
.ccard__img { width: 210px; margin: -12px 0 -8px; }
.ccard__tag { display: inline-block; font-size: 12px; font-weight: 700; color: var(--chip-ink); background: var(--chip-bg); border-radius: 4px; padding: 2px 10px; }
.ccard h3 { margin-top: 12px; font-size: 24px; font-weight: 900; line-height: 1.5; }
.ccard__cols { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ccard__issue, .ccard__do { border-radius: 12px; padding: 18px 20px; }
.ccard__issue { background: var(--brand-2); }
.ccard__do { background: var(--white); color: var(--ink); }
.ccard__h { font-size: 13px; font-weight: 900; margin-bottom: 10px; }
.ccard__issue .ccard__h { color: var(--on-brand-sub2); }
.ccard__do .ccard__h { color: var(--orange); }
.ccard li { position: relative; padding-left: 14px; font-size: 14px; line-height: 1.7; }
.ccard li + li { margin-top: 6px; }
.ccard li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .5; }
.ccard__do li::before { background: var(--orange); opacity: 1; }
.ccard__result { margin-top: 20px; display: flex; align-items: center; gap: 14px; font-size: 17px; font-weight: 900; color: var(--pop); }
.ccard__result span { flex: none; font-size: 12px; color: var(--chip-ink); background: var(--chip-bg); border-radius: 999px; padding: 3px 12px; }

/* ---------- price ---------- */
.price { background: var(--gray); }
.ptable { margin-top: 32px; background: var(--white); border-radius: 14px; border: 2px solid var(--border); overflow: hidden; }
.ptable__row { display: grid; grid-template-columns: 200px 260px 1fr; align-items: center; gap: 20px; padding: 18px 28px; border-top: 1px solid var(--line); }
.ptable__row:first-child { border-top: 0; }
.ptable__row--main { background: #FFFAF4; }
.ptable__name { font-weight: 900; color: var(--head); font-size: 17px; }
.ptable__val { font-weight: 700; color: var(--head); font-size: 15px; line-height: 1.5; }
.ptable__val b { font-family: var(--en); font-size: 30px; color: var(--orange); font-weight: 800; letter-spacing: -.01em; }
.ptable__val small { font-size: 13px; color: var(--muted); font-weight: 500; }
.ptable__desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.rates { margin-top: 20px; }
.rates__title { font-size: 15px; font-weight: 900; color: var(--head); }
.rates dl { margin-top: 10px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rates dl > div { background: var(--white); border-radius: 10px; padding: 14px 18px; display: flex; gap: 14px; align-items: center; }
.rates dt { font-family: var(--en); font-weight: 800; font-size: 28px; color: var(--head); line-height: 1; flex: none; }
.rates dt small { font-size: 14px; }
.rates dd { font-size: 13px; color: var(--muted); line-height: 1.6; }
.example { margin-top: 20px; background: var(--white); color: var(--head); border: 2px solid var(--border); border-radius: 14px; padding: 28px 32px 28px 180px; position: relative; }
.example__img { position: absolute; left: 20px; bottom: 0; height: 170px; width: auto; }
.example__title { font-size: 18px; font-weight: 900; }
.example__title b { font-family: var(--en); font-size: 26px; color: var(--pop); }
.example__steps { margin-top: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.example__steps li { position: relative; background: var(--gray); border-radius: 10px; padding: 16px 18px; display: flex; flex-direction: column; gap: 2px; }
.example__steps li + li::before {
  content: ""; position: absolute; left: -19px; top: 50%; width: 10px; height: 10px;
  border: solid var(--pop); border-width: 2px 2px 0 0; transform: translateY(-50%) rotate(45deg);
}
.example__k { font-size: 13px; font-weight: 700; color: var(--on-brand-sub); }
.example__v { font-size: 16px; font-weight: 900; }
.example__v b { font-family: var(--en); font-size: 34px; color: var(--pop); letter-spacing: -.01em; }
.example__n { font-size: 11px; color: var(--on-brand-sub2); }

/* ---------- monitor offer ---------- */
.offer { background: var(--gray); padding-top: 0; }
.offer__box { background: var(--white); border: 3px solid var(--orange); border-radius: 20px; padding: 44px 48px 40px; }
.offer__top { display: grid; grid-template-columns: 1fr 230px; gap: 24px; align-items: center; }
.offer__badge { display: inline-block; font-size: 14px; font-weight: 900; color: var(--white); background: var(--orange); border-radius: 6px; padding: 4px 14px; }
.offer__img { width: 230px; }
.perks { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.perk { background: var(--orange-pale); border-radius: 14px; padding: 22px 24px 20px; }
.perk__num { font-family: var(--en); font-size: 12px; font-weight: 800; color: var(--orange); letter-spacing: .04em; }
.perk__title { margin-top: 4px; font-size: 21px; font-weight: 900; color: var(--head); line-height: 1.45; }
.perk__text { margin-top: 6px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.perk__price { margin-top: 14px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; font-weight: 700; }
.perk__price s { font-size: 14px; color: var(--sub); }
.perk__price span { color: var(--orange); }
.perk__price b { font-family: var(--en); font-size: 34px; font-weight: 800; color: var(--orange); line-height: 1; }
.perk__note { margin-top: 6px; font-size: 12px; color: var(--sub); }
.offer__cond { margin-top: 24px; border-top: 1px solid var(--line); padding-top: 20px; }
.offer__cond-title { font-size: 15px; font-weight: 900; color: var(--head); }
.offer__cond ul { margin-top: 10px; display: grid; gap: 6px; }
.offer__cond li { position: relative; padding-left: 26px; font-size: 14.5px; line-height: 1.65; }
.offer__cond li::before { content: ""; position: absolute; left: 0; top: .3em; width: 16px; height: 16px; border-radius: 50%; background: var(--orange); }
.offer__cond li::after { content: ""; position: absolute; left: 5.5px; top: calc(.3em + 3px); width: 4px; height: 7px; border: solid var(--white); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.offer__period { margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--head); background: var(--gray); border-radius: 8px; padding: 10px 14px; }
.offer__cta { margin-top: 28px; text-align: center; }
.offer__cta .cta { min-width: 360px; }
.offer__small { margin-top: 12px; font-size: 12px; color: var(--sub); }

/* ---------- flow ---------- */
.steps { margin-top: 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; border: 2px solid var(--border); border-radius: 14px; padding: 20px 20px 24px; background: var(--white); }
.step + .step::before {
  content: ""; position: absolute; left: -18px; top: 88px; width: 0; height: 0;
  border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 10px solid var(--orange);
}
.step__img { height: 130px; width: auto; margin: 0 auto 14px; }
.step__num { font-family: var(--en); font-weight: 800; font-size: 30px; color: var(--orange); line-height: 1; display: inline-block; vertical-align: middle; }
.step__time { margin-left: 8px; display: inline-block; vertical-align: middle; font-size: 12px; font-weight: 700; background: var(--soft); color: var(--head); border-radius: 4px; padding: 1px 8px; }
.step h3 { margin-top: 10px; font-size: 18px; font-weight: 900; color: var(--head); line-height: 1.45; }
.step p:last-child { margin-top: 8px; font-size: 13.5px; color: var(--muted); line-height: 1.75; }

/* ---------- faq ---------- */
.faq { background: var(--cream); }
.qa { margin-top: 32px; display: grid; gap: 10px; }
.qa details { background: var(--white); border-radius: 12px; border: 1.5px solid var(--line); }
.qa details[open] { border-color: var(--border); }
.qa summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 18px 56px 18px 64px; font-weight: 700; color: var(--head); font-size: 16px; line-height: 1.6;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::before {
  content: "Q"; position: absolute; left: 20px; top: 16px; width: 30px; height: 30px; border-radius: 50%;
  background: var(--solid); color: var(--white); font-family: var(--en); font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.qa summary::after {
  content: ""; position: absolute; right: 24px; top: 50%; width: 9px; height: 9px;
  border: solid var(--head); border-width: 0 2px 2px 0; transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.qa details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.qa details p { position: relative; padding: 0 28px 20px 64px; font-size: 15px; color: var(--ink); line-height: 1.85; }
.qa details p::before {
  content: "A"; position: absolute; left: 20px; top: -2px; width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange); color: var(--white); font-family: var(--en); font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.qa a { color: var(--orange); font-weight: 700; }

/* ---------- contact ---------- */
.contact { background: var(--brand); color: var(--on-brand); }
.contact__grid { margin-top: 32px; display: grid; grid-template-columns: 300px 1fr; gap: 32px; align-items: start; }
.contact__side { display: flex; flex-direction: column; gap: 20px; }
.cpoints { display: grid; gap: 10px; }
.cpoints li {
  position: relative; padding: 14px 16px 14px 48px; border-radius: 10px;
  background: var(--brand-2); font-weight: 700; font-size: 15px; line-height: 1.55;
}
.cpoints li::before { content: ""; position: absolute; left: 16px; top: 16px; width: 20px; height: 20px; border-radius: 50%; background: var(--orange); }
.cpoints li::after { content: ""; position: absolute; left: 23px; top: 20px; width: 5px; height: 9px; border: solid var(--white); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.cpoints small { display: block; font-size: 12px; font-weight: 500; color: var(--on-brand-sub); margin-top: 2px; }
.contact__img { width: 280px; margin: 8px auto 0; }
.cform { background: var(--white); border-radius: 16px; padding: 36px 40px; color: var(--ink); }
.cform__title { font-size: 20px; font-weight: 900; color: var(--head); margin-bottom: 20px; }
.cform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.cform__wide { grid-column: 1 / -1; }
label { display: block; font-size: 13px; font-weight: 700; color: var(--head); }
label i { font-style: normal; font-size: 10px; font-weight: 700; color: var(--white); background: #E5484D; border-radius: 3px; padding: 1px 5px; margin-left: 6px; vertical-align: 1px; }
input, select, textarea {
  display: block; width: 100%; margin-top: 6px;
  font: inherit; font-size: 15px; font-weight: 400; color: var(--ink);
  background: var(--gray); border: 1.5px solid transparent; border-radius: 8px; padding: 10px 12px;
}
textarea { resize: vertical; }
select {
  appearance: none; -webkit-appearance: none; height: 47px; padding-right: 36px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23555E69' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--orange); background: var(--white); }
input::placeholder, textarea::placeholder { color: #A3ACB5; }
.is-error { border-color: #E5484D !important; background: #FFF5F5; }
.agree { display: flex; align-items: center; gap: 8px; margin: 20px 0 18px; font-weight: 500; }
.agree input { width: 18px; height: 18px; margin: 0; accent-color: var(--orange); flex: none; }
.agree a { color: var(--orange); }
.cform__done { margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--head); background: var(--orange-pale); border-radius: 8px; padding: 12px 14px; }

/* ---------- side form ---------- */
.side {
  position: fixed; z-index: 40; right: 12px; top: calc(var(--header) + 36px); width: calc(var(--side) - 24px);
  max-height: calc(100vh - var(--header) - 48px); overflow: auto;
  border: 1px solid var(--line); border-radius: 12px; background: var(--white);
  box-shadow: 0 10px 30px rgba(var(--shadow), .12);
}
.side__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; background: var(--solid); color: var(--white); padding: 14px 16px; font-weight: 900; font-size: 16px; line-height: 1.4; }
.side__head img { width: 72px; }
.side__form { padding: 16px; display: grid; gap: 12px; }
.side__form label { font-size: 12px; }
.side__form input[type="text"], .side__form input:not([type]), .side__form input[type="tel"], .side__form input[type="email"] { padding: 8px 10px; font-size: 14px; }
.side__form .agree { margin: 4px 0; font-size: 12px; }
.side__form .cta { min-height: 52px; font-size: 16px; }
.side__form .cform__done { margin-top: 0; font-size: 13px; }

/* ---------- footer ---------- */
.footer { background: var(--footer-bg); color: var(--footer-ink); }
.footer__inner { max-width: 1180px; margin: 0 auto; padding: 36px 40px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer__inner img { width: 200px; }
.footer nav { display: flex; gap: 24px; font-size: 13px; }
.footer nav a { text-decoration: none; }
.footer nav a:hover { color: var(--white); }
.footer__copy { margin-left: auto; font-size: 12px; font-family: var(--en); }
.spbar { display: none; }

/* ---------- responsive ---------- */
@media (min-width: 1280px) and (max-width: 1439px) {
  .mv__inner { padding: 56px 28px 64px; gap: 28px; grid-template-columns: minmax(0, .95fr) minmax(0, 1fr); }
  .mv__title { font-size: 44px; }
  .mv__lead { font-size: 22px; }
  .mv__btns .cta { min-width: 320px; font-size: 16px; }
  .medal { width: 112px; height: 112px; }
  .medal__l { font-size: 30px; }
}
@media (max-width: 1360px) {
  .header__nav { display: none; }
  .header__cta { margin-left: auto; }
}
@media (max-width: 1279px) {
  .side { position: static; width: auto; max-height: none; overflow: visible; margin: 0; border-radius: 0; border: 0; box-shadow: none; background: var(--cream); padding: 72px 32px; }
  .side__head, .side__form { max-width: 640px; margin: 0 auto; }
  .side__head { border-radius: 12px 12px 0 0; }
  .side__form { background: var(--white); border-radius: 0 0 12px 12px; padding: 24px; }
  .mv__inner { grid-template-columns: 1fr; max-width: 760px; }
  .mv::before { clip-path: polygon(0 55%, 100% 38%, 100% 100%, 0 100%); }
  .mv__visual { margin-top: 8px; }
  .medals { left: 0; }
}
@media (max-width: 900px) {
  .relay { grid-template-columns: 1fr; justify-items: center; gap: 0; }
  .relay__arrow { width: 2px; height: 64px; margin: 8px 0; }
  .relay__arrow::after { right: auto; left: 50%; top: auto; bottom: -2px; transform: translateX(-50%) rotate(135deg); }
  .relay__person img { height: 180px; }
  .relay__us { width: 100%; max-width: 300px; }
  .problem__box { grid-template-columns: 1fr; }
  .facts__list { grid-template-columns: 1fr; }
  .fcard { grid-template-columns: 1fr; padding: 32px 24px; }
  .scope__grid, .scope__groups, .ccard__cols { grid-template-columns: 1fr; }
  .ptable__row { grid-template-columns: 1fr; gap: 4px; padding: 18px 20px; }
  .rates dl, .example__steps { grid-template-columns: 1fr; }
  .ctaband__inner { flex-direction: column; align-items: stretch; text-align: center; }
  .ctaband__img { display: none; }
  .ctaband__btns .cta { min-width: 0; }
  .example { padding: 28px 24px; }
  .example__img { display: none; }
  .example__steps { gap: 24px; }
  .example__steps li + li::before { left: 50%; top: -17px; transform: translateX(-50%) rotate(135deg); }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(3)::before { display: none; }
  .versus, .routes, .perks { grid-template-columns: 1fr; }
  .offer__top { grid-template-columns: 1fr; }
  .offer__img { width: 180px; margin: 0 auto; }
  .autolist { grid-template-columns: 1fr 1fr; }
  .ctable__row { grid-template-columns: 110px 1fr 1.2fr; }
  .ctable__row > span { padding: 12px; font-size: 13.5px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__img { display: none; }
}
@media (max-width: 640px) {
  :root { --header: 60px; }
  body { font-size: 15px; }
  .sp-only { display: inline; }
  .pc-only { display: none; }
  .topbar { display: none; }
  .mv__notice { font-size: 12px; }
  .offer__box { padding: 28px 18px; border-radius: 16px; }
  .offer__cta .cta { min-width: 0; width: 100%; }
  .perk__title { font-size: 19px; }
  .header { padding: 0 16px; gap: 12px; }
  .header__logo img { width: 178px; }
  .btn-s--line { display: none; }
  .btn-s { height: 36px; padding: 0 12px; font-size: 12px; }
  .wrap { padding: 0 16px; }
  .sec { padding: 64px 0; }
  .h2 { font-size: 26px; }
  .h2--logo img { width: 220px; }
  .lead { font-size: 15px; }
  .sechead__img { height: 110px; }
  .mv__inner { padding: 36px 16px 48px; gap: 24px; }
  .mv__title { font-size: 36px; }
  .mv__line { white-space: normal; }
  .mv__lead { font-size: 20px; margin-top: 16px; }
  .mv__sub { font-size: 14px; }
  .mv__btns .cta { min-width: 0; width: 100%; }
  .cta { font-size: 16px; min-height: 58px; padding: 10px 18px; }
  .cta--line b { font-size: 16px; }
  .app__body { grid-template-columns: 1fr; }
  .app__list { border-right: 0; border-bottom: 1px solid var(--line); }
  .app__who { display: none; }
  .mv__visual { padding-bottom: 0; }
  .medals { position: static; margin-top: 16px; justify-content: center; gap: 8px; }
  .medal { width: 100px; height: 100px; }
  .medal__l { font-size: 26px; }
  .medal:nth-child(3) .medal__l { font-size: 24px; }
  .medal__s { font-size: 10.5px; }
  .ticker { padding-left: 16px; gap: 12px; }
  .about { padding-top: 48px; }
  .about__box { padding: 32px 18px; border-radius: 12px; }
  .about__title { font-size: 22px; }
  .problem__box { padding: 16px; }
  .facts__list dt b { font-size: 40px; }
  .bridge { padding-bottom: 64px; }
  .ctaband { padding: 40px 0; }
  .ctaband__big { font-size: 20px; }
  .bridge__pill { font-size: 18px; padding: 10px 18px; }
  .bridge__pill img { width: 140px; }
  .bridge__box { padding: 48px 20px 0; }
  .bridge__small { font-size: 15px; }
  .bridge__big { font-size: 24px; }
  .bridge__img { width: 280px; }
  .pain { margin-top: 44px; }
  .pain__list li { font-size: 13px; padding: 7px 12px; }
  .pain__img { height: 104px; }
  .fcard { padding: 28px 18px; }
  .fcard__num { font-size: 96px; }
  .fcard__title { font-size: 21px; padding-left: 48px; }
  .fcard__panel { padding: 16px; }
  .flowviz__row { gap: 14px; }
  .flowviz__row li { font-size: 11.5px; }
  .vs { padding: 20px 16px 24px; }
  .route { padding: 20px 16px 24px; }
  .route__img { height: 170px; }
  .route__title { font-size: 19px; }
  .autolist { grid-template-columns: 1fr; }
  .auto__subhead { margin-top: 36px; }
  .vs__img { height: 160px; }
  .vs__title { font-size: 22px; }
  .ctable { font-size: 13px; }
  .ctable__row { grid-template-columns: 84px 1fr 1.15fr; }
  .ctable__row > span { padding: 10px 8px; font-size: 12.5px; }
  .ctable__row > span:first-child { font-size: 12px; }
  .ctable__us img { width: 118px; }
  .ctable__row--head .ctable__them { font-size: 14px; }
  .scope__do, .scope__dont { padding: 20px 16px; }
  .tabs__btn { font-size: 14px; padding: 10px 4px; }
  .ccard { padding: 24px 18px; }
  .ccard__head { grid-template-columns: 1fr; }
  .ccard__img { width: 180px; margin: 0 auto; grid-row: 1; }
  .ccard h3 { font-size: 19px; }
  .ccard__result { font-size: 15px; align-items: flex-start; flex-direction: column; gap: 6px; }
  .ptable__val b { font-size: 26px; }
  .example { padding: 22px 18px; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .step + .step::before { left: 50%; top: -15px; transform: translateX(-50%) rotate(90deg); display: block !important; }
  .qa summary { padding: 16px 44px 16px 56px; font-size: 15px; }
  .qa summary::before { left: 14px; }
  .qa details p { padding: 0 18px 18px 56px; font-size: 14px; }
  .qa details p::before { left: 14px; }
  .cform { padding: 24px 18px; }
  .cform__grid { grid-template-columns: 1fr; }
  .side { padding: 56px 16px; }
  .footer__inner { padding: 28px 16px 96px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer nav { flex-direction: column; gap: 8px; }
  .footer__copy { margin-left: 0; }
  .spbar {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .96); border-top: 1px solid var(--line);
  }
  .spbar a { display: flex; align-items: center; justify-content: center; height: 48px; border-radius: 999px; font-weight: 900; font-size: 14px; text-decoration: none; }
  .spbar__line { border: 2px solid var(--border); color: var(--head); }
  .spbar__fill { background: var(--orange); color: var(--white); box-shadow: 0 3px 0 var(--orange-dark); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__list { animation: none; }
  .app__live i, .msg__typing i { animation: none; }
  html { scroll-behavior: auto; }
}
