:root {
  --bg: #f4f8f8;
  --surface: #ffffff;
  --surface-2: #e8f8f5;
  --ink: #062b49;
  --muted: #60737b;
  --line: #d7e6e6;
  --line-dark: #bfd4d5;
  --green: #009f8f;
  --green-dark: #00736f;
  --blue: #1478a8;
  --coral: #d95743;
  --amber: #f0b53b;
  --gold: #f0b53b;
  --shadow: 0 24px 70px rgba(6, 43, 73, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(6, 43, 73, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 43, 73, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

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

h1,
h2,
h3,
.display {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(0, 159, 143, 0.35);
  outline-offset: 3px;
}

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

.site-top {
  position: sticky;
  top: 0;
  z-index: 40;
}

header {
  border-bottom: 1px solid rgba(220, 228, 223, 0.9);
  background: rgba(244, 248, 248, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(34px, 6vw, 92px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.logo-brand {
  gap: 0;
  line-height: 1;
}

.brand-logo {
  display: block;
  height: auto;
  object-fit: contain;
}

.brand-logo-header {
  width: clamp(108px, 11vw, 132px);
  margin: 6px 0;
}

.footer-logo {
  margin-bottom: 12px;
}

.brand-logo-full {
  width: 156px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  box-shadow: inset 0 -6px 0 rgba(255, 255, 255, 0.08);
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 3vw, 42px);
}

.navlinks a {
  padding: 10px 2px;
  border-radius: 7px;
  color: #243f52;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.navlinks a:hover,
.navlinks a.active {
  background: transparent;
  color: var(--green-dark);
}

.urgency-bar {
  color: #fff;
  background: #062b49;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.urgency-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 0;
  text-align: center;
  font-size: 0.88rem;
}

.ub-clock,
.clock,
.tclock {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: #ffe1a3;
}

.ub-cta {
  color: #ffe1a3;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 159, 143, 0.25);
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--line-dark);
  color: var(--ink);
}

.btn-ghost:hover {
  background: #fff;
  border-color: var(--ink);
}

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

.btn-block {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 159, 143, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 159, 143, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.offer-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(217, 83, 63, 0.12);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(217, 83, 63, 0.12);
}

.hero {
  padding: 72px 0 54px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 52px;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 7vw, 5.8rem);
  line-height: 0.93;
}

.lede {
  max-width: 58ch;
  margin-bottom: 26px;
  color: #44504c;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 22px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid rgba(6, 43, 73, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #4b5653;
  font-size: 0.86rem;
  font-weight: 650;
}

.hero-hook {
  max-width: 540px;
  display: grid;
  gap: 3px;
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(6, 43, 73, 0.06);
}

.hero-hook strong {
  font-size: 0.98rem;
}

.hero-hook span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

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

.stat-row div,
.stat-card {
  padding: 16px;
  border: 1px solid rgba(6, 43, 73, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.stat-row strong,
.stat-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
}

.stat-row span,
.stat-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
}

.surprise-visual {
  position: relative;
  max-width: 460px;
  margin-left: auto;
  padding: 14px;
  border: 1px solid rgba(6, 43, 73, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(235, 247, 240, 0.8)),
    #fff;
  box-shadow: 0 26px 70px rgba(6, 43, 73, 0.16);
}

.surprise-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.35;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
}

.surprise-card {
  position: absolute;
  z-index: 2;
  width: min(270px, 62%);
  padding: 16px;
  border: 1px solid rgba(6, 43, 73, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 46px rgba(6, 43, 73, 0.18);
}

.surprise-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.surprise-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.05;
}

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

.surprise-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.surprise-alert {
  top: 28px;
  left: -34px;
}

.surprise-offer {
  right: -28px;
  bottom: 28px;
}

.hero-blob {
  position: absolute;
  inset: 38px 22px 22px;
  border: 1px solid rgba(0, 159, 143, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 159, 143, 0.16), rgba(29, 79, 145, 0.06)),
    #fff;
  box-shadow: var(--shadow);
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: min(430px, 88%);
  aspect-ratio: 4 / 3;
  margin: 54px auto 46px;
  border: 8px solid #fff;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(6, 43, 73, 0.22);
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 245px;
  padding: 12px 14px;
  border: 1px solid rgba(6, 43, 73, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(6, 43, 73, 0.14);
}

.float-card strong {
  display: block;
  font-size: 0.86rem;
}

.float-card span {
  color: var(--muted);
  font-size: 0.76rem;
}

.float-card--lead {
  top: 62px;
  left: -12px;
}

.float-card--pay {
  right: 0;
  top: 180px;
}

.float-card--catalog {
  left: 34px;
  bottom: 18px;
}

.fc-avatar,
.fc-check,
.fc-dot {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--green-dark);
  font-weight: 900;
}

.fc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
}

.product-board {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #062b49;
  box-shadow: var(--shadow);
}

.board-top {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #d9eeea;
}

.board-dots {
  display: flex;
  gap: 6px;
}

.board-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #446374;
}

.board-top strong {
  font-size: 0.86rem;
}

.board-body {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 480px;
}

.board-sidebar {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #07304a;
}

.side-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 10px 11px;
  border-radius: 7px;
  color: #cde6e5;
  font-size: 0.8rem;
  font-weight: 750;
}

.side-pill.active {
  background: rgba(0, 159, 143, 0.22);
  color: #fff;
}

.side-pill em {
  font-style: normal;
  color: #ffe1a3;
}

.board-main {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 159, 143, 0.12), transparent 180px),
    #062b49;
}

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

.lane {
  min-height: 322px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.lane-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #c5dadb;
  font-size: 0.78rem;
  font-weight: 800;
}

.lead-card {
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 8px;
  background: #f9fbf8;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.lead-card strong {
  display: block;
  margin-bottom: 5px;
  color: #062b49;
  font-size: 0.9rem;
}

.lead-card p {
  margin-bottom: 9px;
  color: #5d6965;
  font-size: 0.76rem;
}

.lead-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #68736f;
  font-size: 0.72rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 7px;
  border-radius: 999px;
  background: #e8f8f5;
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 850;
}

.board-insight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.insight-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #dce9e5;
  background: rgba(255, 255, 255, 0.06);
}

.insight-card span {
  display: block;
  color: #95adb3;
  font-size: 0.72rem;
  font-weight: 750;
}

.insight-card strong {
  font-size: 1.25rem;
}

.customer-photo {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 185px;
  height: 124px;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.customer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 240px;
  padding: 12px 14px;
  border: 1px solid rgba(6, 43, 73, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(6, 43, 73, 0.14);
}

.floating-note strong {
  display: block;
  font-size: 0.86rem;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.76rem;
}

.note-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--green-dark);
  font-weight: 900;
}

.note-lead {
  top: 82px;
  left: -24px;
}

.note-pay {
  right: 34px;
  top: -28px;
}

.note-catalog {
  left: 36px;
  bottom: 42px;
}

.chat-preview {
  position: relative;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(6, 43, 73, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.chat-list {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  border-right: 1px solid #e7ece9;
  background: #fff;
}

.chat-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px 14px;
}

.chat-list-head h3 {
  margin: 0;
  color: #4a5250;
  font-size: 1.15rem;
}

.chat-actions {
  display: flex;
  gap: 8px;
}

.chat-actions span {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background:
    linear-gradient(#313735, #313735) center 8px / 14px 2px no-repeat,
    linear-gradient(#313735, #313735) center 14px / 14px 2px no-repeat,
    linear-gradient(#313735, #313735) center 20px / 14px 2px no-repeat,
    #f4f6f5;
}

.chat-actions span:last-child {
  background:
    radial-gradient(circle at center 7px, #313735 2px, transparent 3px),
    radial-gradient(circle at center 14px, #313735 2px, transparent 3px),
    radial-gradient(circle at center 21px, #313735 2px, transparent 3px),
    #f4f6f5;
}

.chat-search {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 10px 10px;
  padding: 0 12px;
  border: 1px solid #e3e8e5;
  border-radius: 4px;
  color: #8a9098;
  font-weight: 650;
}

.chat-search b {
  width: 15px;
  height: 15px;
  display: block;
  border: 2px solid #6b7470;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}

.tag-add {
  margin: 0 0 18px 10px;
  padding: 5px 10px;
  border: 1px dashed #a9b4af;
  border-radius: 999px;
  background: #fff;
  color: #2d3432;
  cursor: default;
  font-size: 0.76rem;
  font-weight: 800;
}

.chat-row {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 64px;
  padding: 10px 12px;
  border-left: 3px solid transparent;
}

.chat-row.active,
.chat-row:hover {
  background: #f6faf8;
  border-left-color: var(--green);
}

.wa-dot {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2bc85f;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1;
  box-shadow: 0 0 0 2px #e7f8ed;
}

.chat-row strong {
  display: block;
  overflow: hidden;
  color: #4a5250;
  font-size: 0.9rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-row p {
  overflow: hidden;
  margin: 2px 0 0;
  color: #68716d;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-row time {
  grid-column: 3;
  color: #48514e;
  font-size: 0.72rem;
  white-space: nowrap;
}

.chat-row em {
  position: absolute;
  right: 78px;
  top: 21px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: #00736f;
  color: #fff;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 900;
}

.chat-empty,
.chat-thread {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  overflow: hidden;
  background: #f8f9f7;
}

.doodle-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    radial-gradient(circle at 14px 16px, transparent 9px, #d5d9d6 10px, transparent 11px) 0 0 / 86px 70px,
    radial-gradient(circle at 55px 40px, transparent 7px, #d5d9d6 8px, transparent 9px) 0 0 / 86px 70px,
    linear-gradient(35deg, transparent 45%, #d5d9d6 46%, #d5d9d6 48%, transparent 49%) 0 0 / 92px 76px,
    linear-gradient(145deg, transparent 45%, #d5d9d6 46%, #d5d9d6 48%, transparent 49%) 0 0 / 92px 76px;
}

.open-chat-copy {
  position: relative;
  z-index: 1;
  text-align: center;
}

.bubble-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 8px;
  border: 2px solid #38413e;
  border-radius: 50%;
  color: #38413e;
  font-weight: 900;
}

.open-chat-copy h3 {
  margin-bottom: 2px;
  color: #3d4542;
  font-size: 1.3rem;
}

.open-chat-copy p {
  margin: 0;
  color: #68716d;
  font-size: 0.82rem;
  font-weight: 650;
}

.quick-action {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1478a8;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(60, 122, 236, 0.3);
}

.chat-thread {
  display: block;
  padding: 0;
}

.thread-top {
  position: relative;
  z-index: 1;
  min-height: 70px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(6, 43, 73, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
}

.thread-top strong {
  display: block;
  color: #36403d;
}

.thread-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.thread-top button {
  min-height: 34px;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.message-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 38px 26px 14px;
}

.msg {
  max-width: 74%;
  padding: 10px 12px;
  border-radius: 8px;
  color: #36403d;
  font-size: 0.84rem;
  box-shadow: 0 10px 24px rgba(6, 43, 73, 0.08);
}

.msg-in {
  justify-self: start;
  background: #fff;
}

.msg-out {
  justify-self: end;
  background: #dcfbf6;
}

.payment-card {
  width: min(320px, 88%);
  justify-self: end;
  padding: 18px;
  border: 1px solid rgba(0, 159, 143, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(6, 43, 73, 0.14);
}

.payment-card strong {
  display: block;
  margin: 10px 0 4px;
  color: var(--green-dark);
  font-size: 2rem;
  line-height: 1;
}

.payment-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.payment-card a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

.thread-metrics {
  position: relative;
  margin: 0 18px 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.thread-metrics div {
  min-height: 66px;
  padding: 11px;
  border: 1px solid rgba(6, 43, 73, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(6, 43, 73, 0.06);
}

.thread-metrics strong,
.thread-metrics span {
  display: block;
}

.thread-metrics strong {
  color: var(--green-dark);
  font-size: 1.3rem;
  line-height: 1;
}

.thread-metrics span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

section {
  padding: 78px 0;
}

.rule {
  height: 1px;
  margin: 0;
  border: 0;
  background: rgba(6, 43, 73, 0.08);
}

.section-alt {
  background: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(6, 43, 73, 0.06);
  border-bottom: 1px solid rgba(6, 43, 73, 0.06);
}

.section-head {
  max-width: 690px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h2,
.page-head h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.section-head p,
.page-head p {
  color: var(--muted);
  font-size: 1.03rem;
}

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

.hook-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(6, 43, 73, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(6, 43, 73, 0.06);
}

.hook-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--green-dark);
  font-weight: 900;
}

.hook-card h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.hook-card p {
  margin: 0;
  color: var(--muted);
}

.hook-card.strong {
  background: var(--ink);
  color: #fff;
}

.hook-card.strong span {
  background: rgba(255, 255, 255, 0.12);
  color: #ffe1a3;
}

.hook-card.strong p {
  color: #d7e1de;
}

.hook-card.strong a {
  display: inline-flex;
  margin-top: 18px;
  color: #ffe1a3;
  font-weight: 900;
  text-decoration: none;
}

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

.phase-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(0, 115, 111, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(37, 52, 48, 0.06);
}

.phase-card::before {
  content: "";
  width: 34px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.phase-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phase-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
}

.phase-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.phase-card.strong {
  background: var(--ink);
  color: #fff;
}

.phase-card.strong span,
.phase-card.strong h3 {
  color: #fff;
}

.phase-card.strong p {
  color: #d5ddda;
}

.phase-card.strong a {
  display: inline-flex;
  margin-top: 18px;
  color: #ffe1a3;
  font-weight: 900;
  text-decoration: none;
}

.page-head {
  padding: 70px 0 52px;
}

.page-head h1 {
  max-width: 780px;
}

.page-head p {
  max-width: 680px;
  margin-bottom: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

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

.feature-card,
.industry-card,
.contact-card,
.legal-body,
.story-card,
.invoice,
.comparison-card,
.step-card,
.testimonial-card {
  border: 1px solid rgba(6, 43, 73, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(6, 43, 73, 0.06);
}

.feature-card,
.industry-card,
.story-card,
.step-card,
.testimonial-card {
  padding: 22px;
}

.feature-card h3,
.industry-card h3,
.story-card h3,
.step-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.feature-card p,
.industry-card p,
.story-card p,
.step-card p,
.testimonial-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #e8f8f5;
  color: var(--green-dark);
}

.ledger-book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(6, 43, 73, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.ledger-book--split {
  display: block;
}

.ledger-book-head,
.ledger-book-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ledger-book-head > div {
  padding: 18px 26px;
  font-weight: 900;
}

.ledger-book-head .debit {
  background: #fff0ed;
  color: var(--coral);
  border-right: 1px solid var(--line);
}

.ledger-book-head .credit {
  background: #e8f8f5;
  color: var(--green-dark);
}

.ledger-col {
  padding: 26px;
}

.ledger-book--split .ledger-col {
  padding: 14px 26px 20px;
}

.ledger-col:first-child {
  border-right: 1px solid var(--line);
  background: #fff8f6;
}

.ledger-col:last-child {
  background: #f3fbf6;
}

.ledger-col h3 {
  margin-bottom: 16px;
}

.ledger-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 13px 0;
  border-top: 1px dashed rgba(6, 43, 73, 0.12);
  color: #3d4744;
}

.ledger-item .mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
}

.ledger-col:first-child .mark {
  background: rgba(217, 83, 63, 0.12);
  color: var(--coral);
}

.ledger-col:last-child .mark {
  background: rgba(0, 159, 143, 0.12);
  color: var(--green-dark);
}

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

.flow-step {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(6, 43, 73, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(6, 43, 73, 0.06);
}

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

.flow-step h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
}

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

.step-card {
  position: relative;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -14px;
  width: 14px;
  height: 2px;
  background: var(--line-dark);
}

.step-card:last-child::after {
  display: none;
}

.compare-frame {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-rows {
  display: grid;
  gap: 14px;
}

.feature-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(6, 43, 73, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(6, 43, 73, 0.06);
}

.ficon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e8f8f5;
}

.feature-row h3 {
  margin-bottom: 4px;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
}

.feature-metric {
  min-width: 126px;
  text-align: right;
}

.feature-metric strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.18rem;
}

.feature-metric span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.logo-tile {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  border: 1px dashed var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: #5d6965;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.compare-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: #fff;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  border: 1px solid var(--line);
  vertical-align: top;
  text-align: center;
}

.compare-table th {
  background: #eef5f1;
  font-size: 0.92rem;
}

.compare-table .ct-row-label {
  width: 230px;
  text-align: left;
  font-weight: 850;
}

.compare-table .ct-us {
  background: #ecf8f1;
  color: var(--green-dark);
  font-weight: 850;
}

.ct-note,
.compare-footnote {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) 1fr;
  gap: 30px;
  align-items: start;
}

.invoice {
  position: sticky;
  top: 132px;
  overflow: hidden;
  padding: 30px;
}

.ribbon {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0, 159, 143, 0.12);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.invoice::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--amber), var(--coral));
}

.invoice-top,
.price-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.invoice .label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.stamp {
  flex: none;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(232, 165, 38, 0.15);
  color: #905f00;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stamp.expired {
  background: #eef1ef;
  color: var(--muted);
}

.price-line {
  justify-content: flex-start;
  align-items: baseline;
  margin: 24px 0 16px;
  flex-wrap: wrap;
}

.price-now {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 3.7rem;
  line-height: 0.9;
  font-weight: 800;
}

.price-was {
  color: #89938f;
  font-size: 1.28rem;
  text-decoration: line-through;
}

.price-unit {
  color: var(--muted);
  font-weight: 650;
}

.timer-block {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  padding: 14px;
  border-radius: 8px;
  background: #24302e;
  color: #dbe9e5;
}

.timer-block .tclock {
  color: #ffe1a3;
  font-size: 1.35rem;
}

.timer-block .tcopy {
  color: #cbd8d4;
  font-size: 0.84rem;
}

.invoice-list,
.check-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.invoice-list li,
.check-list li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  color: #3d4844;
}

.spots-bar {
  margin: 20px 0;
}

.spots-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9eeeb;
}

.spots-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--amber));
}

#spotsCopy {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.pay-note {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.82rem;
}

.pricing-side {
  display: grid;
  gap: 16px;
}

.mini-faq-link {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: none;
}

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

.comparison-card {
  padding: 22px;
}

.comparison-card h3 {
  margin-bottom: 8px;
}

.comparison-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.testimonial-card {
  max-width: 760px;
}

.testimonial-quote {
  margin-bottom: 20px;
  color: #2f3936;
  font-size: 1.18rem;
}

.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-weight: 900;
}

.testimonial-attr strong {
  display: block;
}

.testimonial-attr span {
  color: var(--muted);
  font-size: 0.86rem;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.about-body {
  max-width: 780px;
  color: #3d4844;
  font-size: 1.04rem;
}

.contact-card {
  padding: 20px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-card .contact-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.legal-body {
  max-width: 840px;
  padding: 30px;
}

.legal-body h3 {
  margin: 28px 0 8px;
  font-size: 1.1rem;
}

.legal-body h3:first-child {
  margin-top: 0;
}

.legal-body p {
  color: #424c49;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

details summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 850;
}

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

details summary::after {
  content: "+";
  color: var(--green-dark);
  font-size: 1.25rem;
}

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

details p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}

footer {
  padding: 48px 0 28px;
  border-top: 1px solid rgba(6, 43, 73, 0.08);
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.foot-grid p {
  max-width: 360px;
  color: var(--muted);
}

.foot-cols {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.foot-col h4 {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.foot-col a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  text-decoration: none;
}

.foot-col a:hover {
  color: var(--ink);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(6, 43, 73, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
  flex-wrap: wrap;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 36px 18px;
  background: rgba(16, 25, 24, 0.68);
}

.modal-overlay.show {
  display: flex;
}

.modal-card {
  width: min(560px, 100%);
  position: relative;
  padding: 28px;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.modal-head {
  margin-bottom: 20px;
}

.modal-head .label {
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-head h3 {
  margin: 8px 0;
}

.modal-head p {
  color: var(--muted);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-size: 0.84rem;
  font-weight: 800;
}

.optional {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
}

.field input:focus,
.field select:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 159, 143, 0.12);
}

.field-error {
  min-height: 1.2em;
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 700;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 110;
  max-width: 92vw;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  opacity: 0;
  transform: translate(-50%, 130%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.thank-section {
  min-height: calc(100vh - 180px);
  display: grid;
  align-items: center;
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(0, 115, 111, 0.08), rgba(238, 232, 214, 0.92)),
    radial-gradient(circle at 18% 20%, rgba(27, 168, 106, 0.16), transparent 32%),
    var(--paper);
}

.thank-wrap {
  display: grid;
  justify-items: center;
}

.thank-card {
  width: min(720px, 100%);
  border: 1px solid rgba(0, 115, 111, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(28, 45, 40, 0.14);
  padding: clamp(28px, 5vw, 54px);
}

.thank-card h1 {
  margin: 20px 0 12px;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--ink);
}

.thank-card p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.status-pill.pending {
  color: #6d4b00;
  background: #fff2c2;
  border-color: #ecd17a;
}

.status-pill.paid {
  color: #0b6b2f;
  background: #dff7e6;
  border-color: #9cdeb0;
}

.status-pill.failed {
  color: #8f1e1e;
  background: #fde2df;
  border-color: #f0aaa1;
}

.order-box {
  margin-top: 28px;
  padding: 22px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid rgba(0, 115, 111, 0.12);
}

.order-box span,
.thank-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-box strong {
  display: block;
  font-size: clamp(26px, 5vw, 40px);
  line-height: 1.05;
  color: var(--green);
  overflow-wrap: anywhere;
}

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

.thank-grid > div {
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(0, 115, 111, 0.12);
  background: #fff;
}

.thank-grid strong {
  display: block;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.sticky-paybar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 35;
  width: min(720px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 10px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(6, 43, 73, 0.94);
  color: #fff;
  box-shadow: 0 20px 60px rgba(6, 43, 73, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.sticky-paybar.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.sticky-paybar strong,
.sticky-paybar span {
  display: block;
}

.sticky-paybar span {
  color: #cbd8d4;
  font-size: 0.78rem;
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .navlinks {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-grid,
  .split-grid,
  .pricing-wrap {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .product-board {
    min-height: 480px;
  }

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

  .invoice {
    position: static;
  }

  .flow,
  .feature-grid,
  .industry-grid,
  .hook-grid,
  .phase-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-card::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .navlinks {
    display: none;
  }

  .urgency-inner {
    flex-direction: column;
    gap: 4px;
  }

  .hero {
    padding: 52px 0 38px;
  }

  .hero-grid {
    gap: 30px;
  }

  .surprise-visual {
    padding: 10px;
  }

  .surprise-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 10px;
  }

  .surprise-offer {
    right: auto;
    bottom: auto;
  }

  .surprise-alert {
    top: auto;
    left: auto;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 14vw, 3.55rem);
  }

  .hero-ctas .btn,
  .cta-row .btn {
    width: 100%;
  }

  .stat-row,
  .stats-grid,
  .flow,
  .feature-grid,
  .industry-grid,
  .logo-strip,
  .phase-grid,
  .contact-grid,
  .final-cta,
  .field-row {
    grid-template-columns: 1fr;
  }

  .stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .stat-row div {
    padding: 12px 10px;
  }

  .stat-row strong {
    font-size: 1.08rem;
  }

  .stat-row span {
    font-size: 0.7rem;
  }

  .product-board {
    min-height: auto;
  }

  .board-body {
    grid-template-columns: 1fr;
  }

  .board-sidebar {
    display: none;
  }

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

  .lane:nth-child(n+3) {
    display: none;
  }

  .board-insight {
    grid-template-columns: 1fr;
  }

  .customer-photo,
  .floating-note,
  .float-card {
    display: none;
  }

  .chat-preview {
    grid-template-columns: 1fr;
    min-height: 430px;
  }

  .chat-list {
    min-height: 430px;
    border-right: 0;
  }

  .chat-row {
    min-height: 58px;
  }

  .chat-empty,
  .chat-thread {
    display: none;
  }

  .sticky-paybar {
    align-items: stretch;
    flex-direction: column;
  }

  .sticky-paybar .btn {
    width: 100%;
  }

  section {
    padding: 58px 0;
  }

  .ledger-book {
    grid-template-columns: 1fr;
  }

  .ledger-book-head,
  .ledger-book-body {
    grid-template-columns: 1fr;
  }

  .ledger-book-head .debit {
    border-right: 0;
  }

  .ledger-col:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .final-cta {
    padding: 24px;
  }

  .price-now {
    font-size: 3rem;
  }

  .timer-block {
    grid-template-columns: 1fr;
  }

  .thank-section {
    padding: 42px 0;
  }

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

  .thank-actions .btn {
    width: 100%;
  }
}
