:root {
  color-scheme: dark;
  --bg: #08090b;
  --bg-2: #111318;
  --surface: #171a20;
  --surface-2: #20242c;
  --ink: #f6f7f8;
  --muted: #b9c0ca;
  --soft: #7f8794;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #e20d18;
  --accent-dark: #9f0711;
  --silver: #d7dde6;
  --ok: #41d39a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --container: 1180px;
  --font-display: "Montserrat", "Arial", sans-serif;
  --font-body: "Roboto", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button,
a,
input,
select,
textarea {
  outline-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--silver);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: 3rem;
  font-weight: 900;
}

h2 {
  margin-bottom: 20px;
  font-size: 2.25rem;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  font-weight: 800;
}

p {
  color: var(--muted);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 9, 11, 0.84);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  min-height: 78px;
}

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

.brand img {
  width: 180px;
  height: auto;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--accent);
  font-size: 21px;
  line-height: 1;
}

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav {
  justify-content: center;
}

.main-nav a,
.contact-link {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.main-nav a:hover,
.contact-link:hover {
  color: var(--ink);
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.icon-link {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 700;
}

.icon-link:hover {
  border-color: rgba(226, 13, 24, 0.8);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(226, 13, 24, 0.25);
}

.button-primary:hover {
  background: #ff2530;
}

.button-light {
  background: var(--ink);
  color: var(--bg);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.button-outline:hover {
  border-color: rgba(226, 13, 24, 0.8);
  background: rgba(226, 13, 24, 0.08);
}

.button-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px 0 64px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.94), rgba(8, 9, 11, 0.68) 48%, rgba(8, 9, 11, 0.14)),
    linear-gradient(0deg, var(--bg), rgba(8, 9, 11, 0.12) 35%, rgba(8, 9, 11, 0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: #e9edf3;
  font-size: 1.24rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  margin: 0;
}

.hero-facts div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: 94px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.star-divider {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 1.4rem;
}

.benefit-band {
  background: linear-gradient(180deg, #08090b 0%, #111318 100%);
}

.feature-grid,
.package-grid,
.partner-grid,
.team-grid,
.client-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

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

.feature-card,
.package-card,
.partner-card,
.client-grid article,
.proof-grid article,
.lead-form,
.builder-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.feature-card {
  min-height: 260px;
  padding: 26px;
}

.line-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(226, 13, 24, 0.34);
  border-radius: 999px;
  color: var(--accent);
}

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

.split-section {
  background: var(--bg);
}

.split-grid,
.image-grid,
.testimonial-grid,
.contact-grid,
.video-card {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 108px;
}

.sticky-copy p {
  max-width: 520px;
}

.builder-panel {
  padding: 28px;
  box-shadow: var(--shadow);
}

.step-label {
  margin-bottom: 14px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--silver);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  padding: 14px 14px;
}

select {
  color: var(--ink);
}

select option {
  color: #111318;
}

textarea {
  resize: vertical;
}

.wide-field {
  margin-top: 14px;
}

.estimate,
.contract-step {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.estimate strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2rem;
}

.estimate p,
.contract-step p {
  margin-bottom: 0;
}

.packages {
  background: linear-gradient(180deg, #111318 0%, #08090b 100%);
}

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

.package-card {
  position: relative;
  display: grid;
  min-height: 460px;
  align-content: start;
  gap: 18px;
  padding: 28px;
}

.package-card strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2rem;
}

.package-featured {
  border-color: rgba(226, 13, 24, 0.65);
  background: linear-gradient(180deg, rgba(226, 13, 24, 0.16), rgba(255, 255, 255, 0.035));
}

.package-kicker {
  margin-bottom: 0;
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
}

.mini-player {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  margin: 12px 0;
}

.mini-player button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
}

.mini-player span {
  position: relative;
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.mini-player span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress, 0%);
  background: var(--accent);
}

.mini-player small {
  color: var(--soft);
}

.proof-section {
  background: #f2f4f7;
  color: #111318;
}

.proof-section p,
.proof-section .eyebrow {
  color: #4d5663;
}

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

.proof-grid article {
  background: #ffffff;
  color: #111318;
  border-color: #dde2ea;
  padding: 22px;
}

.proof-grid article p {
  margin-bottom: 0;
  color: #596271;
}

.media-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111318;
  box-shadow: 0 28px 80px rgba(8, 9, 11, 0.22);
}

.media-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.media-frame figcaption {
  padding: 18px;
  color: #d7dde6;
}

.clients-section {
  background: var(--bg-2);
}

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

.client-grid article {
  min-height: 160px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 18px;
  text-align: center;
}

.client-grid span {
  margin-bottom: 16px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2rem;
}

.client-grid p {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 700;
}

.testimonials {
  background: var(--bg);
}

.slider-actions {
  display: flex;
  gap: 10px;
}

.slider-actions button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
}

.review-viewport {
  position: relative;
  min-height: 330px;
}

.review {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.review.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.review p {
  color: var(--ink);
  font-size: 1.35rem;
}

.review div {
  margin-bottom: 16px;
  color: var(--accent);
}

.video-section {
  background: var(--bg-2);
}

.video-card {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d0f13;
}

.video-poster {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: var(--radius);
  background: #111318;
  cursor: pointer;
}

.video-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 11, 0.6), rgba(8, 9, 11, 0.08));
}

.video-poster span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin: auto;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 1.5rem;
}

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

.partner-card {
  min-height: 300px;
  padding: 30px;
}

.muted {
  color: var(--soft);
}

.about {
  background: #f2f4f7;
  color: #111318;
}

.about p,
.about .eyebrow {
  color: #4d5663;
}

.about-head {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

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

.team-grid article {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(8, 9, 11, 0.12);
}

.team-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.22;
  object-fit: cover;
  background: #dde2ea;
}

.team-grid div {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.team-grid h3 {
  margin: 0;
  color: #111318;
  font-size: 0.96rem;
  line-height: 1.12;
}

.team-grid p {
  margin: 0;
  color: #596271;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
}

.team-grid small {
  color: #6b7481;
  font-size: 0.78rem;
  line-height: 1.35;
}

.contact-section {
  background: var(--bg);
}

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

.contact-copy {
  align-self: center;
}

.contact-copy h3 {
  color: var(--accent);
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.contact-list a,
.footer-contacts a,
.site-footer nav a {
  color: var(--muted);
}

.contact-list a:hover,
.footer-contacts a:hover,
.site-footer nav a:hover {
  color: var(--ink);
}

.manager-photo {
  align-self: stretch;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.manager-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-photo {
  position: relative;
  background: #111318;
}

.brand-photo img {
  object-fit: cover;
}

.brand-photo figcaption {
  position: absolute;
  inset: auto 18px 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.7);
  color: var(--ink);
  font-weight: 700;
}

.lead-form {
  padding: 28px;
}

.form-title h3 {
  font-size: 1.45rem;
}

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

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-note {
  margin: 2px 0 6px;
  color: var(--soft);
  font-size: 0.9rem;
}

.form-status {
  min-height: 24px;
  color: var(--ok);
  font-weight: 700;
}

.form-status.is-error {
  color: #ff7279;
}

.site-footer {
  padding: 50px 0 28px;
  border-top: 1px solid var(--line);
  background: #050608;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer nav,
.footer-contacts {
  display: grid;
  gap: 10px;
}

.footer-note {
  margin-top: 34px;
  color: var(--soft);
  font-size: 0.9rem;
}

dialog {
  max-width: min(720px, calc(100% - 28px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d0f13;
  color: var(--ink);
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.dialog-content {
  padding: 34px;
}

.demo-options {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.demo-options button {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.video-dialog {
  width: min(980px, calc(100% - 28px));
  max-width: none;
}

.video-dialog-content {
  padding: 22px;
}

.process-film {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #050608;
}

.process-film img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.process-film::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 6, 8, 0.92), rgba(5, 6, 8, 0.08));
}

.process-film div {
  position: absolute;
  z-index: 1;
  inset: auto 24px 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.process-film span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 360ms ease, transform 360ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 980px) {
  h1 {
    font-size: 4.9rem;
  }

  h2 {
    font-size: 3.15rem;
  }
}

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

  .main-nav {
    position: fixed;
    inset: 78px 16px auto;
    display: none;
    grid-column: 1 / -1;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 9, 11, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .feature-grid.four,
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .lead-form {
    grid-column: 1 / -1;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 92svh;
    padding-top: 112px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 9, 11, 0.94), rgba(8, 9, 11, 0.72)),
      linear-gradient(0deg, var(--bg), rgba(8, 9, 11, 0.08) 52%);
  }

  .hero-facts,
  .form-grid,
  .feature-grid.four,
  .package-grid,
  .proof-grid,
  .partner-grid,
  .about-head,
  .footer-grid,
  .split-grid,
  .image-grid,
  .testimonial-grid,
  .video-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .estimate,
  .contract-step {
    grid-template-columns: 1fr;
  }

  .media-frame img,
  .manager-photo,
  .video-poster {
    min-height: 0;
    height: auto;
  }

  .manager-photo img,
  .media-frame img {
    height: auto;
  }

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

  .process-film {
    min-height: 440px;
  }

  .process-film div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: 2rem;
  }

  .brand img {
    width: 148px;
  }

  .hero {
    min-height: auto;
    padding: 94px 0 34px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .hero-lead {
    margin-bottom: 20px;
    font-size: 1.02rem;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-actions,
  .hero-actions .button,
  .contract-step .button,
  .estimate .button,
  .package-card .button,
  .partner-card .button,
  .contact-copy .button,
  .lead-form .button {
    width: 100%;
  }

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

  .hero-facts div {
    padding: 11px;
  }

  .hero-facts dt {
    font-size: 1.15rem;
  }

  .hero-facts dd {
    font-size: 0.72rem;
    line-height: 1.28;
  }

  .feature-card,
  .package-card,
  .partner-card,
  .builder-panel,
  .lead-form,
  .review {
    padding: 22px;
  }

  .review-viewport {
    min-height: 420px;
  }

  .team-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }
}

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