:root {
  --background: #ffffff;
  --foreground: #071945;
  --blue: #06236f;
  --deep-blue: #03143f;
  --yellow: #ffc800;
  --cyan: #36bfff;
  --pale-blue: #eff6ff;
  --border: #dfe6f1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1180px, 100% - 48px);
  margin: 0 auto;
}

.site-header {
  height: 70px;
  background: linear-gradient(#fff 0%, #f8f9fd 100%);
  box-shadow: 0 2px 14px rgba(0, 20, 70, 0.14);
  position: relative;
  z-index: 5;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  width: 207px;
  height: auto;
}

.contact-button,
.hero-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffe26a 0%, var(--yellow) 58%, #f6b800 100%);
  color: #071022;
  font-weight: 800;
  font-size: 15px;
  box-shadow:
    inset 0 -2px 0 rgba(153, 112, 0, 0.18),
    0 8px 20px rgba(255, 196, 0, 0.28);
}

.hero-cta:hover {
  filter: brightness(1.03);
}

.mail-icon {
  width: 23px;
  height: 16px;
  border: 2px solid;
  border-radius: 2px;
  position: relative;
  flex: 0 0 auto;
}

.mail-icon::before,
.mail-icon::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 12px;
  height: 2px;
  background: currentColor;
}

.mail-icon::before {
  left: -1px;
  transform: rotate(35deg);
}

.mail-icon::after {
  right: -1px;
  transform: rotate(-35deg);
}

.chevron {
  font-size: 28px;
  line-height: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 77% 42%, rgba(21, 149, 255, 0.32), transparent 34%),
    linear-gradient(120deg, #020d31 0%, #051e5e 58%, #033984 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(63, 191, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 191, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 2%, #000 48%, #000 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 635px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 58px 0 72px;
}

.hero-kicker {
  margin: 0 0 18px;
  color: #7cd9ff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.22em;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 4.2vw, 56px);
  line-height: 1.16;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero h1 .hero-title-accent {
  color: var(--yellow);
}

.hero-lead {
  margin: 28px 0 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.5;
  font-weight: 800;
}

.hero-body {
  margin: 18px 0 28px;
  color: #d8e9ff;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 600;
}

.hero-cta {
  min-width: 285px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  mix-blend-mode: screen;
  filter: saturate(1.08) contrast(1.03);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.88) 17%, #000 38%);
}

.hero-points {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -55px;
  overflow: hidden;
  border: 1px solid rgba(154, 204, 255, 0.44);
  border-radius: 14px;
  background: rgba(4, 23, 67, 0.92);
  box-shadow: 0 18px 50px rgba(0, 20, 70, 0.24);
  backdrop-filter: blur(16px);
}

.hero-points p {
  min-height: 110px;
  margin: 0;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-points p + p {
  border-left: 1px solid rgba(154, 204, 255, 0.32);
}

.hero-points strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.45;
}

.hero-points span {
  margin-top: 7px;
  color: #a8c9ea;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading > p {
  margin: 0 0 16px;
  color: #0a67be;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.22em;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0;
  color: var(--foreground);
  font-size: clamp(31px, 3.6vw, 48px);
  line-height: 1.35;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.section-intro {
  max-width: 720px;
  margin: 22px auto 0;
  color: #526078;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 600;
}

@media (min-width: 769px) {
  .cases .section-intro,
  .lineup .section-intro {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(15px, 1.5vw, 17px);
  }
}

.overview {
  padding-top: 165px;
  background:
    linear-gradient(90deg, rgba(6, 35, 111, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(6, 35, 111, 0.035) 1px, transparent 1px), #fff;
  background-size: 46px 46px;
}

.overview-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: start;
}

.large-copy {
  margin: 0;
  color: #152747;
  font-size: 20px;
  line-height: 2;
  font-weight: 700;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 38px 1fr;
  align-items: stretch;
  margin-top: 38px;
}

.comparison > div:not(.comparison-mark) {
  min-height: 206px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #d8dee8;
  border-radius: 10px;
  background: #f8f9fb;
}

.comparison .comparison-result {
  border-color: #87bdf1;
  background: #edf6ff;
}

.comparison span {
  color: #6a7180;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.comparison strong {
  margin-top: 11px;
  color: #202838;
  font-size: 18px;
  line-height: 1.55;
}

.comparison-result strong {
  color: #063a91;
}

.comparison small {
  margin-top: 12px;
  color: #68758a;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 600;
}

.comparison-mark {
  align-self: center;
  color: #148bd0;
  text-align: center;
  font-size: 26px;
  font-weight: 900;
}

.overview-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #cdd9e8;
  border-left: 1px solid #cdd9e8;
  background: rgba(255, 255, 255, 0.7);
}

.overview-features article {
  min-height: 170px;
  padding: 28px 25px;
  display: flex;
  gap: 18px;
  border-right: 1px solid #cdd9e8;
  border-bottom: 1px solid #cdd9e8;
}

.overview-features svg {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  color: #0b6bb9;
  stroke-width: 1.7;
}

.overview-features h3 {
  margin: 4px 0 10px;
  color: #0a2c68;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
}

.overview-features p {
  margin: 0;
  color: #5d6b80;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(38, 167, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #03143f 0%, #042a70 100%);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(
    115deg,
    transparent 0 67%,
    rgba(74, 189, 255, 0.12) 67% 67.3%,
    transparent 67.3%
  );
}

.system-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.system .section-heading {
  margin: 0 0 30px;
  text-align: left;
}

.system .section-heading > p {
  color: #74ceff;
}

.system .section-heading h2 {
  color: #fff;
}

.system-copy {
  margin: 0;
  color: #c7d9f3;
  font-size: 16px;
  line-height: 1.95;
  font-weight: 600;
}

.check-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.check-list li + li {
  margin-top: 12px;
}

.check-list svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  color: #08183a;
  stroke-width: 3;
}

.system-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(133, 202, 255, 0.5);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 7, 25, 0.38);
}

.system-figure img {
  width: 100%;
  height: auto;
}

.reasons {
  background: #fff;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #c8d2e1;
  border-left: 1px solid #c8d2e1;
}

.reason {
  min-height: 300px;
  display: grid;
  grid-template-columns: 78px 56px 1fr;
  gap: 24px;
  align-items: start;
  padding: 42px 34px 42px 0;
  border-right: 1px solid #c8d2e1;
  border-bottom: 1px solid #c8d2e1;
}

.reason-number {
  min-height: 78px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.reason-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f5ff;
  color: #0d6ab4;
}

.reason-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.reason-copy > p {
  margin: 1px 0 5px;
  color: #495a73;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.reason-copy h3 {
  margin: 0 0 17px;
  color: var(--blue);
  font-size: 26px;
  line-height: 1.4;
  font-weight: 900;
}

.reason-copy > div {
  color: #4d5869;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 600;
}

.cost {
  background: linear-gradient(180deg, rgba(221, 239, 255, 0.7), rgba(244, 249, 255, 0.86)), #eff6fd;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.cost-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #c9d9eb;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(7, 40, 90, 0.1);
}

.cost-grid img {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: contain;
  background: #fff;
}

.cost-grid figcaption {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-top: 1px solid #e2e9f1;
  color: #173968;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 800;
}

.cost-note {
  margin: 18px 0 0;
  color: #728095;
  text-align: right;
  font-size: 12px;
  line-height: 1.7;
}

.cases {
  background: #fff;
}

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

.case-grid figure {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #0a245d;
}

.case-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.case-grid figure:hover img {
  transform: scale(1.025);
}

.case-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  min-height: 145px;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 34px 24px 22px;
  color: #fff;
  background: linear-gradient(transparent 0%, rgba(1, 16, 52, 0.94) 35%);
}

.case-grid figcaption svg {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  color: #72caff;
  stroke-width: 1.8;
}

.case-grid figcaption strong {
  font-size: 20px;
  line-height: 1.4;
}

.case-grid figcaption span {
  color: #c5d9f5;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.support {
  color: #fff;
  background: #08275c;
}

.support .section-heading > p {
  color: #73ceff;
}

.support .section-heading h2 {
  color: #fff;
}

.support .section-intro {
  color: #bdd2ee;
}

.support-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.support-track figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.support-track img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.support-track figcaption {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  color: #102c5e;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.support-track figcaption span {
  color: #0c7abf;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.lineup {
  background: #f8fafe;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.model-grid article {
  padding: 34px 28px 30px;
  border: 1px solid #cbd8e8;
  border-radius: 12px;
  background: #fff;
  text-align: center;
}

.model-image {
  height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.model-image img {
  width: auto;
  max-height: 100%;
  margin: 0 auto;
}

.model-grid h3 {
  margin: 27px 0 4px;
  color: var(--blue);
  font-family: Arial, "Yu Gothic", sans-serif;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 900;
}

.model-note {
  margin: 0;
  color: #315688;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 800;
}

.model-description {
  margin: 20px 0 0;
  color: #4d596b;
  text-align: left;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 600;
}

.spec-table-wrap {
  margin-top: 52px;
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(7, 40, 90, 0.08);
}

.spec-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: #fff;
  color: #24334c;
  font-size: 14px;
  line-height: 1.55;
}

.spec-table caption {
  padding: 15px 20px;
  background: #05255f;
  color: #fff;
  text-align: left;
  font-size: 16px;
  font-weight: 800;
}

.spec-table th,
.spec-table td {
  padding: 18px 17px;
  border: 1px solid #b8c7dc;
  text-align: left;
  vertical-align: middle;
}

.spec-table thead th {
  background: #0a377c;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.spec-table thead th:first-child {
  width: 24%;
}

.spec-table tbody th {
  background: #eef4fb;
  color: #163b6a;
  font-weight: 800;
}

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

.feature-columns > div {
  padding: 34px;
  border-top: 4px solid #0c4f97;
  background: #fff;
}

.feature-columns h3 {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0b2d64;
  font-size: 20px;
  line-height: 1.4;
}

.feature-columns h3 svg {
  width: 26px;
  height: 26px;
  color: #0e77bb;
  stroke-width: 1.8;
}

.feature-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-columns li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4e5c70;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
}

.feature-columns li + li {
  margin-top: 10px;
}

.feature-columns li svg {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  flex: 0 0 auto;
  color: #078bba;
  stroke-width: 3;
}

.closing-cta {
  padding: 82px 0;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(61, 180, 255, 0.28), transparent 40%), #03143f;
}

.closing-cta p {
  margin: 0 0 12px;
  color: #a9c8ec;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.closing-cta h2 {
  margin: 0 0 30px;
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.4;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.site-footer {
  margin-top: 0;
  padding: 42px 0 14px;
  background: #e9e9eb;
  color: #4f535c;
  border-top: 1px solid #dfdfe2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.7fr;
  gap: 92px;
  padding-bottom: 48px;
}

.footer-logo {
  width: 210px;
  margin-bottom: 22px;
}

.listing-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 350px;
  margin-bottom: 24px;
}

.listing-row p,
.footer-office p,
.footer-office li,
.footer-office a,
.footer-policy a {
  margin: 0;
  color: #5b5f69;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
}

.jpx-logo {
  width: 46px;
  height: auto;
  background: #fff;
}

.footer-site-link {
  display: inline-flex;
  min-width: 190px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2d2d6;
  color: #555a64;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
}

.footer-office h2,
.footer-policy h2 {
  margin: 0 0 24px;
  color: #20242b;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 900;
}

.footer-office p + p {
  margin-top: 4px;
}

.footer-office h2:nth-of-type(2) {
  margin-top: 30px;
  margin-bottom: 22px;
}

.footer-office ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-office li + li {
  margin-top: 4px;
}

.footer-policy a {
  display: inline-block;
}

.footer-office a:hover,
.footer-policy a:hover {
  text-decoration: underline;
}

.copyright {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid #e6e6e8;
  color: #9a9da5;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 28px, 760px);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 54px 0 0;
  }

  .hero-visual {
    height: 420px;
  }

  .hero-visual img {
    mask-image: linear-gradient(180deg, transparent 0%, #000 24%);
  }

  .hero-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-points p:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(154, 204, 255, 0.32);
  }

  .hero-points p:nth-child(4) {
    border-top: 1px solid rgba(154, 204, 255, 0.32);
  }

  .section {
    padding: 90px 0;
  }

  .overview {
    padding-top: 145px;
  }

  .overview-layout,
  .system-layout {
    grid-template-columns: 1fr;
  }

  .system-layout {
    gap: 48px;
  }

  .reason {
    grid-template-columns: 70px 1fr;
  }

  .reason-icon {
    display: none;
  }

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

  .case-grid figure {
    min-height: 380px;
  }

  .support-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .model-image {
    height: 290px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .footer-policy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: auto;
    padding: 10px 0;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .logo {
    width: 160px;
  }

  .contact-button {
    width: 100%;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-copy {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(32px, 10.5vw, 40px);
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-body {
    font-size: 15px;
  }

  .desktop-break {
    display: none;
  }

  .hero-visual {
    height: 310px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    margin-top: -32px;
  }

  .hero-points p {
    min-height: 90px;
    padding: 18px 20px;
  }

  .hero-points p + p,
  .hero-points p:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(154, 204, 255, 0.32);
  }

  .section {
    padding: 72px 0;
  }

  .overview {
    padding-top: 110px;
  }

  .section-heading {
    margin-bottom: 38px;
    text-align: left;
  }

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

  .section-intro {
    margin-top: 16px;
    font-size: 15px;
  }

  .large-copy {
    font-size: 17px;
    line-height: 1.9;
  }

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

  .comparison > div:not(.comparison-mark) {
    min-height: auto;
  }

  .comparison-mark {
    padding: 8px 0;
  }

  .overview-features {
    grid-template-columns: 1fr;
  }

  .overview-features article {
    min-height: auto;
  }

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

  .system-copy {
    font-size: 15px;
  }

  .system-figure {
    border-radius: 8px;
  }

  .reason-list {
    grid-template-columns: 1fr;
  }

  .reason {
    min-height: auto;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 30px 22px 30px 0;
  }

  .reason-number {
    min-height: 60px;
    font-size: 21px;
  }

  .reason-copy h3 {
    font-size: 23px;
  }

  .cost-grid figcaption {
    padding: 15px 18px;
    font-size: 13px;
  }

  .cost-note {
    text-align: left;
  }

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

  .case-grid figure {
    min-height: 430px;
  }

  .support-track {
    grid-template-columns: 1fr;
  }

  .support-track img {
    height: 370px;
  }

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

  .model-image {
    height: 330px;
  }

  .feature-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-columns > div {
    padding: 27px 22px;
  }

  .closing-cta {
    padding: 65px 0;
  }

  .closing-cta p {
    font-size: 14px;
  }

  .site-footer {
    padding-top: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 34px;
  }

  .footer-policy {
    grid-column: auto;
  }

  .footer-logo {
    width: 185px;
  }
}
