:root {
  --paper: #f7f6f1;
  --surface: #ffffff;
  --surface-warm: #fbfaf7;
  --ink: #102c23;
  --ink-soft: #2f3d38;
  --muted: #67716c;
  --green: #064831;
  --green-2: #0d5a40;
  --green-soft: #e7f0eb;
  --line: #ddd9cf;
  --line-soft: #ebe7df;
  --red: #9f1f1f;
  --red-soft: #f6e8e4;
  --shadow: 0 18px 50px rgba(30, 40, 34, 0.08);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-soft);
  background: #ebe9e2;
  font-family: var(--sans);
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

h1,
h2 {
  color: var(--ink);
  font-family: var(--serif);
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 0.98;
  font-weight: 700;
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.08;
  font-weight: 700;
}

h3 {
  margin-bottom: 8px;
  color: #15271f;
  font-size: 14px;
  line-height: 1.25;
}

p {
  line-height: 1.5;
}

.site-frame {
  width: min(100%, 1536px);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(34, 40, 36, 0.08);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  background: rgba(247, 246, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand-mark,
.mini-shield {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 30px;
  height: 34px;
  border-radius: 16px 16px 18px 18px;
  background: var(--green);
  clip-path: polygon(50% 0, 88% 14%, 78% 73%, 50% 100%, 22% 73%, 12% 14%);
}

.brand-mark::after,
.mini-shield::after {
  content: "";
  position: absolute;
  inset: 7px 8px 7px 9px;
  background: #fff;
  clip-path: polygon(0 48%, 72% 0, 100% 18%, 34% 100%);
}

.mini-shield {
  width: 19px;
  height: 22px;
}

.mini-shield::after {
  inset: 5px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  color: #1f2925;
  font-size: 13px;
}

.nav a {
  text-decoration: none;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #1f2925;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
}

.landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 59.5fr) minmax(430px, 40.5fr);
  min-height: calc(100vh - 58px);
}

.left-page,
.right-page {
  min-width: 0;
}

.left-page {
  padding: 24px 22px 22px;
  border-right: 1px solid var(--line);
}

.right-page {
  padding: 22px 28px 28px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.68), var(--surface-warm));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, 0.86fr) minmax(330px, 1fr);
  align-items: stretch;
  min-height: 340px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 0 0 20px 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 18px;
  padding: 7px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #b8cfc4;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #c99228 0 46%, transparent 46% 54%, #0c5b40 54%);
  border-radius: 3px;
}

.lead {
  max-width: 520px;
  margin-bottom: 24px;
  color: #34413c;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 12px 20px;
  color: #fff;
  background: linear-gradient(180deg, var(--green-2), var(--green));
  border: 0;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(6, 72, 49, 0.16);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.primary-button:hover {
  background: var(--green);
}

.primary-button:disabled {
  cursor: not-allowed;
  background: #82968c;
  box-shadow: none;
}

.price-card .primary-button:disabled {
  color: #fff;
  background: linear-gradient(180deg, var(--green-2), var(--green));
  opacity: 0.72;
}

.full-button {
  width: 100%;
}

.button-lock,
.tiny-lock,
.big-lock {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 14px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.button-lock::before,
.tiny-lock::before,
.big-lock::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: translateX(-50%);
}

.tiny-lock {
  width: 10px;
  height: 9px;
  border-width: 1px;
}

.tiny-lock::before {
  bottom: 6px;
  width: 6px;
  height: 6px;
  border-width: 1px;
}

.big-lock {
  width: 24px;
  height: 21px;
  color: var(--ink);
  border-width: 2px;
}

.big-lock::before {
  bottom: 15px;
  width: 14px;
  height: 13px;
  border-width: 2px;
}

.preview-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6c746f;
  font-size: 13px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 324px;
  margin: -24px -22px 0 0;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 18%;
  background: linear-gradient(90deg, var(--paper), rgba(247, 246, 241, 0));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.9);
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 8px 20px;
}

.metrics-band article,
.included-card,
.risk-card,
.preview-shell,
.price-card,
.interview-card,
.generated-preview {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.metrics-band article {
  min-height: 82px;
  padding: 16px 14px 14px 58px;
  position: relative;
}

.metrics-band strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}

.metrics-band p {
  margin: 0;
  color: #56615c;
  font-size: 12px;
}

.metric-icon {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 27px;
  height: 27px;
  border: 2px solid var(--ink);
  border-radius: 6px;
}

.shield-icon {
  border: 0;
  background: var(--ink);
  clip-path: polygon(50% 0, 92% 15%, 82% 73%, 50% 100%, 18% 73%, 8% 15%);
}

.shield-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: #fff;
  clip-path: polygon(0 48%, 72% 0, 100% 18%, 34% 100%);
}

.timer-icon {
  border-radius: 50%;
}

.timer-icon::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 5px;
  width: 2px;
  height: 8px;
  background: var(--ink);
  transform: rotate(35deg);
  transform-origin: bottom;
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}

.lock-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 19px;
  width: 9px;
  height: 8px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.content-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: 16px;
  margin: 0 0 18px;
}

.advantage-section {
  margin: 0 0 18px;
  padding: 24px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

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

.advantage-card {
  min-height: 132px;
  padding: 16px 14px;
  border: 1px solid #d9ded7;
  border-radius: 8px;
  background: #f8f8f3;
}

.advantage-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.advantage-card p {
  margin: 0;
  color: #56615c;
  font-size: 12px;
  line-height: 1.45;
}

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

.proof-strip span {
  padding: 10px 12px;
  color: #26332e;
  font-size: 12px;
  line-height: 1.35;
  background: #eef3ed;
  border: 1px solid #d5ded2;
  border-radius: 8px;
}

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

.comparison-list div {
  display: grid;
  grid-template-columns: 0.46fr 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid #d9ded7;
  border-radius: 8px;
  background: #fbfbf7;
}

.comparison-list b {
  color: var(--ink);
  font-size: 13px;
}

.comparison-list p {
  margin: 0;
  color: #56615c;
  font-size: 12px;
  line-height: 1.4;
}

.included-card {
  padding: 24px 18px 14px;
}

.section-heading p,
.panel-heading p {
  margin-bottom: 18px;
  color: #56615c;
  font-size: 13px;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 20px;
  margin: 22px 0 20px;
}

.doc-grid div {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 10px;
  align-items: start;
  color: #2b3732;
  font-size: 12px;
  line-height: 1.35;
}

.doc-icon {
  position: relative;
  width: 21px;
  height: 25px;
  border: 2px solid var(--ink);
  border-radius: 3px;
}

.doc-icon::before,
.doc-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  height: 2px;
  background: var(--ink);
}

.doc-icon::before {
  top: 8px;
}

.doc-icon::after {
  top: 14px;
}

.compliance-note {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #7a817d;
  font-size: 11px;
}

.compliance-note p {
  margin: 0;
}

.risk-card {
  padding: 23px 20px 18px;
  border-color: #edc9c0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), #fff8f5);
}

.risk-card h2 {
  color: #9b1616;
}

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

.risk-list div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
}

.risk-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: #a01818;
  border: 2px solid #a01818;
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
}

.risk-list p {
  margin: 0;
  color: #2e2824;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.25;
}

.risk-list b {
  color: #2e2824;
  font-family: var(--sans);
  font-size: 13px;
}

.risk-list small {
  display: block;
  margin-top: 4px;
  color: #6d625b;
  font-family: var(--sans);
  font-size: 11px;
}

.risk-footnote {
  margin: 18px 0 0;
  padding: 12px;
  color: #5f352f;
  background: var(--red-soft);
  font-size: 12px;
}

.faq {
  margin: 0 4px 20px;
}

.faq h2 {
  margin: 0 0 9px;
  font-size: 22px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.faq details {
  min-height: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 12px;
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 12px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

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

.faq summary::after {
  content: "+";
  color: #7d827e;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0;
  padding: 0 12px 10px;
  color: #5c6660;
  font-size: 12px;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 22px;
  padding: 12px 6px 2px;
  color: #7c827e;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.footer-brand {
  font-size: 29px;
}

.footer a {
  text-decoration: none;
}

.mobile-footer {
  display: none;
}

.process-card,
.preview-shell,
.price-card,
.interview-card,
.generated-preview {
  margin-bottom: 20px;
  padding: 18px 18px 20px;
}

.process-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0 0 8px;
}

.process-card h2 {
  margin-bottom: 20px;
  font-size: 31px;
}

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

.process-steps article {
  position: relative;
  min-width: 0;
  text-align: center;
}

.process-steps article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 12px;
  right: -11px;
  color: #9b9f9b;
}

.process-steps span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 16px;
  color: #1b251f;
  background: #e7e3da;
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
}

.step-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 14px;
  color: var(--ink);
  border: 2px solid currentColor;
  border-radius: 4px;
}

.form-icon::before,
.file-icon::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 8px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor;
}

.ai-icon {
  border-radius: 50%;
}

.ai-icon::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.download-icon {
  border: 0;
}

.download-icon::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  width: 3px;
  height: 22px;
  background: currentColor;
}

.download-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 13px;
  width: 13px;
  height: 13px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.process-steps h3 {
  margin-bottom: 8px;
  font-size: 12px;
}

.process-steps p {
  margin: 0;
  color: #5d6661;
  font-size: 11px;
}

.panel-heading h2 {
  margin-bottom: 6px;
  font-size: 23px;
}

.preview-document {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(190px, 0.9fr);
  gap: 22px;
  align-items: center;
  margin: 16px 0 14px;
}

.doc-shot {
  display: grid;
  place-items: center;
  padding: 12px;
  background: #f4f2ec;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.doc-shot img {
  width: 100%;
  max-width: 215px;
  display: block;
  border: 1px solid #ddd;
}

.locked-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #2e3833;
  font-size: 14px;
}

.locked-copy p {
  margin: 0;
}

.price-card > span {
  display: block;
  color: #1f2925;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
}

.price-card > p {
  margin: 2px 0 8px;
  color: #505a55;
  font-size: 13px;
}

.price-card strong {
  display: block;
  margin: 6px 0 12px;
  color: #050807;
  font-size: 40px;
  line-height: 1;
}

.price-card .price-note {
  display: block;
  margin: -4px 0 14px;
  color: #5c665f;
  font-size: 12px;
  line-height: 1.35;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: #2e3934;
  font-size: 13px;
}

.price-card li::before,
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 12px;
  height: 12px;
  background: var(--green-2);
  border-radius: 50%;
}

.price-card li::after,
.checklist li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.price-card small,
.form-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
  color: #727873;
  font-size: 11px;
}

.interview-form.loading {
  opacity: 0.65;
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

label {
  display: grid;
  gap: 4px;
}

label span {
  color: #6a716d;
  font-size: 10px;
}

.wide {
  grid-column: 1 / -1;
}

input {
  width: 100%;
  min-height: 34px;
  padding: 9px 12px;
  color: #16231d;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
  font-size: 12px;
}

input:focus {
  outline: 2px solid rgba(13, 90, 64, 0.18);
  border-color: #9eb9ac;
}

.submit-button {
  margin-top: 14px;
}

.generated-preview {
  background: rgba(255, 255, 255, 0.82);
}

.preview-panel {
  min-height: 180px;
}

.preview-empty {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 24px;
  color: #7a817d;
  text-align: center;
  border: 1px dashed #cfcac0;
  border-radius: 6px;
}

.preview-empty span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.preview-empty p {
  max-width: 360px;
  margin: 0;
  font-size: 13px;
}

.preview-card {
  color: #26332d;
}

.preview-card .section-kicker {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 6px 10px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.preview-card h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
}

.preview-text {
  max-height: 260px;
  margin-bottom: 18px;
  padding: 16px;
  overflow: auto;
  background: #f7f5f0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #2d3833;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.checklist,
.locked-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.checklist li,
.locked-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
}

.locked-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 4px;
  width: 11px;
  height: 9px;
  border: 2px solid #8f9993;
  border-radius: 2px;
}

.locked-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: -1px;
  width: 6px;
  height: 6px;
  border: 2px solid #8f9993;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.contact-card {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  background: #f7f5f0;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-card p {
  margin: 0;
  color: #5a6660;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: auto auto;
    gap: 14px;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

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

  .mobile-footer {
    display: grid;
    margin: 0 16px 16px;
  }

  .left-page > .footer {
    display: none;
  }

  .left-page {
    border-right: 0;
  }

  .right-page {
    padding-top: 0;
  }
}

@media (max-width: 820px) {
  .site-frame {
    box-shadow: none;
  }

  .topbar {
    position: static;
    padding: 14px 16px;
  }

  .brand {
    font-size: 27px;
  }

  .service-badge {
    display: none;
  }

  .left-page,
  .right-page {
    padding: 16px;
  }

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

  .hero-copy {
    padding: 0;
  }

  h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .hero-visual {
    min-height: 220px;
    margin: 12px -16px 0;
  }

  .hero-visual img {
    min-height: 260px;
  }

  .metrics-band,
  .content-row,
  .advantage-grid,
  .proof-strip,
  .comparison-list div,
  .faq-grid,
  .preview-document,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .metrics-band {
    margin-left: 0;
    margin-right: 0;
  }

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

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

  .process-steps article:not(:last-child)::after {
    display: none;
  }

  .wide {
    grid-column: auto;
  }

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

@media (max-width: 480px) {
  .nav {
    gap: 18px;
    font-size: 12px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-button {
    width: 100%;
  }

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