:root {
  --bg: #ffffff;
  --ink: #101820;
  --muted: #5d6a72;
  --soft: #eef5f2;
  --line: #dce8e3;
  --green: #0aa36f;
  --green-dark: #08724f;
  --blue: #2267ff;
  --panel: #f7fbf9;
  --dark: #111a20;
  --shadow: 0 24px 70px rgba(12, 32, 26, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 232, 227, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(10, 163, 111, 0.22);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.nav-links,
.header-actions,
.footer-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 20px;
  color: #2b393f;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a,
.text-link {
  transition: color 160ms ease;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--green-dark);
}

.header-actions {
  gap: 16px;
}

.text-link {
  color: #253239;
  font-size: 14px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(10, 163, 111, 0.22);
}

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

.button-secondary {
  color: #122028;
  background: #fff;
  border-color: #cfded8;
}

.button-secondary:hover {
  border-color: var(--green);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
}

.button-small {
  min-height: 38px;
  padding-inline: 16px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(520px, 0.98fr) minmax(500px, 1.02fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(48px, 6vw, 82px) 0 clamp(30px, 4vw, 48px);
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #0d171d;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy > p {
  max-width: 610px;
  margin: 26px 0 0;
  color: #4d5c64;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 44px 0 0;
}

.hero-proof div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-proof dt {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 850;
}

.hero-proof dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-visual {
  min-width: 0;
}

.device-frame {
  overflow: hidden;
  background: #102019;
  border: 1px solid rgba(9, 69, 48, 0.38);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.device-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  color: #cfe6dc;
  background: #101820;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.device-toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff6a5e;
}

.device-toolbar span:nth-child(2) {
  background: #f5b342;
}

.device-toolbar span:nth-child(3) {
  background: #34c77b;
  margin-right: 8px;
}

.product-grid {
  display: grid;
  grid-template-columns: 128px minmax(220px, 1fr) 190px;
  min-height: 520px;
  background:
    radial-gradient(circle at 72% 14%, rgba(34, 103, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #f8fcfa 0%, #ecf6f2 100%);
}

.mock-sidebar {
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.78);
  border-right: 1px solid var(--line);
}

.mock-logo {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
  font-weight: 900;
}

.mock-session {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin-bottom: 8px;
  padding: 0 9px;
  color: #53636a;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 750;
}

.mock-session.active {
  color: #0e2018;
  background: #e6f7ef;
}

.mock-session span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #9db0a9;
}

.mock-session.active span {
  background: var(--green);
}

.mock-inbox {
  padding: 20px;
}

.mock-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.mock-toolbar strong,
.status-card strong,
.chat-row strong {
  display: block;
  color: #152229;
  font-size: 13px;
}

.mock-toolbar small,
.status-card small,
.chat-row small {
  display: block;
  color: #66757c;
  font-size: 11px;
}

.mock-toolbar button {
  height: 30px;
  padding: 0 11px;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 850;
}

.chat-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 232, 227, 0.86);
  border-radius: var(--radius);
}

.chat-row.selected {
  border-color: rgba(10, 163, 111, 0.42);
  box-shadow: 0 10px 26px rgba(10, 54, 42, 0.08);
}

.chat-row em {
  color: #87939a;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0aa36f, #72d7ab);
}

.avatar.blue {
  background: linear-gradient(135deg, #2267ff, #8fb1ff);
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 18px;
}

.bubble {
  max-width: 78%;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #213038;
  background: #fff;
  box-shadow: 0 10px 24px rgba(21, 34, 41, 0.07);
  font-size: 12px;
  line-height: 1.35;
}

.bubble.out {
  align-self: flex-end;
  color: #fff;
  background: var(--green);
}

.mock-panels {
  padding: 20px 16px;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.status-card,
.flow-card,
.mock-panels pre {
  margin: 0 0 14px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.status-card {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(10, 163, 111, 0.12);
}

.flow-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 7px;
}

.flow-node {
  padding: 9px 10px;
  color: #223139;
  background: #f4f8f6;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
}

.flow-node.green {
  color: #064c35;
  background: #ddf6eb;
  border-color: rgba(10, 163, 111, 0.28);
}

.flow-line {
  width: 1px;
  height: 15px;
  margin-left: 13px;
  background: #bad5cb;
}

.mock-panels pre {
  overflow: hidden;
  color: #d6eee5;
  background: #121b22;
  border-color: #223038;
  font-size: 10px;
  line-height: 1.55;
}

.promo-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 26px;
  color: #fff;
  background: linear-gradient(90deg, #0f1d24, #0b7f59);
  border-radius: var(--radius);
}

.promo-band strong,
.promo-band span {
  display: block;
}

.promo-band span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.promo-band a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  color: #102019;
  background: #fff;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(34px, 6vw, 78px);
  padding: clamp(80px, 9vw, 122px) 0;
}

.app-map-section {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: clamp(30px, 6vw, 72px);
  padding: clamp(76px, 8vw, 112px) 0 0;
}

.map-heading p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.map-card {
  min-height: 210px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.map-card:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 163, 111, 0.46);
  box-shadow: 0 18px 46px rgba(12, 32, 26, 0.09);
}

.map-icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--green-dark);
  background: #e2f5ec;
  border-radius: var(--radius);
}

.map-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.map-card strong {
  display: block;
  color: #142229;
  font-size: 18px;
  font-weight: 850;
}

.map-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.section-label {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  color: #101820;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-lede,
.workflow-copy p,
.pricing-heading p,
.contact-panel > div > p,
.integration-panel p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.feature-list article {
  min-height: 190px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--green-dark);
  background: #e2f5ec;
  border-radius: var(--radius);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.feature-list h3,
.integration-grid strong,
.workflow-step strong {
  margin: 0;
  color: #142229;
  font-size: 17px;
  font-weight: 850;
}

.feature-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.workflow-section {
  padding: clamp(78px, 9vw, 118px) 0;
  background: #102019;
}

.workflow-section h2,
.workflow-section .section-label {
  color: #fff;
}

.workflow-section .section-label {
  color: #76d8ad;
}

.workflow-copy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  margin-bottom: 34px;
}

.workflow-copy p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.workflow-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.workflow-step {
  min-height: 245px;
  padding: 22px;
  color: #dceee7;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.workflow-step span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 54px;
  place-items: center;
  color: #0d1b14;
  background: #76d8ad;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
}

.workflow-step strong {
  color: #fff;
}

.workflow-step p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

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

.logic-status-grid article {
  min-height: 245px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.logic-status-grid h3 {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 850;
  line-height: 1.06;
}

.logic-status-grid p:not(.section-label) {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.logic-status-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 24px;
  padding: 0 14px;
  color: #102019;
  background: #76d8ad;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
}

.status-action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.integration-section {
  padding: clamp(78px, 9vw, 118px) 0 0;
}

.integration-panel {
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(130deg, rgba(34, 103, 255, 0.08), transparent 38%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.integration-grid div {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.pricing-section {
  padding: clamp(82px, 9vw, 104px) 0 clamp(58px, 7vw, 82px);
}

.pricing-heading {
  display: grid;
  grid-template-columns: 0.9fr 0.7fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 550px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.price-card.active,
.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 163, 111, 0.52);
  box-shadow: var(--shadow);
}

.price-card.featured {
  background: #102019;
  border-color: #102019;
  color: #fff;
}

.price-card.featured .price-top h3,
.price-card.featured .price,
.price-card.featured li {
  color: #fff;
}

.price-card.featured p,
.price-card.featured .price-top span {
  color: rgba(255, 255, 255, 0.72);
}

.price-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.price-top h3 {
  margin: 0;
  font-size: 23px;
}

.price-top span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.price {
  margin: 34px 0 16px;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0;
}

.price-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

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

.price-card li {
  position: relative;
  padding-left: 24px;
  color: #2d3a41;
  font-size: 14px;
  font-weight: 650;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.price-card .button {
  margin-top: auto;
}

.included-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(30px, 6vw, 72px);
  padding: 0 0 clamp(82px, 9vw, 124px);
}

.included-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.included-row {
  display: grid;
  grid-template-columns: 0.75fr 1.35fr 0.9fr;
  min-height: 76px;
  border-top: 1px solid var(--line);
}

.included-row:first-child {
  border-top: 0;
}

.included-row span {
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.45;
}

.included-row span:first-child {
  color: #152229;
  border-left: 0;
  font-weight: 850;
}

.included-head {
  min-height: 48px;
  background: var(--panel);
}

.included-head span {
  color: #152229;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(30px, 6vw, 72px);
  padding: 0 0 clamp(82px, 9vw, 124px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 20px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  color: #16242b;
  font-weight: 850;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  padding: 0 0 clamp(78px, 8vw, 110px);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(30px, 5vw, 54px);
  color: #fff;
  background: #101820;
  border-radius: var(--radius);
}

.contact-panel h2,
.contact-panel .section-label {
  color: #fff;
}

.contact-panel .section-label {
  color: #7ee3b7;
}

.contact-panel > div > p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 112px;
  padding: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #7ee3b7;
  box-shadow: 0 0 0 3px rgba(126, 227, 183, 0.14);
}

.contact-form option {
  color: #101820;
}

.form-note {
  min-height: 21px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.request-output {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.request-output[hidden] {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
}

.footer-links {
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

@media (max-width: 1040px) {
  .hero,
  .app-map-section,
  .split-section,
  .faq-section,
  .included-section,
  .contact-panel,
  .pricing-heading,
  .workflow-copy {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .product-grid {
    grid-template-columns: 118px 1fr;
  }

  .mock-panels {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .status-card,
  .flow-card,
  .mock-panels pre {
    margin: 0;
  }

  .workflow-rail,
  .logic-status-grid,
  .pricing-grid,
  .included-row,
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .included-row span:nth-child(2) {
    border-left: 1px solid var(--line);
  }

  .included-row span:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
  }

  .nav-links,
  .header-actions {
    position: fixed;
    left: 18px;
    right: 18px;
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links {
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .nav-links a {
    padding: 12px;
  }

  .header-actions {
    top: 358px;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .site-header.menu-open .nav-links,
  .site-header.menu-open .header-actions {
    display: flex;
  }

  .menu-button {
    display: block;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-proof,
  .feature-list,
  .map-grid,
  .workflow-rail,
  .logic-status-grid,
  .pricing-grid,
  .included-row,
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .included-row span {
    display: block;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .included-row span:first-child {
    border-top: 0;
  }

  .included-table {
    display: grid;
    gap: 10px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .included-head {
    display: none;
  }

  .included-row {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }

  .included-row span:nth-child(2)::before,
  .included-row span:nth-child(3)::before {
    display: block;
    margin-bottom: 6px;
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .included-row span:nth-child(2)::before {
    content: "What buyers get";
  }

  .included-row span:nth-child(3)::before {
    content: "Use case";
  }

  .promo-band,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

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

  .mock-sidebar {
    display: none;
  }

  .mock-panels {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    min-height: 0;
  }

  .workflow-step span {
    margin-bottom: 28px;
  }

  .price-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
