:root {
  --ink: #172033;
  --ink-soft: #3f4a5f;
  --muted: #687386;
  --line: #d9dee8;
  --paper: #ffffff;
  --paper-soft: #f5f7fa;
  --blue: #123c69;
  --blue-2: #0b2746;
  --red: #c83737;
  --red-dark: #9f2727;
  --shadow: 0 18px 45px rgba(18, 39, 70, 0.13);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

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

[hidden] {
  display: none !important;
}

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

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid #c83737;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 222, 232, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  min-height: 68px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  color: var(--blue-2);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  font-size: 15px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links .btn.primary,
.nav-links .btn.primary.active,
.nav-links .btn.primary:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  position: relative;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  color: #fff;
  background: var(--red);
}

.btn.primary:hover {
  background: var(--red-dark);
}

.btn.secondary {
  color: var(--blue-2);
  background: #fff;
  border-color: var(--line);
}

.btn.secondary:hover {
  border-color: var(--blue);
}

.btn.dark {
  color: #fff;
  background: var(--blue-2);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 670px;
  overflow: hidden;
  color: #fff;
  background: #101927;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(12, 22, 36, 0.84) 0%, rgba(12, 22, 36, 0.66) 38%, rgba(12, 22, 36, 0.16) 74%),
    url("assets/generated/real-photo/home-soul/home-soul-hero-quote-platform-v1.webp");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 100px;
}

.hero-copy {
  width: min(650px, 100%);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.2;
}

.hero p {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 19px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 62px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof div {
  min-height: 106px;
  padding: 18px;
  background: rgba(11, 22, 36, 0.46);
}

.hero-proof strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  line-height: 1;
}

.hero-proof span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.quote-hero .hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 56px;
  align-items: center;
}

.quote-hero .hero-copy {
  width: min(690px, 100%);
}

.quote-hero h1 {
  max-width: 720px;
}

.quote-starter {
  padding: 28px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.quote-starter h2 {
  margin-bottom: 10px;
  color: var(--blue-2);
  font-size: 28px;
  line-height: 1.1;
}

.quote-starter p {
  max-width: none;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.starter-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.starter-list a {
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.starter-list a:hover {
  border-color: #b9c8d9;
  box-shadow: 0 10px 24px rgba(18, 39, 70, 0.09);
  transform: translateY(-1px);
}

.starter-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.starter-list strong {
  color: var(--blue-2);
  font-size: 14px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-trust span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(11, 22, 36, 0.28);
  font-size: 13px;
  font-weight: 750;
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 58px 0;
}

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

section[id] {
  scroll-margin-top: 92px;
}

.section.blue {
  color: #fff;
  background: var(--blue-2);
}

.wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

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

.section-head p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.blue .section-head p,
.blue p {
  color: rgba(255, 255, 255, 0.76);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.tile,
.product,
.book-type-card,
.resource,
.form-panel,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.tile,
.product,
.book-type-card,
.resource {
  padding: 26px;
}

.tile p,
.product p,
.book-type-card p,
.resource p {
  color: var(--muted);
}

.tile-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.tile-list li {
  display: flex;
  gap: 9px;
}

.tile-list li::before {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 10px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

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

.product small,
.book-type-card small,
.resource small {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.book-type-grid {
  align-items: stretch;
}

.book-type-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.book-type-card:hover {
  border-color: #c3d0df;
  box-shadow: 0 16px 34px rgba(18, 39, 70, 0.09);
  transform: translateY(-2px);
}

.book-type-card h3 {
  min-height: 50px;
}

.card-actions {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 750;
}

.card-actions a:not(.text-link) {
  color: var(--muted);
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: start;
}

.media-frame {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.media-frame figcaption,
.image-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
}

.image-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.quote-panel .image-card {
  margin: 0 0 22px;
}

.image-card img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.image-card.compact img {
  height: 220px;
}

.image-card figcaption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
}

.proof-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.proof-points div {
  padding: 16px;
  border-left: 3px solid var(--red);
  background: #fff;
}

.proof-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-2);
}

.proof-points span {
  color: var(--muted);
}

.section-actions {
  margin-top: 26px;
}

.quote-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.quote-flow-grid div {
  min-height: 230px;
  padding: 24px;
  background: #fff;
}

.quote-flow-grid strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 14px;
}

.quote-flow-grid p {
  color: var(--muted);
}

.guide-grid .resource {
  display: block;
  min-height: 230px;
}

.buyer-list {
  display: grid;
  gap: 12px;
}

.buyer-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.buyer-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-2);
}

.buyer-list span {
  color: var(--muted);
}

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

.stat-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-2);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.stat-card span {
  display: block;
  color: var(--ink-soft);
  font-weight: 800;
}

.stat-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.media-grid .media-frame img {
  min-height: 100%;
}

.media-stack {
  display: grid;
  gap: 22px;
}

.media-stack .media-frame img {
  min-height: 240px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process-card {
  min-height: 240px;
  padding: 24px;
  background: #fff;
}

.process-card small {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.process-card p {
  color: var(--muted);
}

.dark-panel {
  color: #fff;
  background: var(--blue-2);
}

.dark-panel .section-head p,
.dark-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.dark-panel .tile {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.dark-panel .tile p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-panel .tile h3 {
  color: #fff;
}

.dark-panel .process-card h3 {
  color: var(--ink);
}

.dark-panel .process-card p {
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 24px 24px 24px 72px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.step::before {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--blue-2);
  background: #fff;
  border-radius: 50%;
  counter-increment: step;
  content: counter(step);
  font-size: 14px;
  font-weight: 850;
}

.page-hero {
  padding: 76px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(14, 28, 46, 0.93), rgba(14, 28, 46, 0.78)),
    url("assets/generated/real-photo/people-production/people-offset-printing-mixed-team-v2.webp") center / cover;
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 720px);
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 64px);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.form-panel,
.quote-panel {
  padding: 28px;
  box-shadow: 0 12px 30px rgba(18, 39, 70, 0.08);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid #cfd6e2;
  border-radius: 6px;
  background: #fff;
  font: inherit;
  font-size: 14px;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(18, 60, 105, 0.14);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

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

.success {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  color: #173e2e;
  border: 1px solid #b9ddcd;
  border-radius: 6px;
  background: #ecf8f1;
  font-weight: 700;
}

.success.show {
  display: block;
}

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

.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.summary-list span {
  color: var(--muted);
}

.live-quote-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
}

.quote-form-head,
.quote-result-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.quote-form-head p {
  max-width: 640px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.quote-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--blue);
  border: 1px solid #c7d6e8;
  border-radius: 6px;
  background: #eef5fc;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

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

.check-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 10px;
  color: var(--ink);
  border: 1px solid #cfd6e2;
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.check-row input {
  width: auto;
  min-height: auto;
  padding: 0;
  accent-color: var(--blue);
}

.live-result-panel {
  position: sticky;
  top: 92px;
}

.quote-result-top {
  align-items: center;
  margin-bottom: 16px;
}

.quote-result-top strong {
  color: var(--ink-soft);
  font-size: 14px;
}

.price-card {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 20px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 16px 32px rgba(18, 60, 105, 0.18);
}

.price-card span,
.price-card small {
  color: rgba(255, 255, 255, 0.78);
}

.price-card strong {
  font-size: clamp(34px, 6vw, 48px);
  line-height: 1;
}

.price-card small {
  line-height: 1.45;
}

.quote-result-list {
  margin-bottom: 18px;
}

.quote-result-list strong {
  text-align: right;
}

.breakdown-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
}

.breakdown-box h3 {
  margin: 0;
  font-size: 16px;
}

.breakdown-box p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.breakdown-box div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.breakdown-box span {
  color: var(--muted);
}

.breakdown-box strong {
  text-align: right;
}

.success.bad {
  color: #7f1d1d;
  border-color: #fecaca;
  background: #fff1f2;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 15px;
}

.data-table th,
.data-table td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.data-table th {
  color: var(--blue-2);
  background: var(--paper-soft);
  font-weight: 850;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.note-panel {
  padding: 22px;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.note-panel p:last-child {
  margin-bottom: 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  color: #fff;
  background: var(--blue-2);
  border-radius: var(--radius);
}

.cta-band p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #101927;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr 1.35fr;
  gap: 32px;
}

.site-footer h3 {
  color: #fff;
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.footer-contact p {
  margin: 0 0 10px;
  line-height: 1.55;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .nav {
    min-height: 62px;
    gap: 12px;
  }

  .brand-mark,
  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .brand-mark {
    flex-basis: 38px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 62px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .btn {
    margin-top: 8px;
  }

  .hero {
    min-height: 640px;
  }

  .quote-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .quote-starter {
    width: min(560px, 100%);
  }

  .hero-proof,
  .grid.cols-3,
  .grid.cols-4,
  .stat-grid,
  .process-grid,
  .quote-flow-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .media-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .live-result-panel {
    position: static;
  }

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

  .section-head {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero::before {
    background-image:
      linear-gradient(90deg, rgba(12, 22, 36, 0.91), rgba(12, 22, 36, 0.62)),
      url("assets/generated/real-photo/home-soul/home-soul-hero-quote-platform-v1.webp");
    background-position: 62% center;
  }

  .hero-content {
    padding: 76px 0 54px;
  }

  .quote-hero .hero-content {
    gap: 28px;
  }

  .quote-hero h1 {
    max-width: 340px;
    font-size: 38px;
    line-height: 1.04;
  }

  .quote-starter {
    padding: 22px;
  }

  .quote-starter h2 {
    font-size: 24px;
  }

  .hero-trust {
    display: grid;
  }

  .hero-proof,
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .stat-grid,
  .process-grid,
  .quote-flow-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .page-hero {
    padding: 58px 0;
  }

  .cta-band,
  .quote-form-head,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .price-card strong {
    font-size: 34px;
  }

  .btn {
    width: 100%;
  }
}
