:root {
  color: #0e1b2c;
  background: #f7fafc;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --accent: #1e40af;
  --accent-strong: #1d4ed8;
  --accent-soft: #e8eefb;
  --cta: #ea580c;
  --cta-dark: #c2410c;
  --navy: #0c1f3f;
  --ink: #0e1b2c;
  --muted: #52627a;
  --line: #dfe6ee;
  --surface: #ffffff;
  --bg: #f7fafc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a {
  color: inherit;
}

a:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

.page {
  min-height: 100vh;
}

/* モデル別クラスは互換のため残す（配色はブランド共通） */
.page.theme-omni,
.page.theme-kira,
.page.theme-one {
  --accent: #1e40af;
  --accent-soft: #e8eefb;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: var(--navy);
  color: #fff;
}

.header-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
}

.brand {
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--cta);
}

.model-nav {
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
}

.model-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  min-height: 44px;
  color: #3f4f66;
  font-size: 13px;
  font-weight: 700;
  overflow-x: auto;
}

.model-links a {
  text-decoration: none;
  padding: 12px 0 10px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.model-links a:hover {
  color: var(--accent-strong);
}

.model-links a[aria-current="page"] {
  color: var(--accent-strong);
  border-bottom-color: var(--cta);
}

.mobile-menu {
  display: none;
  flex: 0 0 auto;
}

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  place-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.mobile-menu[open] summary {
  background: rgba(255, 255, 255, .12);
}

.mobile-menu-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 30;
  display: grid;
  padding: 6px 16px 14px;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 30px rgba(6, 16, 34, .35);
}

.mobile-menu-panel a {
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu-panel a:last-child {
  border-bottom: 0;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--cta);
  text-align: center;
  padding: 13px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.header-tel {
  display: block;
  text-align: right;
  text-decoration: none;
  line-height: 1.3;
}

.header-tel .tel-number {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

.header-tel .tel-hours {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, .72);
}

.header-cta {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background .2s;
}

.header-cta:hover {
  background: var(--cta-dark);
}

.hero {
  background:
    radial-gradient(circle at 82% 8%, rgba(37, 99, 235, .1), transparent 42%),
    linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .9) 46%, var(--accent-soft) 100%);
  padding: clamp(52px, 7vw, 94px) 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(30, 64, 175, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(56px, 9vw, 104px);
  line-height: .92;
  font-weight: 900;
  color: var(--accent);
  background: linear-gradient(120deg, #1e3a8a 0%, #2563eb 45%, #38bdf8 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: #3f4f66;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.95;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(234, 88, 12, .28);
  transition: background .2s, transform .2s;
}

.button:hover {
  background: var(--cta-dark);
  transform: translateY(-1px);
}

.button.secondary {
  border: 1px solid #c7d4e4;
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--accent-soft);
  transform: none;
}

.hero-media {
  position: relative;
}

.hero-photo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 29, 60, .12);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(37, 99, 235, .14), transparent 36%),
    linear-gradient(180deg, transparent 0%, rgba(247, 250, 252, .88) 100%);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: auto 12% 9% 12%;
  height: 20px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .16);
  filter: blur(14px);
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 93%;
  height: 93%;
  max-height: 392px;
  object-fit: contain;
}

.theme-one .hero-photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.media-note {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.metric {
  min-height: 104px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .86);
}

.metric-label {
  margin: 0 0 7px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.metric-value {
  margin: 0;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.34;
}

.metric:first-child .metric-value {
  color: var(--cta);
}

.quick-proof {
  border-top: 1px solid var(--line);
  background: var(--accent-soft);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding: 18px 18px;
  border-left: 1px solid rgba(30, 64, 175, .16);
  color: #243b55;
  font-size: 14px;
  font-weight: 700;
}

.proof-list li:first-child {
  border-left: 0;
}

.section {
  padding: clamp(56px, 7vw, 88px) 0;
}

.section.white {
  background: #fff;
}

.section.surface {
  background:
    linear-gradient(180deg, #fff 0%, #f4f7fc 100%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.3;
  font-weight: 900;
}

.section-lead {
  max-width: 710px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.feature-grid,
.scene-grid,
.spec-grid,
.flow-grid {
  display: grid;
  gap: 16px;
}

.feature-grid,
.scene-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature,
.scene,
.spec,
.flow-step {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.feature,
.scene,
.flow-step {
  position: relative;
  padding: 22px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.feature:hover,
.scene:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 29, 60, .1);
}

.feature::before,
.scene::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #38bdf8 100%);
}

.feature::after,
.scene::after {
  content: "";
  position: absolute;
  inset: -38px -46px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .08);
}

.feature-num,
.flow-num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.feature h3,
.scene h3,
.flow-step h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.42;
  font-weight: 900;
}

.feature p,
.scene p,
.flow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.scene {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.scene-label {
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 410px);
  gap: 28px;
  align-items: stretch;
}

.fit-panel {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 24px;
  background: linear-gradient(135deg, #0f3d75 0%, var(--navy) 100%);
  color: #fff;
}

.fit-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  font-weight: 900;
}

.fit-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  line-height: 1.9;
}

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

.fit-list li {
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 13px;
  background: rgba(255, 255, 255, .12);
  font-weight: 700;
}

.combo-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #fff 0%, #eef2fb 100%);
}

.combo-panel h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 900;
}

.combo-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.combo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.combo-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

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

.decision-list li {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: #33455c;
  font-size: 14px;
  font-weight: 700;
}

.decision-list strong {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.planning-section {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, .1), transparent 36%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.planning-kicker {
  width: fit-content;
  margin: 0 auto 12px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.planning-head {
  display: block;
  margin-bottom: 34px;
  text-align: center;
}

.planning-head .section-title {
  max-width: 960px;
  margin: 0 auto;
}

.planning-head .section-lead {
  max-width: 760px;
  margin: 16px auto 0;
}

.planning-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.scenario-board,
.process-panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 70px rgba(15, 29, 60, .1);
}

.scenario-board {
  padding: clamp(22px, 3vw, 30px);
}

.panel-label {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(30, 64, 175, .26);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.scenario-list {
  display: grid;
  gap: 14px;
}

.scenario-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(132px, 160px);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.scenario-card.primary {
  border-color: rgba(30, 64, 175, .4);
  background:
    linear-gradient(90deg, #eef2fb 0%, #fff 64%);
}

.scenario-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.scenario-card h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.28;
  font-weight: 900;
}

.scenario-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.scenario-result {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.result-label {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.result-pill {
  min-width: 130px;
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.scenario-result img {
  width: 74px;
  height: 48px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
}

.process-panel {
  padding: clamp(24px, 3vw, 34px);
}

.process-panel h3 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  font-weight: 900;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  min-height: 138px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.process-list li:nth-last-child(-n+2) {
  grid-column: span 3;
}

.process-num {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.process-list h4 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 900;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.process-note {
  display: block;
  margin-top: 7px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.planning-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--accent-soft);
  overflow: hidden;
}

.planning-summary div {
  min-height: 82px;
  padding: 14px;
  border-left: 1px solid rgba(30, 64, 175, .18);
}

.planning-summary div:first-child {
  border-left: 0;
}

.planning-summary strong,
.planning-summary span {
  display: block;
}

.planning-summary strong {
  margin-bottom: 6px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.planning-summary span {
  color: #33455c;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.spec-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spec {
  position: relative;
  padding: 18px;
  overflow: hidden;
}

.spec::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent) 0%, #38bdf8 100%);
}

.spec dt {
  margin: 0 0 7px;
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}

.spec dd {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}

.flow-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-step {
  min-height: 210px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.flow-step::before {
  content: "";
  position: absolute;
  inset: 16px 16px auto auto;
  width: 42px;
  height: 2px;
  background: rgba(30, 64, 175, .4);
}

.final-cta {
  padding: clamp(58px, 8vw, 96px) 0;
  background: linear-gradient(135deg, #0f3d75 0%, var(--navy) 100%);
  color: #fff;
  text-align: center;
}

.final-cta .section-title {
  max-width: 880px;
  margin: 0 auto;
  color: #fff;
}

.final-cta p {
  max-width: 690px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, .82);
  line-height: 1.9;
}

.cta-actions {
  justify-content: center;
}

.final-cta .button.secondary {
  border-color: rgba(255, 255, 255, .4);
  background: transparent;
  color: #fff;
}

.final-cta .button.secondary:hover {
  background: rgba(255, 255, 255, .12);
}

.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 34px;
}

.footer-brand {
  margin: 0 0 12px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.footer-address {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}

.footer-address a {
  color: inherit;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px 22px;
  font-size: 13px;
  font-weight: 700;
}

.footer-nav a {
  text-decoration: none;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(148, 163, 184, .18);
  text-align: center;
  font-size: 12px;
}

.mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 30;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(12, 31, 63, .96);
  backdrop-filter: blur(10px);
}

.mobile-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.mobile-cta-tel {
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
}

.mobile-cta-contact {
  background: var(--cta);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .feature,
  .scene {
    transition: none;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 60px;
  }

  .nav-links {
    display: none;
  }

  .header-tel {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .metric-strip,
  .feature-grid,
  .scene-grid,
  .planning-grid,
  .split,
  .spec-grid,
  .flow-grid,
  .proof-list {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 310px;
  }

  .theme-one .hero-photo img {
    object-fit: contain;
  }

  .section-head {
    display: block;
  }

  .section-lead {
    margin-top: 14px;
  }

  .proof-list li {
    border-left: 0;
    border-top: 1px solid rgba(30, 64, 175, .16);
  }

  .proof-list li:first-child {
    border-top: 0;
  }

  .planning-head {
    text-align: left;
  }

  .planning-kicker {
    margin-left: 0;
    margin-right: 0;
  }

  .scenario-card {
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
  }

  .scenario-result {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: start;
    align-items: center;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .result-label {
    grid-column: 1 / -1;
  }

  .scenario-result img {
    justify-self: end;
    width: 64px;
    height: 42px;
  }

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

  .process-list li,
  .process-list li:nth-last-child(-n+2) {
    grid-column: 1 / -1;
    min-height: 0;
  }

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

  .planning-summary div:nth-child(odd) {
    border-left: 0;
  }

  .planning-summary div:nth-child(n+3) {
    border-top: 1px solid rgba(30, 64, 175, .18);
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

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

@media (max-width: 640px) {
  .brand {
    font-size: 15px;
  }

  .model-links {
    gap: 18px;
  }
}
