:root {
  --ink: #141414;
  --ink-soft: #3f4548;
  --night: #101216;
  --carbon: #1c2026;
  --panel: #ffffff;
  --paper: #f4f7f8;
  --signal: #ffd23f;
  --signal-dark: #c99600;
  --alert: #ff4d2e;
  --blue: #1f7aff;
  --teal: #00a896;
  --muted: #697277;
  --line: #dde4e7;
  --shadow: 0 24px 60px rgba(16, 18, 22, 0.18);
  --soft-shadow: 0 12px 30px rgba(16, 18, 22, 0.09);
  --radius: 8px;
  --rail: 258px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 72px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 4.25rem;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.45rem;
}

h3 {
  font-size: 1.05rem;
}

p {
  margin-bottom: 16px;
}

.container {
  width: min(100% - 48px, var(--maxw));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

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

.site-header {
  z-index: 50;
  color: #fff;
  background: var(--night);
}

.header-inner {
  display: grid;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--signal);
  border-radius: var(--radius);
  color: var(--signal);
  background: #1b1e24;
}

.brand-mark svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.brand strong {
  font-weight: 950;
}

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

.nav {
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 850;
}

.nav a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 10px 12px;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--signal);
  border-color: rgba(255, 210, 63, 0.58);
}

.header-call {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  text-decoration: none;
  background: var(--signal);
}

.header-call span {
  color: rgba(20, 20, 20, 0.66);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.header-call strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 950;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 18, 22, 0.98) 0%, rgba(16, 18, 22, 0.95) 52%, rgba(16, 18, 22, 0.68) 100%),
    url("../img/texas-roof-hero.png") center right / cover,
    var(--night);
}

.hero::before {
  content: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent 0, transparent 42%, rgba(255, 210, 63, 0.12) 42%, rgba(255, 210, 63, 0.12) calc(42% + 10px), transparent calc(42% + 10px)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 14px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 44px;
  align-items: center;
  padding: 74px 0;
}

.hero-copy {
  grid-column: 1;
  max-width: 800px;
}

.hero-lede {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--alert);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 24px;
}

.proof-row a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.proof-row a:hover,
.proof-row a:focus-visible {
  color: var(--signal);
  border-color: rgba(255, 210, 63, 0.6);
}

.proof-row a:focus-visible {
  outline: 3px solid rgba(31, 122, 255, 0.42);
  outline-offset: 3px;
}

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 20px;
  font: inherit;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.btn .js-phone-text {
  margin-left: 4px;
}

.btn-call,
.btn-submit {
  color: #fff;
  background: var(--alert);
  box-shadow: 0 18px 36px rgba(255, 77, 46, 0.28);
}

.btn-call:hover,
.btn-submit:hover {
  filter: brightness(1.05);
}

.hero-actions .btn-call {
  min-width: 190px;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 800px;
  margin: 34px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-facts div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-facts dt {
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.inspection-panel {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  max-width: 420px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.panel-kicker {
  margin-bottom: 8px;
  color: var(--alert);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.inspection-panel h2 {
  font-size: 1.55rem;
}

.panel-copy,
.market-meta {
  color: var(--muted);
  font-size: 0.94rem;
}

.routing-form {
  display: grid;
  gap: 13px;
}

.routing-form label span,
.field-label {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.city-combobox {
  position: relative;
}

.routing-form select,
.city-trigger,
.city-menu input[type="search"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.city-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}

.city-trigger svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.routing-form select:focus,
.city-trigger:focus,
.city-menu input[type="search"]:focus {
  border-color: var(--signal);
  outline: 3px solid rgba(255, 210, 63, 0.22);
}

.city-menu {
  position: absolute;
  inset: calc(100% + 7px) 0 auto;
  z-index: 25;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.city-results {
  display: grid;
  gap: 6px;
  max-height: 242px;
  margin-top: 8px;
  overflow-y: auto;
}

.city-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 10px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 9px 10px;
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.city-option strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.city-option span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
}

.city-option small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.78rem;
}

.city-option:hover,
.city-option:focus,
.city-option[aria-selected="true"] {
  border-color: rgba(31, 122, 255, 0.32);
  outline: 0;
  background: #f1f7ff;
}

.city-empty {
  margin: 0;
  padding: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.selected-market {
  border: 1px solid #e0d19a;
  border-radius: var(--radius);
  padding: 16px;
  background: #fff8d8;
}

.selected-label {
  margin-bottom: 7px;
  color: rgba(20, 20, 20, 0.58);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.market-phone {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.86rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.market-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.market-meta span {
  border-radius: var(--radius);
  padding: 5px 8px;
  color: var(--ink);
  background: #fff;
}

.panel-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  list-style: none;
}

.panel-list li {
  position: relative;
  padding-left: 18px;
}

.panel-list li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--alert);
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding-top: 76px;
}

.section-alt {
  background: #fff;
}

.project-section,
.faq-section {
  background: var(--paper);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-heading h2 {
  max-width: 900px;
}

.section-heading p,
.split-heading p,
.heading-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.72fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.split-heading .heading-note {
  margin: 0 0 16px;
  border-left: 4px solid var(--signal);
  padding-left: 16px;
}

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

.feature-card,
.evaluation-card,
.process-grid li {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.feature-card {
  border-top: 6px solid var(--blue);
}

.feature-card:nth-child(2) {
  border-top-color: var(--alert);
}

.feature-card:nth-child(3) {
  border-top-color: var(--teal);
}

.feature-card p,
.evaluation-card p,
.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.location-card a {
  color: inherit;
  text-decoration: none;
}

.location-card a:hover,
.location-card a:focus-visible,
.location-card a[aria-current="page"] {
  color: var(--blue);
}

.icon-tile {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
}

.icon-tile svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.service-card {
  display: grid;
  grid-template-rows: 230px minmax(0, 1fr);
  grid-column: span 6;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.service-card:nth-child(1),
.service-card:nth-child(4) {
  grid-column: span 7;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 5;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

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

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  border-color: #c9d3d8;
  background: var(--carbon);
}

.process-grid span {
  display: inline-flex;
  min-width: 42px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--signal);
  font-size: 0.9rem;
  font-weight: 950;
}

.process-grid h3 {
  color: #fff;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.7);
}

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

.evaluation-card {
  min-height: 270px;
  background: #fff;
}

.evaluation-card:nth-child(even) {
  color: #fff;
  background: var(--night);
}

.evaluation-card:nth-child(even) p {
  color: rgba(255, 255, 255, 0.72);
}

.evaluation-focus {
  margin: 14px 0 12px;
  color: var(--blue);
  font-size: 1.32rem;
  font-weight: 950;
  line-height: 1.1;
}

.evaluation-card:nth-child(even) .evaluation-focus {
  color: var(--signal);
}

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

.project-grid article {
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.project-grid article:first-child {
  grid-column: span 3;
}

.project-grid article:nth-child(2) {
  grid-column: span 3;
}

.project-grid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.project-grid div {
  padding: 20px;
}

.project-grid span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--alert);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: start;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 18, 22, 0.05);
}

.faq-list summary {
  padding: 17px 18px;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0 18px 18px;
  color: var(--muted);
}

.final-cta {
  padding: 76px 0;
  color: var(--ink);
  background: var(--signal);
}

.final-cta .eyebrow {
  color: var(--ink);
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.final-grid p {
  max-width: 660px;
  color: rgba(20, 20, 20, 0.72);
}

.site-footer {
  padding: 42px 0 36px;
  color: rgba(255, 255, 255, 0.72);
  background: #08090b;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
}

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

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

.footer-disclaimer {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  line-height: 1.55;
}

.footer-disclaimer p {
  margin: 0 0 10px;
}

.footer-disclaimer strong {
  color: rgba(255, 255, 255, 0.84);
}

.mobile-action-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 -12px 26px rgba(16, 18, 22, 0.18);
}

.mobile-action-bar a {
  min-height: 60px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--night);
  font-weight: 950;
  text-decoration: none;
}

.mobile-action-bar a:first-child {
  color: var(--ink);
  background: var(--signal);
}

@media (min-width: 1121px) {
  .site-header {
    position: fixed;
    inset: 0 auto 0 0;
    width: var(--rail);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-inner {
    width: auto;
    min-height: 100vh;
    margin: 0;
    padding: 26px 22px;
    grid-template-rows: auto 1fr auto;
    align-items: start;
  }

  .brand {
    align-items: flex-start;
  }

  .nav {
    flex-direction: column;
    align-self: start;
    width: 100%;
    margin-top: 28px;
  }

  .nav a {
    width: 100%;
  }

  .header-call {
    align-self: end;
    width: 100%;
  }

  main,
  .site-footer,
  .mobile-action-bar {
    margin-left: var(--rail);
  }

  .hero::before {
    content: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 44px;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  .site-header {
    position: sticky;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: minmax(220px, 1fr) auto;
    align-items: center;
    gap: 18px;
  }

  .nav {
    display: none;
  }

  .hero::before {
    content: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 0;
  }

  .hero-copy,
  .inspection-panel {
    grid-column: auto;
    grid-row: auto;
  }

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

  .inspection-panel {
    max-width: 460px;
  }

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

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    grid-column: auto;
  }

  .feature-grid,
  .evaluation-grid,
  .project-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid article,
  .project-grid article:first-child,
  .project-grid article:nth-child(2) {
    grid-column: auto;
  }

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

@media (max-width: 760px) {
  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  body {
    padding-bottom: 60px;
  }

  .container {
    width: min(100% - 28px, var(--maxw));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .header-call {
    width: 100%;
  }

  .brand small {
    max-width: 240px;
  }

  .hero::before {
    content: none;
  }

  .hero-grid {
    gap: 24px;
    padding: 42px 0 54px;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-facts,
  .feature-grid,
  .service-grid,
  .evaluation-grid,
  .project-grid,
  .process-grid,
  .footer-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    border: 0;
    gap: 10px;
  }

  .hero-facts div,
  .feature-card,
  .evaluation-card,
  .process-grid li {
    padding: 18px;
  }

  .service-card {
    display: grid !important;
    grid-template-rows: 220px auto !important;
    min-height: 0 !important;
    background: #fff !important;
  }

  .service-card img {
    position: static !important;
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
    object-fit: cover !important;
  }

  .service-card div {
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    padding: 18px !important;
    color: var(--ink) !important;
    background: #fff !important;
  }

  .service-card h3 {
    color: var(--ink) !important;
  }

  .service-card p {
    color: var(--ink-soft) !important;
  }

  .project-grid img {
    height: 220px;
  }

  .section {
    padding: 58px 0;
  }

  .section-tight {
    padding-top: 58px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .split-heading .heading-note {
    margin: 0 0 20px;
  }

  .market-phone {
    font-size: 1.6rem;
  }

  .final-cta {
    padding: 58px 0;
  }

  .mobile-action-bar {
    display: grid;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.14rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .proof-row a {
    width: 100%;
  }

  .inspection-panel {
    padding: 20px;
  }
}

/* The source homepage contains this SEO-neutral trust strip. */
.trust-strip {
  color: var(--ink);
  background: var(--signal);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(20, 20, 20, 0.2);
}

.strip-grid span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: var(--signal);
  font-size: 0.77rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

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

@media (max-width: 760px) {
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid span {
    min-height: 54px;
  }
}
