:root {
  --ink: #17191f;
  --ink-soft: #3a404b;
  --muted: #6b7280;
  --paper: #ffffff;
  --surface: #f4f7fa;
  --surface-strong: #e9eef3;
  --line: #d8e0e7;
  --cool: #00a0b8;
  --cool-dark: #037083;
  --heat: #e9472e;
  --gold: #f2a93b;
  --green: #2d8a68;
  --charcoal: #101216;
  --shadow: 0 20px 60px rgba(18, 26, 38, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: rgba(0, 160, 184, 0.22);
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 28px;
  color: #f9fbfc;
  background: rgba(13, 15, 19, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, #f7fcff, #aeefff 48%, #ffcf74);
  border-radius: 8px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 38px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.header-cta,
.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.header-cta {
  min-height: 42px;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--heat);
  border-radius: var(--radius);
  font-weight: 800;
}

.header-cta svg,
.button svg,
.text-link svg,
.trust-row svg,
.service-card svg,
.agent-card svg,
.sms-step svg,
.trust-grid svg,
.check-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.92) 0%, rgba(8, 10, 13, 0.7) 45%, rgba(8, 10, 13, 0.24) 100%),
    url("https://images.pexels.com/photos/32497161/pexels-photo-32497161.jpeg?auto=compress&cs=tinysrgb&w=1800")
      center / cover;
}

.hero-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 32%;
  background: linear-gradient(0deg, rgba(8, 10, 13, 0.82), rgba(8, 10, 13, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 36px;
  width: min(1200px, calc(100% - 48px));
  min-height: 82vh;
  margin: 0 auto;
  padding: 86px 0 54px;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--cool);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #83edff;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 4.75rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 2.45rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.button {
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--heat), #f28b39);
  box-shadow: 0 14px 30px rgba(233, 71, 46, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.button.wide {
  width: 100%;
  margin-top: 16px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 0.86rem;
}

.dispatch-panel {
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-kicker {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dispatch-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 14px;
  font-weight: 900;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(45, 138, 104, 0.14);
}

.dispatch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.dispatch-grid div {
  padding: 12px;
  background: #f5f8fb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.dispatch-grid small,
.estimate-output small,
.metric-card small {
  display: block;
  color: var(--muted);
}

.dispatch-grid strong {
  font-size: 1.05rem;
}

.route-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 16px 0;
}

.route-line span {
  height: 7px;
  background: var(--cool);
  border-radius: 999px;
}

.route-line span:nth-child(2) {
  background: var(--gold);
}

.route-line span:nth-child(3) {
  background: var(--heat);
}

.dispatch-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.visual-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--charcoal);
}

.visual-strip figure {
  position: relative;
  min-height: 170px;
  margin: 0;
  overflow: hidden;
}

.visual-strip img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 500ms ease;
}

.visual-strip figure:hover img {
  transform: scale(1.05);
}

.visual-strip figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 9px;
  color: #ffffff;
  background: rgba(15, 18, 23, 0.72);
  border-radius: var(--radius);
  font-weight: 900;
}

.section {
  padding: 86px 0;
}

.section-head,
.tool-layout,
.estimate-layout,
.agent-grid,
.portal-shell,
.crm-board,
.sms-layout,
.plan-grid,
.trust-grid,
.final-cta {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
}

.text-link {
  justify-self: end;
  color: var(--cool-dark);
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.service-card,
.agent-card,
.plan-card,
.trust-grid article,
.metric-card,
.tool-panel,
.estimate-output,
.schedule-panel,
.phone-preview {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  min-height: 184px;
  padding: 18px;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 160, 184, 0.46);
  box-shadow: 0 16px 32px rgba(24, 37, 50, 0.1);
}

.service-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  color: var(--cool-dark);
}

.service-card p,
.agent-card p,
.plan-card p,
.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.tool-section {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(13, 16, 20, 0.95), rgba(13, 16, 20, 0.82)),
    url("https://images.pexels.com/photos/32588555/pexels-photo-32588555.jpeg?auto=compress&cs=tinysrgb&w=1800")
      center / cover;
}

.tool-section .section-head p:not(.eyebrow),
.light-head h2,
.light-head .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.tool-section .section-head h2,
.light-head h2 {
  color: #ffffff;
}

.tool-layout,
.estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
}

.tool-panel {
  padding: 22px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.span-2 {
  grid-column: span 2;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 850;
}

fieldset {
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  background: #fbfdff;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cool);
  box-shadow: 0 0 0 3px rgba(0, 160, 184, 0.16);
}

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

.choice-grid label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: #f6f9fb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 750;
}

.choice-grid input {
  width: 16px;
  height: 16px;
  padding: 0;
}

.result-panel {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, #ffffff, #f7fbfd 58%, #eef8fb);
}

.result-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-top svg {
  width: 34px;
  height: 34px;
  color: var(--cool-dark);
}

.result-badge,
.pill,
.plan-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.result-badge {
  color: var(--cool-dark);
  background: rgba(0, 160, 184, 0.13);
}

.result-badge.emergency,
.pill.red {
  color: #aa2318;
  background: rgba(233, 71, 46, 0.14);
}

.result-badge.priority,
.pill.gold {
  color: #8b5a08;
  background: rgba(242, 169, 59, 0.2);
}

.result-badge.routine,
.pill.green {
  color: #1d6e52;
  background: rgba(45, 138, 104, 0.16);
}

.pill.blue {
  color: #03677a;
  background: rgba(0, 160, 184, 0.14);
}

.check-list,
.recommendation-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.recommendation-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
}

.check-list svg {
  color: var(--green);
}

.estimate-section {
  background:
    linear-gradient(180deg, #f4f7fa, #ffffff 52%, #f1f5f8);
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  box-shadow: none;
}

.estimate-form label:first-child {
  grid-column: span 2;
}

input[type="range"] {
  accent-color: var(--heat);
  padding: 0;
}

.estimate-output {
  padding: 22px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(233, 71, 46, 0.08), rgba(0, 160, 184, 0.08)),
    #ffffff;
  box-shadow: var(--shadow);
}

.estimate-output h3 {
  font-size: 1.4rem;
}

.estimate-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.estimate-numbers div {
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.estimate-numbers strong {
  display: block;
  font-size: 1.3rem;
}

.agents-section {
  background: var(--charcoal);
  color: #ffffff;
}

.agents-section .section-head .eyebrow,
.agents-section .section-head p {
  color: #83edff;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.agent-card {
  min-height: 230px;
  padding: 18px;
  color: var(--ink);
}

.agent-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 26px;
  color: var(--cool-dark);
}

.agent-card span {
  display: inline-flex;
  margin-top: 18px;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--surface-strong);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.active-agent {
  background:
    linear-gradient(180deg, rgba(233, 71, 46, 0.12), rgba(255, 255, 255, 1) 42%),
    #ffffff;
  border-color: rgba(233, 71, 46, 0.38);
}

.active-agent svg {
  color: var(--heat);
}

.portal-section {
  background:
    linear-gradient(90deg, rgba(244, 247, 250, 0.94), rgba(244, 247, 250, 0.88)),
    url("https://images.pexels.com/photos/7693130/pexels-photo-7693130.jpeg?auto=compress&cs=tinysrgb&w=1800")
      center / cover;
}

.portal-shell {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portal-tabs {
  display: flex;
  gap: 1px;
  background: var(--line);
}

.tab-button {
  flex: 1;
  min-height: 52px;
  padding: 12px;
  color: var(--ink-soft);
  background: #f8fbfd;
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.tab-button.is-active {
  color: #ffffff;
  background: var(--cool-dark);
}

.portal-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
  min-height: 280px;
  padding: 16px;
}

.portal-item {
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.portal-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.portal-item p {
  margin-bottom: 12px;
  color: var(--muted);
}

.progress-track {
  height: 8px;
  background: var(--surface-strong);
  border-radius: 999px;
  overflow: hidden;
}

.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cool), var(--green));
  border-radius: inherit;
}

.crm-section {
  background: #111318;
}

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

.metric-card {
  padding: 18px;
  color: var(--ink);
}

.metric-card span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
}

.metric-card strong {
  display: block;
  margin: 8px 0 2px;
  font-size: 2.2rem;
  line-height: 1;
}

.crm-table {
  grid-column: span 3;
  overflow: hidden;
  color: #ffffff;
  background: #181c23;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr 1fr;
  gap: 10px;
  align-items: center;
  min-height: 56px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.table-head {
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-panel {
  padding: 18px;
}

.tech-route {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.tech-route:last-child {
  border-bottom: 0;
}

.tech-route span {
  grid-row: span 2;
  color: var(--heat);
  font-weight: 900;
}

.tech-route em {
  color: var(--muted);
  font-style: normal;
}

.sms-section {
  background: #ffffff;
}

.sms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: stretch;
}

.sms-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.sms-step {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 16px;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.sms-step.is-active {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.phone-preview {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 440px;
  padding: 24px;
  background:
    linear-gradient(180deg, #111318, #252b33),
    var(--ink);
  box-shadow: var(--shadow);
}

.phone-top {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 96px;
  height: 18px;
  transform: translateX(-50%);
  background: #07090b;
  border-radius: 999px;
}

.message-bubble {
  align-self: center;
  min-height: 160px;
  padding: 18px;
  color: var(--ink);
  background: #dff8ff;
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  font-weight: 780;
}

.plans-section {
  background:
    linear-gradient(90deg, rgba(244, 247, 250, 0.95), rgba(244, 247, 250, 0.9)),
    url("https://images.pexels.com/photos/27638181/pexels-photo-27638181.jpeg?auto=compress&cs=tinysrgb&w=1800")
      center / cover;
}

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

.plan-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.plan-card strong {
  margin: 6px 0 14px;
  font-size: 2rem;
  line-height: 1;
}

.plan-card p {
  margin-bottom: auto;
}

.plan-card .button {
  margin-top: 26px;
}

.featured-plan {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(0, 160, 184, 0.3), rgba(17, 19, 24, 0)),
    var(--ink);
  border-color: rgba(0, 160, 184, 0.42);
}

.featured-plan p {
  color: rgba(255, 255, 255, 0.72);
}

.featured-plan .plan-tag {
  margin-bottom: 12px;
  color: var(--ink);
  background: #83edff;
}

.trust-section {
  background: #ffffff;
}

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

.trust-grid article {
  padding: 22px;
}

.trust-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
  color: var(--heat);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
  padding: 34px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.92), rgba(10, 12, 16, 0.62)),
    url("https://images.pexels.com/photos/29580123/pexels-photo-29580123.jpeg?auto=compress&cs=tinysrgb&w=1800")
      center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 740px;
  margin: 0;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-content,
  .tool-layout,
  .estimate-layout,
  .sms-layout {
    grid-template-columns: 1fr;
  }

  .dispatch-panel {
    max-width: 520px;
  }

  .service-grid,
  .agent-grid,
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .crm-board,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .crm-table {
    grid-column: span 2;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    padding: 10px;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 28px, 1200px);
    padding: 72px 0 28px;
  }

  .dispatch-panel {
    display: none;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .section {
    padding: 58px 0;
  }

  .section-head,
  .tool-layout,
  .estimate-layout,
  .agent-grid,
  .portal-shell,
  .crm-board,
  .sms-layout,
  .plan-grid,
  .trust-grid,
  .final-cta,
  .service-grid {
    width: min(100% - 28px, 1200px);
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .text-link {
    justify-self: start;
  }

  .visual-strip,
  .service-grid,
  .agent-grid,
  .plan-grid,
  .trust-grid,
  .crm-board,
  .portal-grid,
  .sms-steps,
  .form-grid,
  .estimate-form,
  .estimate-numbers {
    grid-template-columns: 1fr;
  }

  .visual-strip figure:nth-child(n + 4) {
    display: none;
  }

  .span-2,
  .estimate-form label:first-child,
  .crm-table {
    grid-column: auto;
  }

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

  .table-row {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    padding: 12px;
  }

  .table-head {
    display: none;
  }

  .portal-tabs {
    overflow-x: auto;
  }

  .tab-button {
    min-width: 130px;
  }

  .phone-preview {
    min-height: 340px;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}
