@charset "UTF-8";

:root {
  --navy: #071a3d;
  --deep-navy: #04102a;
  --blue: #0f6bff;
  --blue-dark: #0049d8;
  --blue-pale: #eaf3ff;
  --blue-border: #c9ddf8;
  --green: #17b84d;
  --green-dark: #07983d;
  --green-pale: #eafbf0;
  --white: #fff;
  --off-white: #f7faff;
  --gray-text: #56627a;
  --gray-line: #e5eaf3;
  --table-gray: #f2f4f8;
  --gold: #d9a332;
  --shadow: 0 10px 28px rgba(5, 25, 60, .10);
  --radius: 14px;
  --side: 22px;
  --font: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #eef4ff;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--navy);
  background: #eef4ff;
  font-family: var(--font);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

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

button,
table {
  font-family: inherit;
}

.lp {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30px, rgba(15, 107, 255, .05), transparent 210px),
    linear-gradient(180deg, #fff 0%, #fbfdff 60%, #fff 100%);
}

.site-header {
  position: relative;
  z-index: 2;
  height: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 13px 20px 8px;
  background: #fff;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
}

.brand__body {
  display: grid;
  gap: 1px;
  padding-top: 1px;
}

.brand__name {
  font-size: 14px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: .04em;
}

.brand__sub {
  font-size: 7px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .03em;
}

.hamburger {
  width: 28px;
  height: 24px;
  margin-top: 0;
  padding: 0;
  display: grid;
  align-content: space-between;
  border: 0;
  background: transparent;
}

.hamburger span {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--deep-navy);
}

.section {
  padding: 39px var(--side);
  position: relative;
}

.section-heading {
  text-align: center;
  margin: 0 auto 23px;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.48;
  font-weight: 900;
  letter-spacing: .04em;
}

.section-heading h2 {
  font-size: 24px;
  line-height: 1.5;
}

.section-heading span,
.section-heading em {
  color: var(--green);
  font-style: normal;
}

.section-heading p {
  margin: 13px 0 0;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.72;
  font-weight: 900;
  letter-spacing: .02em;
}

.section-heading--compact {
  margin-bottom: 15px;
}

.section-heading--compact h2 {
  font-size: 21px;
}

.section-heading--compact p {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.5;
}

.card {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.problem {
  padding-top: 9px;
  padding-bottom: 31px;
  background: #fff;
}

.problem .section-heading {
  margin-bottom: 26px;
}

.problem__cards {
  display: grid;
  gap: 12px;
  padding-inline: 12px;
}

.problem-card {
  min-height: 91px;
  display: grid;
  grid-template-columns: 34px 80px 1fr;
  align-items: center;
  gap: 6px;
  padding: 11px 13px 11px 10px;
  border-radius: 14px;
}

.question-badge {
  width: 31px;
  height: 31px;
  margin: 0;
  display: grid;
  place-items: center;
  align-self: start;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.problem-card img {
  width: 82px;
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin-inline: auto;
}

.problem-card:nth-child(3) img {
  width: 84px;
}

.problem-card__text p {
  margin: 0 0 6px;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: .02em;
}

.problem-card__text h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.34;
  font-weight: 900;
  letter-spacing: .02em;
}

.problem-card__text strong {
  color: var(--blue);
  font-size: 21px;
}

.problem__note {
  margin: 12px auto 0;
  padding-inline: 20px;
  text-align: center;
  font-size: 10px;
  line-height: 1.65;
  font-weight: 900;
  letter-spacing: .01em;
}

.solution {
  padding-top: 27px;
  padding-bottom: 37px;
  background: linear-gradient(180deg, #f3f8ff 0%, #fff 100%);
  border-radius: 22px 22px 0 0;
}

.solution-flow {
  margin: 5px 9px 20px;
  padding: 12px 13px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.solution-flow::before,
.solution-flow::after {
  content: "";
  position: absolute;
  top: 43px;
  width: 15px;
  height: 15px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--blue);
  filter: drop-shadow(0 2px 3px rgba(15, 107, 255, .22));
}

.solution-flow::before {
  left: 33.5%;
}

.solution-flow::after {
  left: 65.5%;
}

.solution-flow li {
  min-width: 0;
  display: grid;
  justify-items: center;
  text-align: center;
}

.solution-flow__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  border-radius: 999px;
}

.solution-flow__icon img {
  width: 31px;
  filter: brightness(0) invert(1);
}

.solution-flow__icon--blue {
  background: linear-gradient(180deg, #1981ff 0%, #0055e6 100%);
}

.solution-flow__icon--green {
  background: linear-gradient(180deg, #19cf5c 0%, #06a842 100%);
}

.solution-flow b {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.solution-flow small {
  margin-top: 2px;
  font-size: 9px;
  line-height: 1.34;
  color: var(--navy);
  font-weight: 900;
}

.service-cards {
  display: grid;
  gap: 14px;
  padding-inline: 16px;
}

.service-card {
  min-height: 185px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  position: relative;
  padding: 24px 18px 17px;
  overflow: hidden;
  border-radius: 13px;
}

.service-card__label {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100px;
  padding: 7px 23px 8px 16px;
  color: #fff;
  background: var(--blue);
  border-radius: 0 0 16px 0;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0% 100%);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .03em;
}

.service-card__label--green {
  min-width: 134px;
  background: var(--green);
}

.service-card__visual {
  width: 122px;
  aspect-ratio: 1;
  object-fit: contain;
  align-self: center;
  justify-self: center;
}

.service-card--line .service-card__visual {
  width: 116px;
}

.service-card__copy h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.48;
  font-weight: 900;
  letter-spacing: .03em;
}

.service-card__copy p {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.74;
  font-weight: 700;
  letter-spacing: .02em;
}

.check-list {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 18px;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: .01em;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: .42em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.solution-callout {
  margin: 18px 14px 0;
  padding: 13px 13px 13px 16px;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 12px;
  align-items: center;
  border: 2px solid var(--blue);
  border-radius: 18px;
  background: #fff;
}

.solution-callout span {
  width: 59px;
  height: 59px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #006cff 0%, #07348e 100%);
}

.solution-callout img {
  width: 34px;
  filter: brightness(0) invert(1);
}

.solution-callout p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 900;
  letter-spacing: .02em;
}

.solution-callout em {
  color: var(--green);
  font-style: normal;
}

.problem-callout__icon {
  background: transparent !important;
  font-size: 44px;
  line-height: 1;
}

.comparison {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #fff;
}

.comparison .section-heading {
  margin-bottom: 24px;
}

.comparison .section-heading h2 {
  color: #0d1b33;
}

.comparison .section-heading p {
  color: #0d1b33;
  font-size: 13px;
  line-height: 1.8;
}

.comparison .section-heading em {
  color: #2563ff;
  font-style: normal;
}

.compare-table {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(13, 27, 51, .10);
  -webkit-overflow-scrolling: touch;
}

.compare-table table {
  width: max(100%, 760px);
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}

.compare-table th,
.compare-table td {
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 13px 14px;
  vertical-align: middle;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0;
}

.compare-table tr > :last-child {
  border-right: 0;
}

.compare-table tbody tr:last-child > * {
  border-bottom: 0;
}

.compare-table thead th {
  color: #fff;
  background: #0a1628;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  letter-spacing: .03em;
}

.compare-table thead th:first-child {
  border-top-left-radius: 13px;
}

.compare-table thead th:nth-child(2) {
  width: 37%;
  background: linear-gradient(90deg, #2563ff 0%, #10b981 100%);
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, .25);
}

.compare-table thead th:nth-child(3) {
  width: 30%;
  background: #374151;
  border-top-right-radius: 13px;
}

.compare-table tbody th {
  width: 33%;
  color: #0d1b33;
  background: #f7fafc;
  font-weight: 900;
  text-align: left;
}

.compare-table tbody th,
.compare-table tbody td {
  min-height: 58px;
}

.compare-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  color: #2563ff;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: middle;
}

.compare-table tbody td {
  position: relative;
  color: #334155;
  font-weight: 800;
}

.compare-table tbody td:nth-child(2) {
  padding-left: 48px;
  color: #0d1b33;
  background: #f0fdf8;
  font-weight: 900;
}

.compare-table tbody td:nth-child(3) {
  padding-left: 46px;
  background: #fff;
}

.compare-mark {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.compare-mark::before,
.compare-mark::after {
  content: "";
  position: absolute;
  background: #fff;
}

.compare-mark--check {
  background: #16a34a;
}

.compare-mark--check::before {
  left: 5px;
  top: 9px;
  width: 9px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: transparent;
  transform: rotate(-45deg);
}

.compare-mark--cross {
  background: #94a3b8;
}

.compare-mark--cross::before,
.compare-mark--cross::after {
  left: 5px;
  top: 9px;
  width: 10px;
  height: 2px;
  border-radius: 2px;
}

.compare-mark--cross::before {
  transform: rotate(45deg);
}

.compare-mark--cross::after {
  transform: rotate(-45deg);
}

.results {
  padding-top: 56px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.case-heading {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.case-heading span {
  width: 34px;
  height: 34px;
  position: relative;
  flex: 0 0 auto;
}

.case-heading span::before {
  content: "";
  position: absolute;
  inset: 6px 8px 3px;
  border-left: 3px solid var(--gold);
  border-radius: 50% 0 0 50%;
  transform: rotate(-18deg);
}

.case-heading span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    -8px 6px 0 var(--gold),
    -13px 14px 0 var(--gold),
    -12px 22px 0 var(--gold);
}

.case-heading span:last-child {
  transform: scaleX(-1);
}

.case-heading h2 {
  margin: 0;
  color: #0d1b33;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .08em;
}

.case-list {
  display: grid;
  gap: 18px;
}

.case-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 22px 26px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(13, 27, 51, .09);
  text-align: center;
}

.case-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2563ff 0%, #1d4edb 100%);
  box-shadow: 0 10px 20px rgba(37, 99, 255, .22);
}

.case-card__icon svg {
  width: 31px;
  height: 31px;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.case-card h3 {
  min-height: 2.9em;
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e8f0;
  color: #0d1b33;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: .02em;
}

.case-card__score {
  margin-top: 18px;
  padding-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.case-card__score span {
  padding: 6px 18px 7px;
  border-radius: 999px;
  color: #fff;
  background: #2563ff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.case-card__score p {
  margin: 0;
  color: #2563ff;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.case-card__score strong {
  display: block;
  margin-top: 8px;
  color: #2563ff;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
}

.case-card__text {
  margin: auto 0 0;
  color: #334155;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 800;
  letter-spacing: .01em;
}

.case-card__text span {
  color: #2563ff;
  font-weight: 900;
}

.service-flow {
  padding-top: 18px;
  padding-bottom: 31px;
  background: #fff;
}

.timeline {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0 16px;
  list-style: none;
}

.timeline li {
  min-height: 34px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 74px;
  gap: 8px;
  align-items: center;
  position: relative;
}

.timeline__num {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
}

.timeline h3 {
  margin: 0 0 2px;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: .01em;
}

.timeline p {
  margin: 0;
  font-size: 8px;
  line-height: 1.35;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0;
}

.timeline small {
  width: 100%;
  justify-self: end;
  padding: 4px 4px;
  text-align: center;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-pale);
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.timeline small.is-green {
  color: var(--green-dark);
  background: var(--green-pale);
}

@media (max-width: 374px) {
  :root {
    --side: 16px;
  }

  .section-heading h1 {
    font-size: 23px;
  }

  .section-heading h2 {
    font-size: 21px;
  }

  .problem__cards,
  .service-cards,
  .result-list,
  .timeline {
    padding-inline: 0;
  }

  .problem-card {
    grid-template-columns: 32px 72px 1fr;
    gap: 6px;
  }

  .problem-card__text h2 {
    font-size: 16px;
  }

  .service-card {
    grid-template-columns: 100px 1fr;
    padding-inline: 13px;
  }

  .service-card__visual {
    width: 96px;
  }

  .service-card__copy h3 {
    font-size: 16px;
  }

  .solution-flow {
    margin-inline: 0;
    gap: 12px;
  }

  .solution-callout {
    margin-inline: 0;
    grid-template-columns: 54px 1fr;
  }

  .solution-callout span {
    width: 50px;
    height: 50px;
  }

  .solution-callout p {
    font-size: 15px;
  }

  .result-card {
    grid-template-columns: 86px 44px 1fr;
    gap: 8px;
  }

  .result-card__metric b {
    font-size: 23px;
  }
}

@media (min-width: 768px) {
  body {
    padding-block: 32px;
  }

  .lp {
    margin: 60px auto;
    max-width: 1120px;
    border-radius: 24px;
    box-shadow: 0 0 60px rgba(5, 25, 60, .12);
  }

  /* Header */
  .site-header {
    height: 76px;
    padding: 20px 44px 16px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__name {
    font-size: 19px;
  }

  .brand__sub {
    font-size: 10px;
  }

  .hamburger {
    width: 34px;
    height: 28px;
    margin-top: 6px;
  }

  .hamburger span {
    width: 34px;
    height: 4px;
  }

  /* Section spacing & headings */
  .section {
    padding: 72px 56px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 38px;
    line-height: 1.5;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading p {
    margin-top: 18px;
    font-size: 16px;
  }

  .section-heading--compact {
    margin-bottom: 28px;
  }

  .section-heading--compact h2 {
    font-size: 30px;
  }

  .section-heading--compact p {
    margin-top: 10px;
    font-size: 15px;
  }

  /* Problem section: 3 columns */
  .problem {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .problem .section-heading {
    margin-bottom: 40px;
  }

  .problem__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding-inline: 0;
  }

  .problem-card {
    min-height: 300px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    justify-items: center;
    align-items: start;
    gap: 14px;
    padding: 28px 22px 26px;
    text-align: center;
  }

  .question-badge {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .problem-card img {
    width: 132px;
  }

  .problem-card:nth-child(3) img {
    width: 136px;
  }

  .problem-card__text p {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .problem-card__text h2 {
    font-size: 20px;
    line-height: 1.45;
  }

  .problem-card__text strong {
    font-size: 24px;
  }

  .problem__note {
    margin-top: 32px;
    font-size: 14px;
  }

  /* Solution section */
  .solution {
    padding-top: 64px;
    padding-bottom: 72px;
    border-radius: 28px 28px 0 0;
  }

  .service-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-inline: 0;
  }

  .service-card {
    min-height: 420px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 16px;
    padding: 48px 26px 28px;
  }

  .service-card__label {
    min-width: 116px;
    padding: 9px 26px 10px 18px;
    font-size: 15px;
  }

  .service-card__label--green {
    min-width: 150px;
  }

  .service-card__visual {
    width: 168px;
  }

  .service-card--line .service-card__visual {
    width: 158px;
  }

  .service-card__copy h3 {
    margin-bottom: 12px;
    font-size: 19px;
    line-height: 1.5;
  }

  .service-card__copy p {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.8;
  }

  .check-list {
    gap: 8px;
  }

  .check-list li {
    padding-left: 22px;
    font-size: 13px;
    line-height: 1.55;
  }

  .check-list li::before {
    width: 15px;
    height: 15px;
  }

  .check-list li::after {
    left: 5px;
    width: 7px;
    height: 3px;
  }

  .solution-callout {
    margin: 36px 0 0;
    grid-template-columns: 96px 1fr;
    gap: 22px;
    padding: 24px 32px;
    border-radius: 22px;
  }

  .solution-callout span {
    width: 84px;
    height: 84px;
  }

  .solution-callout img {
    width: 46px;
  }

  .solution-callout p {
    font-size: 22px;
    line-height: 1.6;
  }

  /* Comparison */
  .comparison {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .comparison .section-heading {
    margin-bottom: 34px;
  }

  .compare-table {
    border-radius: 16px;
  }

  .compare-table th,
  .compare-table td {
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.65;
  }

  .compare-table thead th {
    padding: 22px 20px;
    font-size: 16px;
  }

  .compare-table tbody th {
    font-size: 14px;
  }

  .compare-table tbody td:nth-child(2) {
    padding-left: 54px;
  }

  .compare-table tbody td:nth-child(3) {
    padding-left: 52px;
  }

  .compare-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }

  .compare-mark {
    left: 18px;
    width: 22px;
    height: 22px;
  }

  /* Results / Case studies */
  .results {
    padding-top: 80px;
    padding-bottom: 88px;
  }

  .case-heading {
    gap: 18px;
    margin-bottom: 36px;
  }

  .case-heading span {
    width: 40px;
    height: 40px;
  }

  .case-heading h2 {
    font-size: 34px;
  }

  .case-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .case-card {
    padding: 26px 22px 28px;
    border-radius: 16px;
  }

  .case-card__score {
    margin-top: 18px;
    padding-bottom: 18px;
    gap: 10px;
  }

  .case-card__score span {
    padding: 6px 16px 7px;
    font-size: 12px;
  }

  .case-card__score p {
    font-size: 20px;
  }

  .case-card__score strong {
    font-size: 44px;
  }

  .case-card__text {
    font-size: 13px;
    line-height: 1.85;
  }

  /* Service flow timeline: 2 columns */
  .service-flow {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    column-gap: 36px;
    row-gap: 14px;
    padding-inline: 0;
  }

  .timeline li {
    min-height: 60px;
    grid-template-columns: 44px minmax(0, 1fr) 104px;
    gap: 14px;
    padding: 6px 0;
  }

  .timeline__num {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .timeline h3 {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.35;
  }

  .timeline p {
    font-size: 12px;
    line-height: 1.55;
  }

  .timeline small {
    padding: 8px 8px;
    font-size: 11px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 80px 72px;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 42px;
  }

  .section-heading h2 {
    font-size: 36px;
  }
}
