:root {
  color-scheme: light;
  --black: #000000;
  --near-black: #050505;
  --button-black: #070707;
  --white: #ffffff;
  --warm-white: #faf7f1;
  --gold: #c79a45;
  --gold-deep: #b8862b;
  --gold-soft: #d7b56d;
  --line: #e5e1d8;
  --line-soft: #efeae1;
  --text: #111111;
  --muted: #5f5b55;
  --muted-line: #b8b8b8;
  --shadow-card: 0 25px 70px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 6%, rgba(250, 247, 241, 0.95), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, var(--white) 0%, var(--white) 56%, var(--warm-white) 100%);
  color: var(--black);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 20px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 225, 216, 0.8);
  backdrop-filter: blur(18px);
}

.site-header.has-shadow {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 18px 32px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.header-cta,
.button.primary {
  background: var(--button-black);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.button.secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--line);
}

.nav-toggle {
  display: inline-grid;
  gap: 6px;
  width: 42px;
  min-width: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--black);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(74px, 8vw, 118px) clamp(20px, 5vw, 64px) 60px;
}

.network-pattern {
  position: absolute;
  top: 36px;
  right: 18px;
  z-index: 0;
  width: min(35vw, 460px);
  pointer-events: none;
}

.network-pattern path,
.network-pattern circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  opacity: 0.25;
}

.network-pattern circle {
  fill: var(--gold);
  stroke: none;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(54px, 7.05vw, 92px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.hero-copy h1 span {
  display: block;
}

.gold-text {
  width: max-content;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-soft));
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.7;
}

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

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.dashboard-card {
  position: relative;
  width: min(100%, 590px);
  min-height: 410px;
  padding: 34px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transform: translateX(18px);
  overflow: hidden;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 64px;
  padding: 0 20px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--white);
}

.topbar-pill {
  display: block;
  height: 20px;
  border-radius: 999px;
}

.topbar-black {
  width: 126px;
  margin-right: auto;
  background: var(--near-black);
}

.topbar-light {
  width: 64px;
  background: #efefef;
}

.topbar-gold {
  width: 70px;
  background: var(--gold);
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.metric-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 168px;
  padding: 24px 20px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--white);
}

.metric-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  color: var(--black);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.email-icon {
  position: relative;
  width: 52px;
  height: 38px;
  border: 4px solid var(--black);
  border-radius: 4px;
}

.email-icon::before,
.email-icon::after {
  content: "";
  position: absolute;
  top: 9px;
  width: 31px;
  height: 4px;
  background: var(--black);
}

.email-icon::before {
  left: -2px;
  transform: rotate(34deg);
  transform-origin: left center;
}

.email-icon::after {
  right: -2px;
  transform: rotate(-34deg);
  transform-origin: right center;
}

.facebook-icon {
  font-family: Arial, Helvetica, sans-serif;
}

.x-icon {
  font-size: 48px;
}

.metric-card span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: var(--muted-line);
}

.metric-card span:nth-of-type(1) {
  width: 84%;
}

.metric-card span:nth-of-type(2) {
  width: 68%;
}

.metric-card span:nth-of-type(3) {
  width: 78%;
}

.mobile-metric-label,
.mobile-dashboard-caption,
.trust-mobile-intro {
  display: none;
}

.chart-line {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 22px;
  width: calc(100% - 72px);
  height: 128px;
  overflow: visible;
}

.chart-line path {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.chart-line circle {
  fill: var(--gold);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) 70px;
}

.hero-stats div {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.hero-stats strong {
  color: var(--gold);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.hero-stats span {
  margin-top: 12px;
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--near-black);
  color: var(--white);
}

.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  font-weight: 800;
}

.section,
.lead-builder,
.delivery-section,
.quote-section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 64px);
}

.section,
.builder-panel,
.lead-grid,
.steps,
.delivery-section,
.quote-section {
  max-width: 1440px;
  margin: 0 auto;
}

.intro-section,
.builder-panel,
.delivery-section,
.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.intro-section > p,
.delivery-section > p {
  align-self: end;
  margin-bottom: 0;
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h2 {
  margin-bottom: 0;
  color: var(--black);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  color: var(--black);
  font-size: 1.28rem;
  line-height: 1.15;
}

.intro-section > p,
.builder-copy p:not(.eyebrow),
.delivery-section p:not(.eyebrow),
.quote-copy > p {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.7;
}

.filters {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(240px, 1fr);
  gap: 20px;
  align-items: start;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.field-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-weight: 650;
}

input,
select {
  min-height: 58px;
  padding: 0 16px;
}

textarea {
  resize: vertical;
  min-height: 132px;
  padding: 16px;
}

.lead-type-options,
.package-options {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.lead-type-option,
.package-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  color: var(--black);
  font-weight: 800;
  cursor: pointer;
}

.lead-type-option input,
.package-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  opacity: 0;
}

.lead-type-option span::before,
.package-option span::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 2px solid var(--gold-deep);
  border-radius: 50%;
  background: transparent;
  vertical-align: -2px;
}

.lead-type-option input:checked + span::before,
.package-option input:checked + span::before {
  box-shadow: inset 0 0 0 4px var(--white);
  background: var(--gold);
}

.lead-type-note,
.package-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.package-options.is-prefilled {
  background: #faf7f1;
}

.package-options.is-prefilled .package-option input:checked + span {
  color: var(--muted);
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.lead-card {
  display: grid;
  gap: 18px;
  min-height: 530px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.lead-card[hidden] {
  display: none;
}

.lead-card > img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  background: #faf7f1;
}

.lead-card p:not(.card-kicker),
.lead-card li,
.steps p,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.lead-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.lead-card a {
  align-self: end;
  display: inline-flex;
  justify-content: center;
  min-height: 50px;
  padding: 15px 18px;
  border-radius: 8px;
  background: var(--button-black);
  color: var(--white);
  font-weight: 850;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.steps article {
  min-height: 250px;
  padding: 26px;
  border-top: 4px solid var(--gold);
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.steps span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--gold-deep);
  font-size: 0.9rem;
  font-weight: 900;
}

.delivery-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quote-note,
.contact-email {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.quote-note span,
.contact-email a {
  color: var(--muted);
  line-height: 1.5;
}

.contact-email a {
  color: var(--gold-deep);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.quote-form-column {
  display: grid;
  gap: 14px;
}

.pricing-support {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.pricing-support a {
  color: var(--gold-deep);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.quote-form,
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}

.quote-form .wide-field,
.quote-form .package-field,
.contact-form .wide-field,
.contact-form .button,
.contact-form .form-status,
.quote-form .button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-deep);
  font-weight: 850;
  line-height: 1.4;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.62);
}

.modal-backdrop[hidden] {
  display: none;
}

.contact-modal {
  width: min(100%, 980px);
  max-height: min(92vh, 860px);
  overflow: auto;
  padding: clamp(20px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}

.modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.modal-header h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.contact-modal > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-modal > p a {
  color: var(--gold-deep);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-method {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-method legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-method label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm-white);
  font-weight: 800;
  cursor: pointer;
}

.contact-method input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--gold);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 40px clamp(20px, 5vw, 64px);
  background: var(--near-black);
  color: var(--white);
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand img {
  width: 50px;
  height: 50px;
}

.site-footer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.footer-legal a,
.footer-legal span {
  color: var(--gold-soft);
  font-weight: 850;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.legal-hero {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 64px) clamp(34px, 5vw, 64px);
}

.legal-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.legal-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 750;
}

.legal-content {
  max-width: 960px;
  padding: 0 clamp(20px, 5vw, 64px) clamp(72px, 9vw, 120px);
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.15;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--gold-deep);
  font-weight: 850;
  overflow-wrap: anywhere;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(199, 154, 69, 0.35);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero,
  .intro-section,
  .builder-panel,
  .delivery-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-content: center;
  }

  .dashboard-card {
    transform: none;
  }

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

@media (max-width: 780px) {
  .site-header {
    min-height: 72px;
    padding: 9px 20px;
  }

  .main-nav {
    position: fixed;
    inset: 72px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow-card);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    gap: 36px;
    padding-top: 46px;
    padding-bottom: 34px;
  }

  .hero-copy h1 {
    font-size: 54px;
  }

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

  .filters,
  .lead-grid,
  .steps,
  .quote-form,
  .contact-form,
  .contact-method {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    width: 100%;
    min-height: 260px;
    padding: 18px;
    border-radius: 14px;
  }

  .dashboard-topbar {
    height: 46px;
    padding: 0 14px;
    border-radius: 10px;
  }

  .topbar-pill {
    height: 12px;
  }

  .topbar-black {
    width: 38%;
  }

  .topbar-light,
  .topbar-gold {
    width: 18%;
  }

  .metric-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 14px;
  }

  .metric-card {
    place-items: center;
    align-content: center;
    gap: 8px;
    min-height: 104px;
    padding: 12px 6px;
    text-align: center;
  }

  .metric-icon {
    width: 34px;
    height: 34px;
    margin: 0;
    font-size: 34px;
  }

  .email-icon {
    width: 34px;
    height: 25px;
    border-width: 3px;
  }

  .email-icon::before,
  .email-icon::after {
    top: 6px;
    width: 20px;
    height: 3px;
  }

  .x-icon {
    font-size: 38px;
  }

  .mobile-metric-label {
    display: block;
    color: var(--black);
    font-size: 0.7rem;
    line-height: 1.15;
  }

  .metric-card > span {
    display: none;
  }

  .mobile-dashboard-caption {
    display: block;
    max-width: 52%;
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.35;
  }

  .chart-line {
    left: auto;
    right: 16px;
    bottom: 14px;
    width: 42%;
    height: 58px;
  }

  .chart-line path {
    stroke-width: 7;
  }

  .chart-line circle {
    r: 10px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 0 16px 36px;
  }

  .hero-stats div {
    min-height: 98px;
    padding: 12px 5px;
  }

  .hero-stats strong {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .hero-stats span {
    margin-top: 8px;
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 28px 20px 24px;
    border: 0;
  }

  .trust-mobile-intro {
    display: block;
    grid-column: 1 / -1;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-mobile-intro p {
    margin: 0 0 8px;
    color: var(--gold-soft);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .trust-mobile-intro h2 {
    max-width: 19rem;
    color: var(--white);
    font-size: 1.55rem;
    line-height: 1.12;
  }

  .trust-strip > span {
    position: relative;
    display: block;
    min-height: 0;
    padding: 42px 12px 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    line-height: 1.3;
    text-align: left;
  }

  .trust-strip > span:nth-of-type(odd) {
    padding-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-strip > span:nth-of-type(even) {
    padding-left: 18px;
  }

  .trust-strip > span::before {
    position: absolute;
    top: 16px;
    left: 0;
    color: var(--gold-soft);
    font-size: 0.72rem;
    font-weight: 900;
  }

  .trust-strip > span:nth-of-type(1)::before {
    content: "01";
  }

  .trust-strip > span:nth-of-type(2)::before {
    content: "02";
    left: 18px;
  }

  .trust-strip > span:nth-of-type(3)::before {
    content: "03";
  }

  .trust-strip > span:nth-of-type(4)::before {
    content: "04";
    left: 18px;
  }

  .section,
  .lead-builder,
  .delivery-section,
  .quote-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .intro-section,
  .builder-panel,
  .delivery-section,
  .quote-section {
    gap: 28px;
  }

  .intro-section > p,
  .delivery-section > p {
    align-self: auto;
  }

  .intro-section > p,
  .builder-copy p:not(.eyebrow),
  .delivery-section p:not(.eyebrow),
  .quote-copy > p {
    font-size: 1rem;
    line-height: 1.65;
  }

  h2 {
    font-size: clamp(2.35rem, 10vw, 3.35rem);
  }

  .site-footer {
    flex-direction: column;
  }

  .pricing-support {
    display: flex;
    align-items: start;
    flex-direction: column;
  }

  .quote-copy .contact-email {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 50px;
  }
}
