:root {
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e5edf7;
  --soft: #f8fbff;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-solid: #ffffff;
  --body-start: #ffffff;
  --body-mid: #f8fbff;
  --body-end: #eef6ff;
  --nav: rgba(255, 255, 255, 0.94);
  --blue: #38bdf8;
  --blue-dark: #0284c7;
  --green: #16a34a;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

[data-theme="dark"] {
  --ink: #e8eef6;
  --muted: #9fb0c5;
  --line: rgba(255, 255, 255, 0.12);
  --soft: #111827;
  --surface: rgba(16, 22, 35, 0.96);
  --surface-solid: #101623;
  --body-start: #07101d;
  --body-mid: #0b1220;
  --body-end: #101827;
  --nav: rgba(11, 18, 32, 0.92);
  --blue: #38bdf8;
  --blue-dark: #7dd3fc;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 4%, rgba(56, 189, 248, 0.18), transparent 30%),
    linear-gradient(180deg, var(--body-start) 0%, var(--body-mid) 54%, var(--body-end) 100%);
  color: var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 22px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: var(--nav);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.brand,
.topbar nav,
.top-cta,
.hero-actions,
.contact a {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-size: 28px;
  font-weight: 900;
}

.brand span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #ffffff;
}

.topbar nav {
  justify-content: center;
  gap: 28px;
}

.topbar nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.top-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.segmented {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-solid);
}

.segmented button,
.theme-toggle {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 7px 12px;
}

.segmented button.is-active,
.theme-toggle {
  background: var(--ink);
  color: var(--body-start);
}

.top-cta,
.hero-actions a:first-child,
.contact a {
  min-height: 42px;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
  padding: 10px 22px;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(56, 189, 248, 0.24);
}

.hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 110px 24px 42px;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
}

.pill.small {
  min-height: 28px;
  padding: 6px 12px;
  font-size: 11px;
}

.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.hero h1 {
  max-width: 980px;
  margin: 22px auto 18px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}

.hero-actions {
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions a:last-child {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe7f4;
  border-radius: 999px;
  background: var(--surface-solid);
  color: var(--ink);
  font-weight: 900;
  padding: 10px 22px;
  text-decoration: none;
}

.stats,
.section,
.contact {
  max-width: 1120px;
  margin: 0 auto 24px;
}

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

.stats div,
.section,
.contact {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stats div {
  display: grid;
  gap: 6px;
  min-height: 118px;
  align-content: center;
  padding: 20px;
}

.stats strong {
  font-size: 32px;
}

.stats span,
.section p,
.agent-grid li,
.case-grid p,
.steps span,
.dashboard aside button,
.tracking-box label,
.tracking-box p {
  color: var(--muted);
}

.section {
  padding: 28px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2,
.contact h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

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

.agent-grid article,
.case-grid article,
.steps div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 20px;
}

.agent-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: #e0f2fe;
  color: var(--blue-dark);
  font-weight: 900;
}

.agent-grid h3,
.case-grid h3 {
  font-size: 22px;
}

.agent-grid ul {
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 1.7;
}

.pricing-section {
  background: #ffffff;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid #e5edf7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.price-card.featured {
  border-color: rgba(56, 189, 248, 0.72);
  box-shadow: 0 24px 52px rgba(56, 189, 248, 0.18);
}

.price-label {
  width: fit-content;
  margin: -8px 0 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
  font-size: 13px;
  font-weight: 900;
}

.price-card h3 {
  margin: 0;
  font-size: 30px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 24px 0 18px;
}

.price strong {
  color: #0f172a;
  font-size: clamp(46px, 6vw, 68px);
  line-height: 0.95;
  letter-spacing: 0;
}

.price span {
  color: #64748b;
  font-size: 24px;
  font-weight: 800;
}

.budget {
  min-height: 64px;
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.price-card ul {
  display: grid;
  gap: 15px;
  margin: 26px 0;
  padding: 24px 0 0;
  border-top: 1px solid #e5edf7;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 34px;
  color: #334155;
  font-size: 18px;
  line-height: 1.45;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: #0ea5e9;
  font-size: 24px;
  font-weight: 900;
}

.price-card a,
.referral-box a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  margin-top: auto;
  border-radius: 8px;
  background: #38bdf8;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  padding: 12px 16px;
}

.referral-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 26px;
  border: 1px solid rgba(22, 163, 74, 0.28);
  border-radius: 8px;
  background: #f0fdf4;
}

.referral-box h3 {
  margin: 8px 0;
  color: #052e16;
  font-size: 28px;
}

.referral-box p:last-child {
  max-width: 760px;
  margin: 0;
  color: #166534;
}

.referral-box a {
  background: #16a34a;
  white-space: nowrap;
}

.dashboard {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
}

.dashboard aside {
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 16px;
}

.dashboard aside button {
  min-height: 42px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: var(--surface-solid);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
  padding: 10px 12px;
}

.dashboard aside button.active {
  border-color: rgba(56, 189, 248, 0.5);
  background: #e0f2fe;
  color: var(--blue-dark);
}

.dash-main {
  display: grid;
  gap: 14px;
}

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

.dash-cards div,
.tracking-box,
.agent-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-solid);
  padding: 16px;
}

.dash-cards div {
  display: grid;
  gap: 5px;
}

.dash-cards strong {
  font-size: 24px;
}

.tracking-box {
  display: grid;
  gap: 10px;
}

.tracking-box div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.tracking-box input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.tracking-box button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 10px 16px;
}

.tracking-box p {
  overflow-wrap: anywhere;
  margin: 0;
  font-weight: 800;
}

.agent-note {
  border-color: rgba(22, 163, 74, 0.22);
  background: #f0fdf4;
}

[data-theme="dark"] .agent-note {
  background: rgba(22, 163, 74, 0.1);
}

[data-theme="dark"] .topbar {
  border-bottom-color: var(--line);
}

[data-theme="dark"] .hero-actions a:last-child,
[data-theme="dark"] .dashboard aside button,
[data-theme="dark"] .tracking-box input {
  border-color: var(--line);
}

[data-theme="dark"] .segmented button.is-active,
[data-theme="dark"] .theme-toggle {
  color: #0b1220;
}

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

.steps div {
  display: grid;
  gap: 8px;
}

.contact {
  padding: 48px 24px 64px;
}

.contact h2,
.contact p {
  margin-left: auto;
  margin-right: auto;
}

.contact p:not(.pill) {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  text-align: center;
}

.contact .contact-mail {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 16px;
}

.contact-mail a {
  color: var(--blue);
  font-weight: 900;
}

.contact .pill,
.contact h2 {
  text-align: center;
}

.lead-form {
  width: min(920px, 100%);
  margin: 28px auto 0;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: left;
}

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

.contact .lead-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
}

.contact .lead-form label > span {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.contact .lead-form input,
.contact .lead-form select,
.contact .lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
}

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

.contact .lead-form button {
  justify-self: start;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 46px;
  padding: 12px 18px;
}

.contact .lead-status {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.08);
  min-height: 24px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
  white-space: pre-line;
}

.contact .lead-status:empty {
  display: none;
}

.checkout-button {
  justify-self: start;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 46px;
  padding: 12px 18px;
}

.checkout-button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.builder-page {
  min-height: 100vh;
  padding: 32px;
}

.builder-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 22px;
  align-items: start;
}

.builder-panel,
.builder-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 24px;
}

.builder-panel {
  display: grid;
  gap: 14px;
}

.builder-panel h1,
.builder-preview h2 {
  margin: 0;
}

.builder-panel p {
  color: var(--muted);
  margin: 0;
}

.builder-section-editor {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.06);
}

.builder-section-editor p {
  font-size: 14px;
}

.builder-panel label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.builder-panel input,
.builder-panel select,
.builder-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
}

.builder-panel button,
.builder-preview-band button {
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 46px;
  padding: 12px 18px;
}

.builder-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.builder-actions button:nth-child(2) {
  background: #16a34a;
}

.builder-actions button:nth-child(3) {
  background: #334155;
}

.builder-agent-help,
.builder-advice-output,
.builder-context-help {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.44);
  padding: 14px;
}

.builder-agent-help {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.builder-agent-help strong,
.builder-advice-output strong,
.builder-context-help strong {
  display: block;
  margin-bottom: 4px;
}

.builder-agent-help p,
.builder-advice-output ul,
.builder-context-help p {
  margin: 0;
  color: var(--muted);
}

.builder-context-help {
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(56, 189, 248, 0.08);
}

.builder-context-help small {
  display: block;
  margin-top: 10px;
  color: #bae6fd;
  line-height: 1.45;
}

.builder-floating-help {
  position: fixed;
  z-index: 50;
  width: min(292px, calc(100vw - 28px));
  border: 1px solid rgba(56, 189, 248, 0.55);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  color: #e5f2ff;
  padding: 14px;
  pointer-events: none;
}

.builder-floating-help strong {
  display: block;
  margin-bottom: 6px;
}

.builder-floating-help p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.45;
}

.builder-floating-help small {
  display: block;
  margin-top: 10px;
  color: #bae6fd;
  line-height: 1.45;
}

.builder-advice-output ul {
  padding-left: 20px;
}

.builder-advice-output li {
  margin: 7px 0;
}

.builder-advice-output button {
  margin-top: 12px;
  width: 100%;
}

.builder-status {
  min-height: 22px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.builder-preview {
  min-height: 620px;
}

.builder-hero-text {
  color: var(--muted);
  font-size: 20px;
}

.builder-preview-band {
  margin: 22px 0;
  padding: 22px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.1);
}

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

.builder-preview-grid section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.sales-site {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
}

.sales-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 46px;
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.sales-hero div {
  max-width: 580px;
}

.sales-badge {
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 900;
}

.sales-hero h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.02;
}

.sales-hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.sales-hero a,
.sales-cta button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
  padding: 12px 18px;
  text-decoration: none;
}

.sales-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  padding: 28px;
  background: #f8fbff;
}

.template-strip {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  background: #0f172a;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.sales-urgency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 28px;
  background: #fef3c7;
  color: #78350f;
}

.sales-urgency a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 8px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 900;
  padding: 10px 14px;
  text-decoration: none;
}

.sales-intro p,
.sales-intro strong {
  margin: 0;
  font-size: 18px;
}

.sales-low .sales-hero a,
.sales-low .sales-cta button {
  background: #334155;
}

.sales-high .sales-hero a,
.sales-high .sales-cta button {
  background: #ef4444;
}

.sales-high .sales-badge {
  background: rgba(239, 68, 68, 0.88);
}

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

.sales-products article {
  border-top: 1px solid #e5edf7;
  border-right: 1px solid #e5edf7;
}

.sales-products article:last-child {
  border-right: 0;
}

.sales-products img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.sales-products div {
  padding: 20px;
}

.sales-products h3,
.sales-cta h3 {
  margin: 0 0 8px;
}

.sales-products p,
.sales-cta p {
  color: #475569;
  margin: 0;
}

.sales-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e5edf7;
  background: #0f172a;
  color: #ffffff;
}

.sales-proof div {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.sales-proof div:last-child {
  border-right: 0;
}

.sales-proof strong,
.sales-proof span {
  display: block;
}

.sales-proof strong {
  font-size: 30px;
}

.sales-proof span {
  color: rgba(255, 255, 255, 0.72);
}

.monetization-plan {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  padding: 28px;
  border-top: 1px solid #e5edf7;
  background: #f8fbff;
}

.monetization-plan .sales-badge {
  background: #dbeafe;
  color: #075985;
}

.monetization-plan h3 {
  margin: 0 0 10px;
}

.monetization-plan p {
  color: #475569;
}

.monetization-plan ol {
  margin: 0;
  padding-left: 20px;
}

.monetization-plan li {
  margin-bottom: 10px;
}

.monetization-notes {
  padding: 12px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e5edf7;
}

.sales-cta {
  padding: 28px;
  text-align: center;
}

.editable {
  outline: 1px dashed transparent;
  outline-offset: 3px;
}

.editable:hover,
.editable:focus {
  outline-color: rgba(56, 189, 248, 0.85);
  background: rgba(56, 189, 248, 0.08);
}

[data-theme="dark"] .lead-form input,
[data-theme="dark"] .lead-form select,
[data-theme="dark"] .lead-form textarea,
[data-theme="dark"] .builder-panel input,
[data-theme="dark"] .builder-panel select,
[data-theme="dark"] .builder-panel textarea {
  background: rgba(15, 23, 42, 0.72);
  color: var(--ink);
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .topbar nav {
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .top-controls {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .segmented,
  .theme-toggle {
    width: 100%;
  }

  .top-controls .top-cta {
    grid-column: 1 / -1;
  }

  .top-cta {
    width: 100%;
  }

  .hero {
    padding: 52px 14px 30px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions,
  .stats,
  .agent-grid,
  .case-grid,
  .pricing-grid,
  .referral-box,
  .dashboard,
  .dash-cards,
  .tracking-box div,
  .form-grid,
  .builder-shell,
  .builder-preview-grid,
  .sales-intro,
  .sales-products,
  .sales-proof,
  .monetization-plan,
  .template-strip,
  .sales-urgency,
  .steps {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section,
  .contact {
    margin-left: 12px;
    margin-right: 12px;
    padding: 20px;
  }

  .builder-floating-help {
    left: 14px !important;
    right: 14px;
    top: auto !important;
    bottom: 14px;
  }

  .stats {
    padding: 0 12px;
  }
}
