:root {
  --ink: #202823;
  --muted: #606b64;
  --deep: #24372e;
  --deep-2: #304b3f;
  --brown: #76563d;
  --warm: #a86f43;
  --accent: #2f6f5e;
  --sand: #e9ddcc;
  --cream: #f7f3eb;
  --off: #edf3ee;
  --panel: #fffefa;
  --line: #d7ddd4;
  --line-soft: #ebe4da;
  --shadow: 0 18px 44px rgba(32, 40, 35, 0.075);
  --soft-shadow: 0 8px 22px rgba(32, 40, 35, 0.055);
  --max: 1160px;
  /* Let the logo dip over the header edge; this is an intentional brand detail. */
  --header-logo-width: 236px;
  --header-logo-drop: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(168, 111, 67, 0.08), transparent 28rem),
    linear-gradient(180deg, #fbf8f2 0%, var(--cream) 38%, #f8f4ec 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--deep);
  color: #fff;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(36, 55, 46, 0.08);
  background: rgba(255, 252, 246, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.site-header .brand {
  height: auto;
  overflow: visible;
}

.brand img {
  display: block;
  width: var(--header-logo-width);
  height: auto;
  object-fit: contain;
  transform: translateY(var(--header-logo-drop));
}

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

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(36, 55, 46, 0.06);
  color: var(--deep);
}

.nav-links a,
.nav-cta {
  text-decoration: none;
}

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid rgba(168, 111, 67, 0.24);
  border-radius: 7px;
  background: var(--warm);
  color: #fff;
  font-weight: 750;
  box-shadow: 0 8px 18px rgba(168, 111, 67, 0.16);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 52px) 0 clamp(48px, 5.6vw, 74px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(247, 243, 235, 0.98)),
    radial-gradient(circle at 73% 35%, rgba(168, 111, 67, 0.09), transparent 28rem);
}

.hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 55, 46, 0.14), transparent);
}

.hero::after {
  display: none;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(168, 111, 67, 0.2);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.72);
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(38px, 4.65vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 740;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 2.55vw, 34px);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 740;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 760;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.58;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
}

.button.primary {
  background: linear-gradient(180deg, #bd8150, var(--warm));
  color: #fff;
  box-shadow: 0 10px 22px rgba(168, 111, 67, 0.18);
}

.button.secondary {
  border: 1px solid rgba(36, 55, 46, 0.13);
  background: rgba(255, 254, 250, 0.84);
  color: var(--deep);
  box-shadow: 0 6px 16px rgba(32, 40, 35, 0.04);
}

.trust-line {
  max-width: 650px;
  display: inline-flex;
  margin: 18px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(36, 55, 46, 0.09);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.62);
  color: var(--muted);
  font-size: 14px;
}

.safety-strip {
  border-top: 1px solid rgba(36, 55, 46, 0.08);
  border-bottom: 1px solid rgba(36, 55, 46, 0.08);
  background: rgba(255, 254, 250, 0.72);
}

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

.safety-strip span {
  position: relative;
  padding: 18px 18px 18px 34px;
  color: var(--deep);
  font-weight: 760;
}

.safety-strip span::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: translateY(-62%) rotate(-45deg);
}

.hero-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(122, 75, 45, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: var(--shadow);
}

.compact-hero {
  padding: clamp(40px, 5vw, 66px) 0;
}

.compact-hero h1 {
  max-width: 640px;
  font-size: clamp(36px, 4vw, 52px);
}

.outcome-panel {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(38, 53, 44, 0.13);
  border-radius: 16px;
  background: rgba(255, 254, 250, 0.92);
  box-shadow: var(--shadow);
}

.outcome-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(25px, 2.8vw, 34px);
}

.panel-label {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-card {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3.5vw, 42px);
  border: 1px solid rgba(168, 111, 67, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 72% 25%, rgba(168, 111, 67, 0.1), transparent 13rem),
    linear-gradient(180deg, rgba(255, 254, 250, 0.96), rgba(239, 227, 214, 0.62));
  box-shadow: 0 18px 48px rgba(32, 40, 35, 0.085);
}

.process-card-head {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(36, 55, 46, 0.08);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.92);
  box-shadow: var(--soft-shadow);
}

.process-card h2 {
  max-width: 420px;
  margin-bottom: 0;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.15;
}

.process-rows {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 0;
}

.process-rows div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(36, 55, 46, 0.08);
  border-radius: 10px;
  background: rgba(255, 254, 250, 0.78);
}

.process-rows span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 111, 94, 0.18);
  border-radius: 6px;
  background: rgba(47, 111, 94, 0.08);
  color: var(--deep);
  font-size: 13px;
  font-weight: 820;
}

.process-rows p,
.process-note p {
  margin: 0;
  color: var(--muted);
}

.process-note {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(168, 111, 67, 0.22);
  border-radius: 10px;
  background: rgba(255, 248, 239, 0.84);
}

.process-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--deep);
}

.check-list,
.plain-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--accent);
}

.workflow-list {
  position: relative;
  z-index: 1;
  gap: 10px;
}

.workflow-list li {
  padding: 11px 14px 11px 42px;
  border: 1px solid rgba(36, 55, 46, 0.08);
  border-radius: 10px;
  background: rgba(255, 254, 250, 0.78);
  color: var(--ink);
  font-weight: 650;
}

.workflow-list li::before {
  left: 17px;
  top: 1.05em;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px 20px auto auto;
  width: 118px;
  height: 34px;
  border-top: 5px solid rgba(176, 122, 79, 0.32);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.flow-head {
  display: grid;
  gap: 5px;
  margin-bottom: 22px;
}

.flow-head span {
  color: var(--brown);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.flow-head strong {
  max-width: 280px;
  font-size: 25px;
  line-height: 1.16;
}

.hero-flow,
.process-map {
  display: grid;
  gap: 10px;
}

.hero-flow span,
.process-map span {
  position: relative;
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--deep);
  font-size: 14px;
  font-weight: 760;
}

.hero-flow span:not(:last-child)::after,
.process-map span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -11px;
  width: 1px;
  height: 10px;
  background: var(--warm);
}

.control-list {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.control-list p {
  margin-bottom: 6px;
  color: var(--muted);
}

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

.section:nth-of-type(even) {
  background:
    linear-gradient(180deg, rgba(237, 243, 238, 0.78), rgba(237, 243, 238, 0.92));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.section-lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.68;
}

.frustration-grid,
.card-grid,
.pricing-grid,
.steps,
.case-grid {
  display: grid;
  gap: 16px;
}

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

.frustration-grid span,
.card-grid article,
.pricing-grid article,
.steps article,
.solution-panel,
.faq-list details,
.case-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.9);
}

.frustration-grid span {
  min-height: 66px;
  align-items: center;
  display: flex;
  position: relative;
  padding: 18px 22px;
  color: var(--deep);
  font-weight: 680;
  line-height: 1.35;
  box-shadow: none;
}

.solution-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(43, 22, 13, 0.98), rgba(75, 43, 25, 0.96));
  color: #fff;
  box-shadow: var(--shadow);
}

.focus-layout,
.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.focus-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 254, 250, 0.9);
  box-shadow: var(--shadow);
}

.focus-card h3 {
  margin-bottom: 14px;
}

.fit-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 14.5px;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 760;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.solution-panel .section-kicker {
  color: var(--sand);
}

.solution-panel .section-lead {
  color: rgba(255, 250, 243, 0.78);
}

.mini-flow,
.proof-list {
  margin: 0;
}

.mini-flow {
  display: grid;
  gap: 12px;
  padding-left: 24px;
}

.mini-flow li {
  padding-left: 6px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 26px;
}

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

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-grid article {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.proof-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--deep);
}

.proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.evidence-strip article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.78);
}

.evidence-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-strip strong {
  display: block;
  color: var(--deep);
  font-size: 15px;
  line-height: 1.45;
}

.flow-demo-card {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(168, 111, 67, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.94), rgba(255, 248, 239, 0.74));
  box-shadow: var(--soft-shadow);
}

.flow-demo-card span {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 254, 250, 0.9);
  color: var(--deep);
  font-weight: 760;
  line-height: 1.32;
}

.flow-demo-card span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}

.case-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(220px, 0.72fr);
  gap: 22px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(43, 22, 13, 0.055);
}

.case-copy p {
  color: var(--muted);
}

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

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

.card-grid article,
.pricing-grid article,
.steps article {
  position: relative;
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.card-grid article,
.steps article {
  border-top: 1px solid var(--line);
}

.card-grid p,
.pricing-grid p,
.steps p,
.faq-list p {
  color: var(--muted);
}

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

.steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 7px;
  background: rgba(176, 122, 79, 0.15);
  color: var(--deep);
  font-weight: 820;
}

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

.pricing-grid .featured {
  border-color: rgba(168, 111, 67, 0.32);
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.96), rgba(255, 247, 237, 0.88));
  box-shadow: 0 12px 32px rgba(168, 111, 67, 0.09);
}

.price {
  margin-bottom: 14px;
  color: var(--deep);
  font-size: 25px;
  font-weight: 820;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 88px) 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(168, 111, 67, 0.22), transparent 25rem),
    var(--deep);
  color: #fff;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 221, 204, 0.3), transparent);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: start;
}

.cta-content {
  max-width: 850px;
  flex-direction: column;
  align-items: flex-start;
}

.cta-content .section-kicker {
  border-color: rgba(233, 221, 204, 0.24);
  background: rgba(255, 250, 243, 0.08);
  color: var(--sand);
}

.cta-content h2 {
  margin-bottom: 8px;
}

.cta-content p {
  color: rgba(255, 250, 243, 0.78);
  font-size: 19px;
}

.contact-card {
  padding: 22px;
  border-color: rgba(255, 250, 243, 0.16);
  background: rgba(255, 250, 243, 0.08);
  color: #fff;
}

.outcome-panel > p:not(.panel-label) {
  margin-bottom: 0;
  color: var(--muted);
}

.mini-flow {
  padding: 20px 24px 20px 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.9);
  box-shadow: var(--soft-shadow);
}

.mini-flow li {
  margin-bottom: 9px;
  color: var(--muted);
}

.mini-flow li:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

.contact-card p {
  margin: 14px 0 0;
  color: rgba(255, 250, 243, 0.72);
}

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

.faq-list details {
  padding: 20px 22px;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 760;
}

.faq-list p {
  margin: 12px 0 0;
}

.site-footer {
  padding: 42px 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(168, 111, 67, 0.16), transparent 20rem),
    #1c100b;
  color: rgba(255, 250, 243, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-name {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.site-footer p {
  margin-bottom: 4px;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 1080px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .nav {
    position: relative;
    justify-content: flex-start;
  }

  .site-header .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .nav-cta {
    position: absolute;
    right: 0;
  }

  .nav-links {
    display: none;
  }

  .hero-layout,
  .split,
  .solution-panel,
  .focus-layout,
  .proof-layout,
  .evidence-strip,
  .case-grid,
  .case-card,
  .pricing-grid,
  .faq-list,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .flow-demo-card span:nth-child(3)::after {
    display: none;
  }

  .hero-card,
  .process-card,
  .outcome-panel {
    max-width: 540px;
  }

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

@media (max-width: 640px) {
  :root {
    --header-logo-width: min(166px, 43vw);
    --header-logo-drop: 16px;
  }

  .wrap,
  .nav {
    width: min(calc(100% - 40px), var(--max));
  }

  .nav {
    position: relative;
    min-height: 82px;
    gap: 8px;
    justify-content: flex-start;
  }

  .site-header .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .brand img {
    width: var(--header-logo-width);
    height: auto;
    transform: translateY(var(--header-logo-drop));
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 36px 0 40px;
  }

  .hero-copy,
  .process-card,
  .outcome-panel,
  .contact-card,
  .focus-card,
  .card-grid article,
  .pricing-grid article,
  .steps article,
  .faq-list details {
    min-width: 0;
  }

  .hero-copy,
  .process-card,
  .outcome-panel {
    width: min(calc(100vw - 56px), 344px);
    max-width: min(calc(100vw - 56px), 344px);
  }

  .hero-actions,
  .trust-line {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(27px, 6.4vw, 31px);
    line-height: 1.14;
    text-wrap: auto;
  }

  h2 {
    font-size: clamp(24px, 6.4vw, 30px);
  }

  .hero-lead,
  .section-lead {
    font-size: 16px;
  }

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

  .button {
    max-width: 100%;
    padding: 0 16px;
    font-size: 14px;
    text-align: center;
  }

  .process-rows div {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }

  .process-rows span {
    width: 28px;
    height: 28px;
  }

  .frustration-grid,
  .card-grid,
  .pricing-grid,
  .card-grid.three,
  .evidence-strip,
  .flow-demo-card,
  .steps,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .safety-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .safety-strip span {
    padding: 13px 12px 13px 32px;
    font-size: 14px;
  }

  .flow-demo-card span {
    min-height: auto;
  }

  .flow-demo-card span:not(:last-child)::after {
    display: none;
  }

  .section {
    padding: 48px 0;
  }

  .case-card,
  .hero-card,
  .process-card,
  .outcome-panel {
    padding: 20px;
  }

  .process-card {
    border-radius: 20px;
  }

  .process-card-head,
  .process-rows div,
  .process-note {
    border-radius: 10px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
