:root {
  --bg: #ffffff;
  --bg-soft: #f3f7f2;
  --bg-deep: #112019;
  --surface: #ffffff;
  --surface-muted: #f7faf7;
  --text: #17211b;
  --muted: #607068;
  --accent: #128c43;
  --accent-dark: #0b6930;
  --gold: #d6a647;
  --border: #dbe6dd;
  --shadow: 0 24px 70px rgba(17, 32, 25, 0.13);
  --radius: 8px;
  font-family: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 230, 221, 0.78);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 26px rgba(17, 32, 25, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.02rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand span span {
  color: var(--accent);
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.nav a,
.header-cta,
.text-link,
.site-footer a {
  text-decoration: none;
}

.nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--accent);
}

.header-cta {
  padding: 11px 16px;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: clamp(36px, 7vw, 86px);
  min-height: calc(100vh - 74px);
  background:
    radial-gradient(circle at 84% 18%, rgba(214, 166, 71, 0.18), transparent 27%),
    radial-gradient(circle at 16% 35%, rgba(18, 140, 67, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(18, 140, 67, 0.08), transparent 38%),
    linear-gradient(180deg, #fff 0%, #f8fbf8 100%);
}

.funnel-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  min-height: auto;
}

.hero-copy {
  max-width: 690px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--accent-dark);
  background: rgba(18, 140, 67, 0.09);
  border: 1px solid rgba(18, 140, 67, 0.18);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 780px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  margin-bottom: 18px;
  letter-spacing: 0;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.22;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-copy > p {
  max-width: 600px;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(18, 140, 67, 0.24);
}

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

.btn-secondary {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-line span {
  padding-right: 12px;
  border-right: 1px solid var(--border);
}

.trust-line span:last-child {
  border-right: 0;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin-top: 22px;
}

.hero-proof-grid div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(17, 32, 25, 0.06);
}

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

.hero-proof-grid strong {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.hero-proof-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.partner-strip {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 610px;
  margin-top: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.partner-strip img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  object-position: bottom;
  background: var(--bg-soft);
  border-radius: var(--radius);
}

.partner-strip strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.88rem;
}

.partner-strip p {
  margin-bottom: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-media {
  width: 100%;
}

.lead-panel {
  width: 100%;
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--border);
  border-top: 5px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 11px;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 800;
}

.lead-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.lead-panel p {
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.lead-panel form {
  display: grid;
  gap: 12px;
}

.lead-people {
  display: grid;
  grid-template-columns: 36px 36px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin: -4px 0 16px;
  padding: 10px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.lead-people > strong {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.lead-people span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.lead-panel label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
}

.lead-panel input,
.lead-panel select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--text);
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.95rem;
}

.lead-panel input:focus,
.lead-panel select:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(18, 140, 67, 0.14);
}

.check-label {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  line-height: 1.45;
}

.check-label input {
  min-height: 18px;
  margin-top: 2px;
}

.check-label a,
.form-note a {
  color: var(--accent);
  font-weight: 800;
}

.form-note {
  margin: -2px 0 2px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hidden-field {
  display: none;
}

.video-card {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(219, 230, 221, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-weight: 800;
}

.video-card-heading small {
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f1713;
  object-fit: contain;
}

.intro-band {
  display: grid;
  grid-template-columns: auto minmax(0, 700px);
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 5vw, 54px);
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--bg-deep);
}

.intro-band img {
  width: 148px;
  border-radius: var(--radius);
}

.intro-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: center;
}

.lr-overview {
  background: #fff;
}

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

.overview-grid article {
  padding: 24px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.overview-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.62;
}

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

.media-stack {
  display: grid;
  gap: 16px;
}

.media-stack img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(17, 32, 25, 0.12);
}

.media-stack img:last-child {
  width: 84%;
  justify-self: end;
  margin-top: -52px;
  background: #fff;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 800;
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.mini-list span {
  padding: 12px 14px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.chances {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 38px;
  text-align: center;
}

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

.benefit-grid.compact article {
  min-height: 170px;
}

.benefit-grid article {
  min-height: 210px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.benefit-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.88rem;
}

.auto-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: stretch;
}

.single-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: stretch;
}

.single-video-layout > video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #070b09;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
}

.single-video-layout > .auto-video-main {
  width: min(100%, 430px);
  aspect-ratio: 464 / 848;
  justify-self: center;
}

.auto-video-stack {
  display: grid;
  gap: 16px;
}

.auto-video-card {
  padding: 14px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.auto-video-card .video-link-card img {
  object-fit: contain;
  padding: 18px;
  background: #fff;
}

.auto-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #070b09;
  border-radius: var(--radius);
  object-fit: contain;
}

.auto-video-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.auto-copy {
  min-width: 0;
  padding: 28px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.auto-copy img {
  width: 100%;
  max-height: 210px;
  margin-bottom: 24px;
  object-fit: contain;
}

.car-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 18px 0 22px;
}

.car-row img {
  width: 100%;
  max-height: 70px;
  margin: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  object-fit: contain;
}

.ronald-replacement {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  margin-top: 28px;
  padding: clamp(20px, 4vw, 34px);
  color: #fff;
  background: var(--bg-deep);
  border-radius: var(--radius);
}

.ronald-replacement p {
  color: rgba(255, 255, 255, 0.74);
}

.ronald-replacement video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #070b09;
  border-radius: var(--radius);
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.faq-grid article {
  padding: 28px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-section {
  background:
    linear-gradient(180deg, #fff 0%, #f6f9f6 100%);
}

.contact-card {
  display: grid;
  grid-template-columns: 0.52fr 0.75fr 1.15fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.couple-photo {
  max-height: 420px;
  justify-self: center;
  object-fit: contain;
}

.contact-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
}

.contact-people img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  object-position: bottom;
  background: var(--bg-soft);
  border-radius: var(--radius);
}

address {
  margin-top: 24px;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--bg-deep);
}

.site-footer p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.84rem;
  font-weight: 700;
}

.content-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.content-page h1 {
  max-width: 880px;
}

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

.content-card {
  padding: 24px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 0;
}

.content-card img {
  width: 100%;
  height: 170px;
  margin-bottom: 18px;
  object-fit: contain;
}

.content-card h2 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.content-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.startersets-page h1 {
  max-width: 760px;
}

.starter-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: clamp(22px, 5vw, 52px);
  align-items: center;
  margin-top: 38px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 82% 20%, rgba(214, 166, 71, 0.16), transparent 34%),
    var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.starter-intro h2 {
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.starter-intro img {
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}

.set-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.set-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(17, 32, 25, 0.06);
}

.set-card img {
  width: 100%;
  height: 174px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.set-visual {
  width: 100%;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  color: var(--text);
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.set-visual strong {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.15;
}

.set-visual span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.set-visual-business {
  background: linear-gradient(135deg, #e9f6ee 0%, #d4eee7 52%, #9bcfd2 100%);
}

.set-visual-product {
  background: linear-gradient(135deg, #101813 0%, #283c31 55%, #e5c56f 100%);
  color: #fff;
}

.set-visual-product span {
  color: rgba(255, 255, 255, 0.76);
}

.set-visual-aloe {
  background: linear-gradient(135deg, #f7fbf4 0%, #dff0d9 55%, #8fc57d 100%);
}

.set-visual-body {
  background: linear-gradient(135deg, #fff6ed 0%, #f5d0a9 58%, #d85c4c 100%);
}

.set-visual-fragrance {
  background: linear-gradient(135deg, #fffaf2 0%, #f3d585 45%, #d9e8fb 100%);
}

.set-visual-advice {
  background: linear-gradient(135deg, #f8faf7 0%, #e7ede3 55%, #bfcbb6 100%);
}

.set-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.set-card p {
  margin-bottom: 0;
}

.set-meta {
  margin-top: 10px !important;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.price-pill {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
}

.registration-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background: var(--bg-deep);
  border-radius: var(--radius);
}

.registration-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.registration-panel p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.registration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.legal-text {
  max-width: 920px;
}

.legal-text h2 {
  margin-top: 36px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .nav {
    display: none;
  }

  .hero,
  .split-section,
  .auto-layout,
  .single-video-layout,
  .ronald-replacement,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

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

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

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

  .starter-intro,
  .set-card,
  .registration-panel {
    grid-template-columns: 1fr;
  }

  .registration-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    max-width: 104px;
    overflow: hidden;
    padding: 10px 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .section {
    padding: 52px 16px;
  }

  .hero {
    gap: 28px;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 2.7rem);
    line-height: 1.08;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .trust-line {
    display: grid;
    gap: 8px;
  }

  .trust-line span {
    padding-right: 0;
    border-right: 0;
  }

  .mini-list {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .intro-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-band img {
    margin: 0 auto;
  }

  .media-stack img:last-child {
    width: 100%;
    margin-top: 0;
  }

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

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

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

  .car-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-people {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
