@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");

* {
  box-sizing: border-box;
}
:root{
	--fontFamily : "Noto Sans JP" , sans-serif;
	--fontWeight : 400;
}
body.roadstar {
  margin: 0;
  background: #f8f8f8;
  color: #111;
  font-family: var(--fontFamily);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .72s ease,
    transform .72s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.numbers.scroll-reveal {
  transform: translate(-50%, calc(50% + 28px));
}

.numbers.scroll-reveal.is-visible {
  transform: translate(-50%, 50%);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .numbers.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body.roadstar-page-placeholder .site-header {
  height: 120px;
  padding: 16px 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
}

body.roadstar-page-placeholder .logo span {
  display: block;
  margin-bottom: 9px;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .08em;
}

body.roadstar-page-placeholder .logo img {
  height: 48px;
}

body.roadstar-page-placeholder .site-header nav {
  display: flex;
  gap: 18px;
  margin-top: 68px;
  font-size: 15px;
  letter-spacing: .1em;
}

body.roadstar-page-placeholder .site-header nav a + a::before {
  content: "／";
  margin-right: 18px;
}

body.roadstar-page-placeholder .header-contact {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 18px;
  align-items: center;
  justify-items: end;
}

body.roadstar-page-placeholder .header-contact p {
  grid-column: 1 / 3;
  margin: 0;
  font-size: 14px;
  line-height: 1.15;
  text-align: right;
  letter-spacing: .1em;
}

.tel {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .08em;
}

.line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  height: 34px;
  background: #00c200;
  color: #fff;
  font-weight: 700;
  letter-spacing: .08em;
}

.hero {
  position: relative;
  min-height: 650px;
  margin-bottom: 60px;
  padding-bottom: 48px;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(70px, 1fr) 1060px minmax(70px, 1fr);
  align-items: center;
  background: #000;
  color: #fff;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background: linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.86) 44%, rgba(0,0,0,.18) 74%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 24px;
  color: #c90;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 17px;
  letter-spacing: .16em;
}

.hero h1 {
  margin: 0;
  font-size: 62px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: .08em;
}

.hero h1 span {
  font-size: .85em;
  line-height: 1;
}

.hero h1 em {
  color: #e62100;
  font-style: italic;
}

.lead {
  width: 500px;
  margin: 34px 0 0;
  font-size: 17px;
  line-height: 2;
  letter-spacing: .08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}

.hero-actions span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .06em;
}

.hero-actions span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-52%);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.numbers {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  transform: translate(-50%, 50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 1060px;
  margin: 40px 0 0;
  padding: 16px 20px 18px;
  background: #e62100;
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
}

.numbers div {
  position: relative;
  display: flex;
  min-height: 112px;
  padding: 12px 50px 8px;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}

.numbers div + div {
  border-left: 1px solid rgba(255, 255, 255, .35);
}

.numbers div::before,
.numbers div::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 78px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
}

.numbers div::before {
  left: 54px;
  transform: translateY(-50%);
  background-image: url("../images/roadstar/gekkei_L.svg");
}

.numbers div::after {
  right: 54px;
  transform: translateY(-50%);
  background-image: url("../images/roadstar/gekkei_R.svg");
}

.numbers strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  letter-spacing: .02em;
  font-weight: 600;
}

.numbers span {
  display: inline-block;
  min-width: 118px;
  padding: 3px 12px 2px;
  background: #fff;
  color: #e62100;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.section {
  position: relative;
  padding: 110px calc((100% - 1060px) / 2);
}

.section-title {
  margin-bottom: 54px;
}

.section-title p {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: .1em;
  color: #c90;
}

.section-title h2 {
  margin: 0;
  font-style: italic;
  font-size: 42px;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: .1em;
}

.section-title .section-description {
  max-width: 720px;
  margin: 22px 0 0;
  color: #4a4a4a;
  font-family: inherit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .08em;
}

.section-title.light {
  color: #fff;
}

.reason {
  overflow: hidden;
  padding-bottom: 124px;
  background: #f8f8f8;
  color: #111;
  background:  url("../images/roadstar/bg_img_rs_pc.png") no-repeat right center;
}

.reason::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 535px;
  height: 483px;
  background: url("../images/roadstar/bg_rut_pc.png") no-repeat left top / contain;
  pointer-events: none;
}

.reason::after {
  display: none;
}

.reason .section-title {
  position: relative;
  z-index: 1;
}

.reason-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.reason-main {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.reason-main article {
  position: relative;
  min-height: 520px;
  padding: 34px 28px 32px;
  background: rgba(255,255,255,.98);
  border-top: 6px solid #111;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}


.reason-grid span {
  display: inline-block;
  color: #e62100;
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .06em;
}

.reason-grid h3 {
  margin: 20px 0 16px;
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: .08em;
}

.reason-main p,
.custom-copy > p,
.generation-grid span {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .08em;
}

.reason-main p + p {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.12);
}

.reason-main p strong {
  color: #e62100;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 900;
}

.quality {
  overflow: hidden;
  padding-right: max(40px, calc((100% - 1060px) / 2));
  padding-left: max(40px, calc((100% - 1060px) / 2));
  background: #111 url("../images/home/needs/rut.png") right top / 620px auto no-repeat;
  color: #fff;
}

.quality-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
  padding: 0;
  background: transparent;
  color: #fff;
}


.quality-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 24px;
  background: rgba(0,0,0,.28);
  color: #fff;
}

.quality-grid article {
  position: relative;
  grid-column: span 2;
  min-height: 250px;
  padding: 26px 22px 24px;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.quality-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.quality-grid article:nth-child(5) {
  grid-column: 4 / span 2;
}

.quality-grid article::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 80px;
  width: 42px;
  height: 2px;
  background: #c90;
}

.quality-grid span {
  color: #c90;
  font-size: 40px;
}

.quality-grid h3 {
  margin-top: 34px;
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.4;
}

.quality-grid p {
  margin: 0;
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: .08em;
}

.flow {
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 92px;
  background: #eef3f5;
  color: #111;
  background-image: url("../images/roadstar/bg_pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  background-attachment: fixed;
}

.flow::before {
  display: none;
}

.flow-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 6px;
  margin: 0 0 26px;
  padding: 6px;
  background: rgba(255, 255, 255, .86);
}

.flow-tabs button {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
  cursor: pointer;
}

.flow-tabs button.is-active {
  background: #e7000b;
  color: #fff;
}

.flow-tabs button:focus-visible {
  outline: 3px solid #c90;
  outline-offset: 2px;
}

.flow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0;
  padding: 42px 0 0;
  list-style: none;
}

.flow-steps[hidden] {
  display: none;
}

.flow-steps--normal {
  grid-template-columns: repeat(4, 1fr);
}

.flow-steps::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 20px;
  display: block;
  height: 3px;
  background: #e7000b;
}

.flow-steps li {
  position: relative;
  z-index: 1;
  min-height: 184px;
  padding: 44px 22px 28px;
  text-align: center;
  background: rgba(255, 255, 255, .9);
  color: #0a0a0a;
  box-shadow: none;
}

.flow-steps li::before {
  display: none;
}

.flow-steps b {
  position: absolute;
  left: 50%;
  top: -42px;
  transform: translateX(-50%);
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0;
  place-items: center;
  border-radius: 50%;
  background: #e7000b;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.flow-icon {
  display: none;
}

.flow-icon svg,
.remote-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-steps strong {
  display: block;
  margin-top: 0;
  color: #e7000b;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0;
}

.flow-steps .flow-title-tight {
  font-size: 16px;
  white-space: nowrap;
}

.flow-steps li > span:last-child {
  display: block;
  margin-top: 28px;
  color: #111;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0;
  text-align: left;
}

.flow-notes {
  margin-top: 22px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, .9);
  color: #111;
}

.flow-notes[hidden] {
  display: none;
}

.flow-notes p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .04em;
}

.flow-notes p + p {
  margin-top: 4px;
}

.remote-support {
  margin-top: 64px;
  padding: 32px;
  background: rgba(255, 255, 255, .9);
  text-align: center;
}

.remote-support h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
}

.remote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.remote-grid article {
  min-width: 0;
}

.remote-grid article + article {
  padding-left: 24px;
  border-left: 1px solid rgba(0, 0, 0, .18);
}

.remote-icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  place-items: center;
  color: #e7000b;
}

.remote-grid h4 {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

.remote-grid p {
  margin: 8px 0 0;
  color: #4a5565;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
}

.remote-note {
  margin: 28px 0 0;
  color: #364153;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

.custom {
  display: grid;
  grid-template-columns: 480px 520px;
  gap: 60px;
  align-items: center;
  background: #f8f8f8;
}

.custom-photo img {
  width: 480px;
  height: 430px;
  object-fit: cover;
}

.custom-copy .section-title {
  margin-bottom: 27px;
}

.custom-copy > h2 {
  margin: 0 0 26px;
  font-size: 38px;
  line-height: 1.35;
  letter-spacing: .1em;
}

.custom-copy ul {
  margin: 28px 0 0;
  padding: 24px 28px;
  border: 2px solid #c90;
  background: #fff;
}

.custom-copy li {
  list-style: none;
  color: #c90;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .08em;
}

.custom-copy li::before {
  content: "✓";
  margin-right: 8px;
}

.custom-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 348px;
  max-width: 100%;
  min-height: 50px;
  margin-top: 28px;
  padding: 0 24px;
  background: #e7000b;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .04em;
  text-decoration: none;
}

.custom-link::after {
  content: "↗";
  margin-left: 12px;
  font-size: 15px;
  line-height: 1;
}

.custom-link:hover,
.custom-link:focus-visible {
  background: #111;
}

.custom-link:focus-visible {
  outline: 3px solid #c90;
  outline-offset: 3px;
}

.generation {
  background: #141414;
  background-image: url("../images/roadstar/bg3_pc.png");
  background-size: 80% auto;
  background-repeat: no-repeat;
  background-position: right top;

  .section-title {
    color: #fff;
  }
  .section-description {
    color: #fff;
  }
}

.generation-table-wrap {
  margin: 48px 0 0 ;
  overflow-x: auto;
  background: rgba(255, 255, 255, .7);
}

.generation-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

.generation-table th,
.generation-table td {
  padding: 18px 16px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .04em;
  vertical-align: middle;
}

.generation-table thead th {
  background: #353535;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.generation-table thead th:first-child,
.generation-table tbody th {
  width: 170px;
  text-align: left;
}

.generation-table thead th span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
}

.generation-table tbody th {
  color: #111;
  font-weight: 900;
}

.generation-table tbody td {
  text-align: center;
}

.generation-table tbody tr:nth-child(even) {
  background: #f6f7f8;
}

.generation-table tbody tr:last-child th,
.generation-table tbody tr:last-child td {
  border-bottom: 0;
}

.generation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.generation-grid button {
  display: block;
  width: 100%;
  padding: 28px 22px 30px;
  border: 0;
  border-bottom: 5px solid #e62100;
  background: #f8f8f8;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.generation-grid button:hover,
.generation-grid button:focus-visible {
  background: #fff;
  transform: translateY(-4px);
}

.generation-grid button:focus-visible {
  outline: 3px solid #c90;
  outline-offset: 3px;
}

.generation-grid .generation-level {
  display: block;
  min-height: 22px;
  margin-bottom: 14px;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .08em;
}

.generation-grid .generation-stars {
  display: inline;
  color: #c90;
}

.generation-grid h3 {
  margin: 0;
  font-size: 50px;
  color: #111;
}

.generation-grid p {
  margin: 2px 0 20px;
  color: #c90;
  font-weight: 700;
  letter-spacing: .08em;
}

.generation-grid small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 18px;
  background: #e62100;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
}

.generation-grid small::after {
  content: ">";
  margin-left: 10px;
  font-size: 15px;
  line-height: 1;
}

.results {
  overflow: hidden;
  background: #111;
}

.results::before {
  left: calc(50% - 750px);
  top: 80px;
}

.result-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -18px 0 28px;
}

.result-toolbar button {
  min-width: 82px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
}

.result-toolbar button.is-active {
  border-color: #e62100;
  background: #e62100;
}

.result-toolbar button:focus-visible {
  outline: 3px solid #c90;
  outline-offset: 2px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.result-grid article {
  background: #fff;
}

.result-grid article[hidden] {
  display: none;
}

.result-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.result-grid p {
  min-height: 86px;
  margin: 0;
  padding: 18px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .08em;
  font-weight: 700;
}

.result-grid p span {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 3px 8px;
  background: #e62100;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: .06em;
}

.result-empty {
  margin: 0;
  padding: 24px;
  background: rgba(255,255,255,.92);
  color: #111;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .06em;
}

.result-empty[hidden] {
  display: none;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.result-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .08em;
}

.stock-link {
  background: #e62100;
}

.contract-link {
  background: #444;
}

.result-actions .line {
  min-width: 190px;
  height: 52px;
}

.contact {
  padding: 100px 20px;
  background:
    linear-gradient(90deg, rgba(230,33,0,.92), rgba(0,0,0,.9)),
    url("../images/home/link/bg_pc.jpg") center / cover no-repeat;
  color: #fff;
  text-align: center;
}

.contact p {
  margin: 0 0 16px;
  font-size: 16px;
  letter-spacing: .14em;
}

.contact h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.35;
  letter-spacing: .1em;
}

.contact div {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 34px;
}

.contact .tel {
  color: #fff;
  font-size: 34px;
}

body.roadstar-page-placeholder footer {
  padding: 70px 20px 46px;
  background: #4b4b4b;
  color: #cecece;
  text-align: center;
  letter-spacing: .08em;
}

body.roadstar-page-placeholder footer img {
  height: 51px;
  margin: 0 auto 34px;
}

body.roadstar-page-placeholder footer p {
  margin: 0 0 28px;
  font-size: 16px;
}

body.roadstar-page-placeholder footer small {
  font-size: 13px;
}

@media (max-width: 768px) {
  body {
    min-width: 0;
  }

  body.roadstar-page-placeholder .site-header {
    height: auto;
    padding: 14px 16px;
    align-items: center;
  }

  body.roadstar-page-placeholder .logo span,
  body.roadstar-page-placeholder .site-header nav,
  body.roadstar-page-placeholder .header-contact p {
    display: none;
  }

  body.roadstar-page-placeholder .logo img {
    height: 38px;
  }

  .header-contact {
    display: flex;
    gap: 8px;
  }

  .header-contact .tel {
    font-size: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111;
  }

  .header-contact .tel::before {
    content: "TEL";
    display: grid;
    height: 100%;
    place-items: center;
    color: #fff;
    font-size: 13px;
  }

  .header-contact .line {
    min-width: 76px;
    height: 48px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    display: block;
    margin-bottom: 0;
    padding: 86vw 24px 56px;
    background:
      url("../images/roadstar/roadster_mv_sp.png") center top / 100% auto no-repeat,
      #000;
  }

  .hero-video {
    display: none;
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .lead {
    width: auto;
    font-size: 15px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    margin-top: 28px;
  }

  .hero-actions span {
    display: inline-flex;
    padding: 0 0 0 18px;
    font-size: 13px;
    letter-spacing: .06em;
    white-space: nowrap;
  }

  .numbers,
  .reason-grid,
  .flow ol,
  .custom,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .numbers {
    position: static;
    transform: none;
    grid-template-columns: repeat(3, 1fr);
    width: calc(100% - 24px);
    margin: 40px auto -28px;
    padding: 12px 6px 14px;
  }

  .numbers.scroll-reveal {
    transform: translateY(28px);
  }

  .numbers.scroll-reveal.is-visible {
    transform: translateY(0);
  }

  .numbers div {
    min-height: 92px;
    padding: 8px 6px 6px;
  }

  .numbers div::before,
  .numbers div::after {
    display: none;
  }

  .numbers strong {
    margin-top: 7px;
    font-size: 22px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .numbers span {
    min-width: 0;
    width: 100%;
    padding: 3px 4px 2px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .04em;
  }

  .section {
    padding: 72px 24px;
  }

  .section-title h2,
  .contact h2 {
    font-size: 32px;
  }

  .flow {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .flow-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 24px;
  }

  .flow-tabs button {
    min-height: 48px;
    padding: 0 10px;
    font-size: 14px;
  }

  .flow-steps {
    gap: 18px;
    padding-top: 0;
  }

  .flow-steps::before {
    display: none;
  }

  .flow-steps li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 12px;
    align-items: center;
    min-height: 0;
    padding: 24px 20px;
    border: 0;
    background: #fff;
    box-shadow: none;
    text-align: left;
  }

  .flow-steps li::before {
    display: none;
  }

  .flow-steps b {
    position: static;
    transform: none;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .flow-steps strong {
    align-self: center;
    font-size: 17px;
    line-height: 1.5;
  }

  .flow-steps .flow-title-tight {
    font-size: 17px;
    white-space: normal;
  }

  .flow-steps li > span:last-child {
    grid-column: 1 / -1;
    margin-top: 16px;
    font-size: 14px;
  }

  .flow-notes {
    margin-top: 18px;
    padding: 16px 18px;
  }

  .remote-support {
    margin-top: 38px;
    padding: 28px 20px;
  }

  .remote-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .remote-grid article:first-child {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(0, 0, 0, .18);
  }

  .remote-grid article + article {
    padding-top: 22px;
    padding-left: 0;
    border-left: 0;
  }

  .remote-grid p {
    text-align: left;
  }

  .remote-note {
    font-size: 14px;
    text-align: left;
  }

  .reason {
    background: #f8f8f8;
    padding-bottom: 72px;
  }

  .reason::before {
    width: 300px;
    height: 271px;
  }

  .quality {
    padding-right: 24px;
    padding-left: 24px;
    background: #111 url("../images/home/needs/rut.png") right top / 360px auto no-repeat;
  }

  .reason::after {
    display: none;
  }

  .reason-main article {
    min-height: 0;
    padding: 28px 22px;
  }

  .reason-main p,
  .quality-grid p {
    font-size: 14px;
  }

  .quality-title {
    margin-bottom: 32px;
    padding: 0;
    background: transparent;
  }

  .quality-title::after {
    display: none;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    padding: 0;
    background: rgba(0,0,0,.28);
  }

  .quality-grid article {
    grid-column: auto;
    min-height: 0;
    padding-right: 22px;
    padding-left: 22px;
  }

  .quality-grid article:nth-child(4),
  .quality-grid article:nth-child(5) {
    grid-column: auto;
  }

  .custom-photo img {
    width: 100%;
    height: 250px;
  }

  .generation-table-wrap {
    margin-bottom: 34px;
    border-radius: 8px;
  }

  .generation-table {
    min-width: 860px;
  }

  .generation-table th,
  .generation-table td {
    padding: 14px 12px;
    font-size: 13px;
    line-height: 1.5;
  }

  .generation-table thead th:first-child,
  .generation-table tbody th {
    width: 132px;
  }

  .generation-grid {
    grid-template-columns: 1fr;
  }

  .generation-grid button {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 14px;
    padding: 24px 20px 26px;
  }

  .generation-grid .generation-level {
    flex: 0 0 100%;
  }

  .generation-grid h3 {
    font-size: 38px;
  }

  .generation-grid p {
    margin: 0;
    font-size: 14px;
  }

  .generation-grid button > span:not(.generation-level) {
    flex: 0 0 100%;
    margin-top: 12px;
  }

  .generation-grid small {
    flex: 0 0 auto;
    margin-top: 18px;
  }

  .result-toolbar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin-top: -12px;
  }

  .result-toolbar button {
    min-width: 0;
    min-height: 38px;
    padding: 0 4px;
    font-size: 12px;
    letter-spacing: .02em;
  }

  .result-grid img {
    height: auto;
  }

  .result-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .result-actions a,
  .result-actions .line {
    width: 100%;
    min-width: 0;
  }

  .contact div {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .contact .line {
    width: 220px;
    min-width: 0;
  }
}
