:root {
  --ink: #17313a;
  --ink-soft: #234751;
  --muted: #5f7177;
  --line: #dbe5e4;
  --line-strong: #bed2d0;
  --paper: #fbfcf8;
  --white: #ffffff;
  --teal: #176f75;
  --teal-dark: #0d4d54;
  --mint: #d9eee8;
  --coral: #d96753;
  --amber: #e7b75f;
  --blue: #355c9a;
  --shadow: 0 18px 55px rgba(23, 49, 58, 0.12);
  --soft-shadow: 0 10px 34px rgba(23, 49, 58, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(217, 103, 83, 0.42);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 64px);
  background: rgba(251, 252, 248, 0.94);
  border-bottom: 1px solid rgba(219, 229, 228, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 111, 117, 0.2);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 15px;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-action,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #218990);
  box-shadow: 0 12px 24px rgba(23, 111, 117, 0.2);
}

.button.secondary {
  width: 100%;
  color: var(--teal-dark);
  background: var(--mint);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.button.full {
  width: 100%;
}

.nav-action:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(23, 49, 58, 0.16);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.hero-section {
  position: relative;
  min-height: min(760px, calc(84vh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #163138;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 76%, rgba(217, 103, 83, 0.28), transparent 26%),
    linear-gradient(90deg, rgba(16, 44, 51, 0.9) 0%, rgba(16, 44, 51, 0.68) 42%, rgba(16, 44, 51, 0.18) 100%),
    linear-gradient(0deg, rgba(16, 44, 51, 0.86), rgba(16, 44, 51, 0.08) 54%),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=82") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 11vh, 130px) 0 clamp(36px, 7vh, 72px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-section .eyebrow {
  color: #ffd18c;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(54px, 9vw, 112px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.1vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(42px, 8vh, 84px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(880px, 100%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-metrics div {
  padding: 18px;
  background: rgba(8, 30, 36, 0.28);
  transition: background 160ms ease;
}

.hero-metrics div:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-metrics dt {
  font-size: 18px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

section:not(.hero-section) {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 4vw, 64px);
}

.flow-section {
  background: #10262c;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.flow-grid article {
  min-height: 178px;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.flow-grid article:nth-child(2) {
  background: rgba(53, 92, 154, 0.22);
}

.flow-grid article:nth-child(3) {
  background: rgba(217, 103, 83, 0.18);
}

.flow-grid span {
  display: inline-grid;
  width: 42px;
  height: 34px;
  margin-bottom: 20px;
  place-items: center;
  color: #ffd18c;
  border: 1px solid rgba(255, 209, 140, 0.5);
  border-radius: 8px;
  font-weight: 800;
}

.flow-grid h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.flow-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.contact-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.premium-section,
.solution-section {
  background: var(--white);
}

.premium-section {
  background: linear-gradient(180deg, var(--white), #f4faf7);
}

.planner-section,
.scenarios-section {
  background: var(--white);
}

.premium-layout,
.solution-layout,
.planner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: start;
}

.premium-panel,
.solution-panel,
.solution-result,
.premium-result,
.planner-panel,
.result-panel,
.contact-form {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.premium-panel,
.solution-panel,
.planner-panel {
  display: grid;
  gap: 0;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.input-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.input-grid input,
.input-grid select {
  width: 100%;
  min-height: 48px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #f7faf8;
  transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.input-grid input:focus,
.input-grid select:focus,
.product-card select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23, 111, 117, 0.1);
  outline: 0;
}

.product-picker {
  display: grid;
  gap: 14px;
}

.product-card {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf8;
  transition: transform 160ms ease, border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.product-card:has(input:checked) {
  border-color: var(--teal);
  background: linear-gradient(90deg, rgba(217, 238, 232, 0.95), rgba(255, 255, 255, 0.9));
  box-shadow: var(--soft-shadow);
}

.product-card:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.product-card input[type="checkbox"] {
  margin-top: 4px;
}

.product-card strong {
  display: block;
  margin-bottom: 8px;
}

.product-badge {
  display: grid;
  min-width: 58px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--ink-soft);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.product-content {
  min-width: 0;
}

.product-card select {
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-source {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.premium-result {
  position: sticky;
  top: 96px;
  padding: 24px;
  overflow: hidden;
}

.premium-result::before,
.solution-result::before {
  content: "";
  display: block;
  height: 5px;
  margin: -24px -24px 22px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--coral));
}

.premium-summary {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.premium-summary strong {
  display: block;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  color: var(--teal-dark);
}

.premium-summary p {
  margin: 8px 0 0;
  color: var(--muted);
}

.premium-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.premium-stat-grid div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf8;
}

.premium-stat-grid div:nth-child(3),
.premium-stat-grid div:nth-child(4) {
  background: #fff8ed;
  border-color: rgba(231, 183, 95, 0.45);
}

.premium-stat-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.premium-stat-grid strong {
  display: block;
  font-size: 19px;
  line-height: 1.25;
}

.premium-table-wrap {
  max-height: 320px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.premium-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.premium-table th,
.premium-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: right;
  white-space: nowrap;
}

.premium-table th:first-child,
.premium-table td:first-child {
  text-align: left;
}

.premium-table thead th {
  position: sticky;
  top: 0;
  color: var(--ink);
  background: #eef7f4;
}

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

.calculator-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.solution-section {
  background: linear-gradient(135deg, #edf6f2 0%, #f8fbff 56%, #fff8ed 100%);
}

.solution-result {
  padding: 24px;
  overflow: hidden;
}

.solution-summary {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.solution-summary strong {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  color: var(--teal-dark);
}

.solution-summary p {
  margin: 8px 0 0;
  color: var(--muted);
}

.solution-cards {
  display: grid;
  gap: 14px;
}

.solution-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease, border 160ms ease;
}

.solution-card.recommended {
  border-color: var(--teal);
  box-shadow: 0 14px 34px rgba(23, 111, 117, 0.13);
}

.solution-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--soft-shadow);
}

.solution-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.solution-card h3 {
  margin-bottom: 4px;
  font-size: 19px;
}

.solution-card small {
  color: var(--muted);
}

.fit-badge {
  min-width: max-content;
  padding: 5px 9px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.fit-badge.warning {
  background: var(--coral);
}

.solution-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.solution-metrics div {
  padding: 10px;
  border-radius: 8px;
  background: #f7faf8;
}

.solution-metrics span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.solution-metrics strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  line-height: 1.25;
}

.coverage-meter {
  height: 9px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1ef;
}

.coverage-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

fieldset {
  margin: 0;
  padding: 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

fieldset:last-child {
  border-bottom: 0;
}

legend {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 800;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
}

.choice span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #f7faf8;
  cursor: pointer;
}

.choice input:checked + span {
  color: var(--teal-dark);
  border-color: var(--teal);
  background: var(--mint);
  font-weight: 800;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #f7faf8;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--teal);
}

.slider-group + .slider-group {
  margin-top: 20px;
}

.slider-group label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-weight: 700;
}

output {
  display: inline-grid;
  min-width: 34px;
  height: 28px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 8px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--teal);
}

.result-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.result-top {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.result-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
}

.result-top strong {
  display: block;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
}

.score-bars {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.score-row {
  display: grid;
  grid-template-columns: 86px 1fr 34px;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.bar-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef3f1;
}

.bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
  transition: width 180ms ease;
}

.score-row:nth-child(2) .bar-fill {
  background: var(--blue);
}

.score-row:nth-child(3) .bar-fill {
  background: var(--coral);
}

.score-row:nth-child(4) .bar-fill {
  background: var(--amber);
}

.result-note {
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 8px;
  background: #f7faf8;
}

.result-note h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.result-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.coverage-section {
  background: #edf6f2;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.coverage-card {
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(23, 111, 117, 0.15);
  border-radius: 8px;
  background: var(--white);
}

.icon-wrap {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
}

.coverage-card:nth-child(2) .icon-wrap {
  background: var(--blue);
}

.coverage-card:nth-child(3) .icon-wrap {
  background: var(--coral);
}

.coverage-card:nth-child(4) .icon-wrap {
  background: var(--amber);
}

.coverage-card h3,
.process-list h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.coverage-card p,
.process-list p,
.scenario-detail p,
.scenario-detail li {
  color: var(--muted);
}

.scenario-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(820px, 100%);
  margin: 0 auto 22px;
}

.tab-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #f7faf8;
  font-weight: 700;
  cursor: pointer;
}

.tab-button.active {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
}

.scenario-detail {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 26px;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.86)),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1400&q=80") center / cover;
}

.scenario-detail h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.scenario-detail ul {
  margin: 0;
  padding-left: 22px;
}

.scenario-detail li + li {
  margin-top: 8px;
}

.process-section {
  background: var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 26px;
  border-top: 4px solid var(--teal);
  background: var(--white);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 38px rgba(23, 49, 58, 0.08);
}

.process-list li:nth-child(2) {
  border-color: var(--coral);
}

.process-list li:nth-child(3) {
  border-color: var(--amber);
}

.process-list span {
  display: block;
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 34px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #17313a;
  color: var(--white);
}

.contact-section .eyebrow {
  color: #ffd18c;
}

.contact-copy {
  justify-self: end;
  width: min(510px, 100%);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-points svg {
  width: 20px;
  height: 20px;
  color: #ffd18c;
}

.contact-form {
  width: min(560px, 100%);
  padding: 26px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #f9fbfa;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--teal-dark);
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.74);
  background: #10262c;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .premium-layout,
  .solution-layout,
  .planner-layout,
  .contact-section,
  .scenario-detail {
    grid-template-columns: 1fr;
  }

  .premium-result,
  .result-panel {
    position: static;
  }

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

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

  .contact-copy {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    gap: 12px;
  }

  .brand small,
  .nav-action {
    display: none;
  }

  .hero-section {
    min-height: min(680px, calc(86vh - 68px));
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(16, 44, 51, 0.92) 0%, rgba(16, 44, 51, 0.58) 62%, rgba(16, 44, 51, 0.2) 100%),
      url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1100&q=82") center / cover;
  }

  .hero-content {
    width: min(100% - 32px, 1120px);
  }

  .hero-section .eyebrow {
    margin-bottom: 14px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-metrics,
  .coverage-grid,
  .process-list,
  .input-grid,
  .premium-stat-grid,
  .solution-metrics,
  .option-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

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

  .hero-metrics div {
    padding: 12px 10px;
  }

  .hero-metrics dt {
    font-size: 16px;
  }

  .hero-metrics dd {
    display: none;
  }

  .flow-grid article {
    min-height: auto;
    padding: 20px;
  }

  .product-card {
    grid-template-columns: auto 1fr;
  }

  .product-badge {
    grid-column: 2;
    width: max-content;
  }

  .product-content {
    grid-column: 1 / -1;
  }

  fieldset,
  .premium-result,
  .solution-result,
  .result-panel,
  .contact-form,
  .scenario-detail {
    padding: 20px;
  }

  .score-row {
    grid-template-columns: 72px 1fr 28px;
  }

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

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 12px;
  }
}
