:root {
  --bg: #f3f7fc;
  --surface: #ffffff;
  --ink: #071a3d;
  --muted: #5c6b82;
  --navy: #052a66;
  --navy-2: #031a42;
  --blue: #0a5fc8;
  --red: #e7261f;
  --red-dark: #b91c1c;
  --gold: #f4b01b;
  --line: #d7e1ee;
  --soft-blue: #eaf3ff;
  --soft-yellow: #fff4cf;
  --soft-green: #eefbf4;
  --shadow: 0 18px 44px rgba(7, 26, 61, 0.14);
  --font-sans: "Noto Sans JP", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(10, 95, 200, 0.08), transparent 34rem),
    linear-gradient(180deg, #ffffff 0, #f7fbff 24rem, var(--bg) 100%);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, p, span, a, button, th, td, summary { overflow-wrap: anywhere; }

.site-header,
main,
.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(5, 42, 102, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.pr-badge {
  display: inline-grid;
  min-width: 42px;
  height: 30px;
  place-items: center;
  border: 1px solid #c8d2df;
  border-radius: 4px;
  color: #6b7280;
  font-size: 16px;
  background: #fff;
}

.header-nav {
  display: flex;
  gap: 18px;
  color: #32445f;
  font-size: 13px;
  font-weight: 600;
}

.header-nav a { text-decoration: none; }
.ad-note {
  margin: 0;
  color: #32445f;
  font-size: 12px;
  font-weight: 500;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: 44px;
  align-items: stretch;
  padding: 44px 0 18px;
}

.mobile-hero-visual {
  display: none;
}

.hero-copy {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  justify-content: center;
  padding: 42px 0;
}

.eyebrow,
.section-head p {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4.45vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 span {
  display: block;
  word-break: keep-all;
}

h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #223653;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.95;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.benefit-grid span {
  display: grid;
  min-height: 64px;
  place-items: center;
  border: 1px solid #b9cde5;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 22px rgba(7, 26, 61, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
}

.hero-stats div {
  min-height: 82px;
  padding: 14px;
  border: 1px solid #c8d9eb;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 26px rgba(7, 26, 61, 0.08);
}

.hero-stats dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-disclaimer {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 14px 24px;
  color: #fff;
  font: inherit;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(180deg, #ff4038, var(--red));
  box-shadow: 0 12px 24px rgba(231, 38, 31, 0.24);
}

.button.ghost {
  color: var(--navy);
  background: #fff;
  border: 1px solid #b9cde5;
}

.button.wide { width: 100%; }

.diagnosis-panel {
  align-self: center;
  padding: 0 0 22px;
  border: 1px solid #b5c8e1;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.diagnosis-visual {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-bottom: 1px solid #d7e1ee;
  background: #eef4fb;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 24px;
  background: var(--navy);
  color: #fff;
}

.panel-title span {
  font-size: 14px;
  font-weight: 600;
}

.panel-title strong {
  font-size: 22px;
  line-height: 1.1;
}

.choice-group {
  display: grid;
  grid-template-columns: 98px repeat(4, 1fr);
  gap: 12px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid #e3ebf5;
}

.choice-group p {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.choice-group button {
  min-height: 42px;
  padding: 0 6px;
  border: 1px solid #c8d6e7;
  border-radius: 6px;
  background: #f9fbfe;
  color: #111827;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  word-break: keep-all;
  cursor: pointer;
}

.choice-group button.is-selected {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--soft-blue);
  box-shadow: inset 0 0 0 1px var(--blue);
}

.diagnosis-panel .button {
  width: calc(100% - 44px);
  margin: 22px 22px 0;
  font-size: 19px;
}

.microcopy {
  margin: 14px 22px 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.deadline-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 8px 0 20px;
  padding: 14px 20px;
  border: 1px solid #e8c363;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff8dd, #ffe7a6);
  color: #5f3703;
}

.deadline-strip strong {
  font-size: 16px;
}

.deadline-strip span {
  color: #75510c;
  font-size: 13px;
  font-weight: 500;
}

.ranking,
.summary-section,
.purpose-section,
.points,
.compare,
.repayment,
.faq {
  padding: 72px 0 0;
}

.ranking {
  padding-top: 36px;
}

.section-head {
  margin-bottom: 28px;
}

.section-head span {
  display: block;
  max-width: 760px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 2.35vw, 32px);
  font-weight: 800;
  line-height: 1.25;
}

.product-label {
  margin: 0;
  color: var(--red);
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row span {
  padding: 5px 9px;
  border: 1px solid #b7d8c7;
  border-radius: 4px;
  background: #f0fff7;
  color: #087043;
  font-size: 13px;
  font-weight: 700;
}

.button.cta {
  width: min(280px, 100%);
  min-height: 66px;
  font-size: 17px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 32px 0 0;
  border-top: 1px solid #dce5f1;
  border-left: 1px solid #dce5f1;
}

.spec-grid div {
  padding: 22px 16px;
  border-right: 1px solid #dce5f1;
  border-bottom: 1px solid #dce5f1;
  text-align: center;
}

.spec-grid dt {
  color: #36465f;
  font-size: 13px;
  font-weight: 700;
}

.spec-grid dd {
  margin: 6px 0 0;
  color: var(--red);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.fineprint {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.summary-grid,
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.summary-grid article,
.purpose-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 26, 61, 0.07);
}

.summary-grid strong,
.purpose-grid h3 {
  display: block;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.summary-grid span,
.purpose-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 28px;
}

.product-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 26, 61, 0.08);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.35fr);
  grid-template-areas:
    "top top"
    "banner title"
    "banner copy"
    "banner points"
    "banner facts"
    "banner link";
  column-gap: 22px;
  align-items: start;
}

.product-card > .card-topline { grid-area: top; }
.product-card > .product-banner { grid-area: banner; }
.product-card > h3 { grid-area: title; }
.product-card > p { grid-area: copy; }
.product-card > .decision-list { grid-area: points; }
.product-card > .condition-list { grid-area: facts; }
.product-card > .text-link { grid-area: link; }

.brand-mark {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid #dce5f1;
  border-radius: 8px;
  background: #f8fbff;
  color: var(--navy);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark.bank {
  background: linear-gradient(135deg, #e9f8ef, #ffffff);
  color: #008a4d;
}

.brand-mark.acom {
  background: linear-gradient(135deg, #fff3f1, #ffffff);
  color: #d71920;
}

.brand-mark.promise {
  background: linear-gradient(135deg, #fff7d6, #ffffff);
  color: #0054b8;
}

.brand-mark.mobit {
  background: linear-gradient(135deg, #eef8f5, #ffffff);
  color: #006f56;
}

.brand-mark.aiful {
  background: linear-gradient(135deg, #fff7f4, #ffffff);
  color: #d9381e;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.card-topline strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}

.product-card h3 {
  margin: 16px 0 12px;
  color: var(--navy);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
}

.product-banner {
  display: grid;
  width: 100%;
  min-height: 132px;
  place-items: center;
  margin: 0;
  border: 1px dashed #9eb4d1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 95, 200, 0.08), rgba(255, 255, 255, 0.96)),
    #f8fbff;
  color: #52647d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.product-banner-featured {
  min-height: 150px;
}

.product-banner img,
.product-banner picture,
.product-banner iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 0;
  border-radius: 8px;
}

.banner-point-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.35fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 20px;
}

.banner-point-row .decision-list {
  margin: 0;
}

.mobile-break {
  display: none;
}

.product-card p {
  margin: 0;
  color: #31445f;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.decision-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.decision-list li {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  background: #f8fbff;
}

.decision-list strong {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.decision-list span {
  color: #41536c;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.product-card dl {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.condition-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card dl div {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 6px;
  background: #f6f9fd;
}

.product-card dt,
.product-card dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.product-card dt { color: var(--muted); }
.product-card dd { color: var(--red); }

.text-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid #b9cde5;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.trust-grid div,
.point-grid article,
.repayment,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.trust-grid div {
  padding: 22px;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--navy);
  font-weight: 700;
}

.trust-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}

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

.point-grid article {
  min-height: 242px;
  padding: 28px;
}

.point-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.point-grid h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.point-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.8;
}

.guide {
  padding: 72px 0 0;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.guide-grid article {
  min-height: 255px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.guide-grid strong {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 6px;
  background: var(--soft-green);
  color: #087043;
  font-size: 17px;
}

.guide-grid h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.guide-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #b9c7da;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 26, 61, 0.08);
}

table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 14px;
  border-bottom: 1px solid #e0e8f2;
  border-right: 1px solid #e0e8f2;
  text-align: center;
  vertical-align: middle;
  font-weight: 500;
  line-height: 1.65;
}

thead th {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
}

tbody th {
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
}

tbody tr:nth-child(even) { background: #f8fbff; }

.repayment {
  padding: 36px;
}

.checklist {
  display: grid;
  gap: 14px;
}

.checklist label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #26364f;
  font-weight: 600;
  line-height: 1.7;
}

.checklist input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--blue);
}

.warning-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid #e7b94e;
  border-radius: 8px;
  background: var(--soft-yellow);
  color: #5f3703;
}

.warning-box strong {
  white-space: nowrap;
}

.repayment-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.repayment-cards article {
  padding: 20px;
  border: 1px solid #d7e1ee;
  border-radius: 8px;
  background: #f8fbff;
}

.repayment-cards h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
}

.repayment-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.faq {
  padding-bottom: 58px;
}

.faq details {
  padding: 0 22px;
  margin-top: 14px;
}

.faq summary {
  padding: 20px 0;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}

.faq p {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.8;
}

.site-footer {
  padding: 42px 0 112px;
  color: var(--muted);
  font-size: 13px;
}

.source-note {
  margin: 0 0 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.section-head.compact {
  margin-bottom: 20px;
}

.section-head.compact h2 {
  font-size: 24px;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.disclosure-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.disclosure-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 16px;
}

.disclosure-grid p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.disclosure-grid p:last-child {
  margin-bottom: 0;
}

.disclosure-grid a,
.operator-list a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.operator-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.operator-list div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  align-items: start;
}

.operator-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.operator-list dd {
  min-width: 0;
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 20;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(5, 42, 102, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.sticky-cta a {
  display: grid;
  min-height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.sticky-cta a:last-child {
  background: var(--red);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0 18px;
  }

  .hero-copy {
    min-height: auto;
    padding: 18px 0 6px;
  }

  .diagnosis-panel {
    align-self: stretch;
  }

  .trust-grid,
  .point-grid,
  .product-grid,
  .summary-grid,
  .purpose-grid,
  .disclosure-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    font-size: 18px;
    white-space: normal;
  }

  .header-nav {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .mobile-hero-visual {
    display: block;
    overflow: hidden;
    border: 1px solid #b5c8e1;
    border-radius: 8px;
    background: #eef4fb;
    box-shadow: 0 14px 34px rgba(7, 26, 61, 0.12);
  }

  .mobile-hero-visual img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }

  .diagnosis-panel .diagnosis-visual {
    display: none;
  }

  .benefit-grid,
  .spec-grid,
  .hero-stats,
  .repayment-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .choice-group {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px;
  }

  .choice-group p {
    grid-column: 1 / -1;
  }

  .diagnosis-panel .button {
    width: calc(100% - 32px);
    margin-inline: 16px;
    font-size: 15px;
  }

  .deadline-strip,
  .warning-box {
    align-items: stretch;
    flex-direction: column;
  }

  .button.cta {
    width: 100%;
  }

  .repayment,
  .product-card,
  .guide-grid article {
    padding: 28px 22px;
  }

  .product-card {
    min-height: auto;
  }

  .product-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "banner"
      "title"
      "copy"
      "points"
      "facts"
      "link";
    row-gap: 0;
  }

  .banner-point-row {
    grid-template-columns: 1fr;
  }

  .product-banner,
  .product-banner-featured {
    min-height: 108px;
  }

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

  .brand-mark {
    min-height: 88px;
    font-size: 30px;
  }

  .mobile-break {
    display: block;
  }

  .product-card h3 {
    font-size: 30px;
  }

  .product-card p {
    font-size: 15px;
  }

  .product-card dl div {
    padding: 14px;
  }

  .sticky-cta {
    display: grid;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 28px;
  }

  .benefit-grid,
  .spec-grid,
  .hero-stats,
  .repayment-cards {
    grid-template-columns: 1fr;
  }

  .choice-group {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .product-card {
    padding: 28px 20px;
  }

  .brand-mark {
    min-height: 78px;
    font-size: 26px;
  }

  .product-card h3 {
    font-size: 28px;
  }

  .card-topline strong {
    width: 42px;
    height: 42px;
  }
}
