:root {
  color-scheme: dark;
  --bg: #080a0d;
  --panel: #11161d;
  --panel-strong: #171d26;
  --text: #f4f7fb;
  --muted: #aab4c0;
  --line: rgba(255, 255, 255, .12);
  --accent: #f2c14e;
  --accent-strong: #dca82c;
  --danger: #e64a4a;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 10, 13, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.site-header.header-elevated {
  background: rgba(8, 10, 13, .94);
  border-color: rgba(242, 193, 78, .18);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .28);
}

.header-inner {
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 136px;
  height: auto;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  font-weight: 900;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 6px;
  padding: 9px 11px;
  font: inherit;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: 100%;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transform: translateZ(0);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button.primary {
  background: var(--accent);
  color: #111;
  box-shadow: 0 14px 34px rgba(242, 193, 78, .2);
}

.button.primary:hover {
  background: var(--accent-strong);
  box-shadow: 0 18px 44px rgba(242, 193, 78, .28);
}

.button.secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, .04);
}

.button-shine::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 52%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .46), transparent);
  animation: button-shine 4.8s ease-in-out infinite;
}

.section {
  padding: 54px 0;
}

.section-tight {
  padding: 38px 0;
}

.section-accent {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  border-block: 1px solid rgba(255,255,255,.06);
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 75% 35%, rgba(242, 193, 78, .16), transparent 28%),
    linear-gradient(135deg, #0b0e13 0%, #111821 54%, #07090c 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 84px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 193, 78, .58), rgba(255, 255, 255, .12), transparent);
  opacity: .76;
  animation: hero-scan 7s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
  opacity: .24;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 44px;
  align-items: center;
}

.hero-grid > *,
.two-col > *,
.cards-grid > *,
.fact-grid > *,
.proof-strip > *,
.work-gallery > * {
  min-width: 0;
}

.eyebrow {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
  max-width: 900px;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
}

.offer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(242, 193, 78, .28);
  border-radius: 999px;
  background: rgba(242, 193, 78, .09);
  color: var(--text);
  font-weight: 850;
  font-size: 14px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-card,
.form-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035)),
    rgba(11, 15, 21, .7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.visual-panel {
  min-height: 420px;
  display: grid;
  align-content: end;
  overflow: hidden;
  position: relative;
  padding: 0;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.visual-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 193, 78, .36);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 13, .08) 0%, rgba(8, 10, 13, .38) 58%, rgba(8, 10, 13, .82) 100%);
  opacity: .62;
  z-index: 1;
  pointer-events: none;
}

.visual-panel > * {
  position: relative;
  z-index: 2;
}

.visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
  transition: transform .8s ease, opacity .28s ease;
}

.visual-panel:hover .visual-image {
  transform: scale(1.035);
  opacity: .95;
}

.visual-caption {
  width: 100%;
  padding: clamp(28px, 2.4vw, 34px);
  background: linear-gradient(180deg, rgba(8, 10, 13, .02) 0%, rgba(8, 10, 13, .58) 38%, rgba(8, 10, 13, .9) 100%);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .72);
}

.price {
  color: var(--accent);
  font-size: 40px;
  font-weight: 900;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
}

.visual-caption .meta-list {
  color: rgba(244, 247, 251, .92);
}

.visual-caption .phone-link {
  color: var(--text);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.service-card {
  min-height: 320px;
  overflow: hidden;
  position: relative;
  justify-content: flex-end;
}

.service-card .card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  transform: scale(1.03);
  transition: transform .55s ease, opacity .22s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 13, .08) 0%, rgba(8, 10, 13, .9) 72%);
}

.service-card > *:not(.card-bg) {
  position: relative;
  z-index: 1;
}

.card:hover {
  border-color: rgba(242, 193, 78, .55);
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  box-shadow: 0 22px 62px rgba(0, 0, 0, .28);
}

.service-card:hover .card-bg,
.work-card:hover .work-photo {
  transform: scale(1.07);
  opacity: .7;
}

.premium-hover {
  will-change: transform;
}

.card-label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price-card {
  min-height: 190px;
}

.price-card strong {
  color: var(--accent);
  font-size: 26px;
  line-height: 1.1;
}

.price-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fact {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.fact strong {
  display: block;
  color: var(--accent);
  font-size: 28px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.trust-strip {
  position: relative;
}

.proof-strip span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(242, 193, 78, .12), rgba(242, 193, 78, .055)),
    rgba(255, 255, 255, .035);
  color: var(--text);
  padding: 14px 16px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.two-col {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.list li:hover {
  border-color: rgba(242, 193, 78, .34);
  background: rgba(255, 255, 255, .045);
  transform: translateX(2px);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 193, 78, .42);
  box-shadow: 0 22px 62px rgba(0, 0, 0, .28);
}

.work-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .55s ease, opacity .22s ease;
}

.work-body {
  padding: 18px;
}

.work-body p {
  color: var(--muted);
  margin: 8px 0 0;
}

.step {
  counter-increment: step;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color .18s ease, background .18s ease;
}

.step:hover {
  border-color: rgba(242, 193, 78, .34);
  background: rgba(255, 255, 255, .045);
}

.step::before {
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.lead-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  padding: 0 14px;
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.lead-form input:focus {
  border-color: rgba(242, 193, 78, .72);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 4px rgba(242, 193, 78, .12);
}

.form-panel:focus-within {
  border-color: rgba(242, 193, 78, .38);
  box-shadow: 0 28px 86px rgba(0, 0, 0, .46), 0 0 0 1px rgba(242, 193, 78, .08);
}

.form-status {
  min-height: 22px;
  color: var(--muted);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: color .18s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-answer {
  display: none;
  color: var(--muted);
  padding: 0 0 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-address {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: color .18s ease, text-decoration-color .18s ease;
}

.footer-address:hover {
  color: var(--text);
  text-decoration-color: var(--accent);
}

.mobile-call {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
}

.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes button-shine {
  0%, 58% {
    left: -70%;
  }
  72%, 100% {
    left: 120%;
  }
}

@keyframes hero-scan {
  0%, 100% {
    transform: translateX(-12%);
    opacity: .26;
  }
  45%, 60% {
    transform: translateX(12%);
    opacity: .78;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .header-actions .button,
  .header-actions .phone-link,
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav.open {
    display: grid;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    padding: 18px 24px;
    background: #090c10;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    padding: 72px 0;
  }

  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .fact-grid,
  .proof-strip,
  .work-gallery {
    grid-template-columns: 1fr;
  }

  .mobile-call {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 600px) {
  .container,
  .header-inner {
    width: min(1160px, calc(100% - 24px));
  }

  .hero {
    padding: 56px 0;
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    max-width: 320px;
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    max-width: 320px;
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .offer-badges {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .offer-badge {
    width: 100%;
    justify-content: center;
    min-height: 34px;
    padding: 8px 10px;
    text-align: center;
    white-space: normal;
  }

  .hero-actions,
  .cta-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions .button,
  .cta-row .button {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 15px 8px;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .visual-panel {
    min-height: 0;
    display: block;
    background: rgba(11, 15, 21, .92);
  }

  .visual-panel::before {
    display: none;
  }

  .visual-image {
    position: relative;
    display: block;
    height: 220px;
    opacity: 1;
    transform: none;
  }

  .visual-panel:hover .visual-image {
    transform: none;
    opacity: 1;
  }

  .visual-caption {
    padding: 22px;
    background: linear-gradient(180deg, rgba(14, 19, 27, .98), rgba(8, 10, 13, .98));
    text-shadow: none;
  }

  .visual-caption .meta-list {
    gap: 8px;
    margin-top: 14px;
  }

  .price {
    font-size: 34px;
  }
}

/* Hermes mobile QA cleanup 2026-06-30 */
:root {
  --bg: #0d1117;
  --panel: #171d25;
  --panel-strong: #202833;
  --muted: #c3cbd6;
  --line: rgba(255,255,255,.18);
}

body {
  background: #0d1117;
}

.hero,
.section-accent {
  background:
    radial-gradient(circle at 78% 36%, rgba(242, 193, 78, .20), transparent 30%),
    linear-gradient(135deg, #111821 0%, #161f2a 55%, #0d1117 100%);
}

.hero-card,
.form-panel,
.card,
.fact,
.step,
.work-card,
.list li {
  background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.045)), rgba(18,24,32,.92);
  border-color: rgba(255,255,255,.18);
}

.visual-panel::before {
  background: linear-gradient(180deg, rgba(8,10,13,.02) 0%, rgba(8,10,13,.20) 55%, rgba(8,10,13,.62) 100%);
  opacity: .38;
}

.visual-image {
  opacity: 1;
  filter: brightness(1.18) contrast(1.04) saturate(1.06);
}

.visual-caption {
  background: linear-gradient(180deg, rgba(8,10,13,0) 0%, rgba(8,10,13,.46) 36%, rgba(8,10,13,.82) 100%);
}

.work-photo {
  opacity: 1 !important;
  filter: brightness(1.34) contrast(1.05) saturate(1.08);
}

.service-card .card-bg {
  opacity: .82;
  filter: brightness(1.24) contrast(1.05) saturate(1.06);
}

.service-card::after {
  background: linear-gradient(180deg, rgba(8,10,13,.02) 0%, rgba(8,10,13,.72) 78%);
}

.service-card:hover .card-bg,
.work-card:hover .work-photo {
  opacity: 1;
}

.faq-item {
  padding: 0;
}

.faq-question {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  font-size: 18px;
  line-height: 1.55;
}

@media (max-width: 600px) {
  .container,
  .header-inner {
    width: min(1160px, calc(100% - 20px));
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand-logo {
    width: 124px;
  }

  .menu-toggle {
    min-height: 44px;
    padding: 9px 13px;
  }

  .nav.open {
    top: 64px;
    padding: 12px 10px 16px;
    gap: 10px;
  }

  .nav.open a {
    display: block;
    padding: 13px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.055);
  }

  .hero {
    padding: 34px 0 40px;
  }

  .section,
  .section-tight {
    padding: 38px 0;
  }

  h1,
  h2,
  .lead {
    max-width: none;
    width: 100%;
    overflow-wrap: normal;
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
  }

  h3 {
    font-size: 24px;
  }

  .lead,
  .work-body p,
  .price-note,
  .form-status,
  .faq-answer,
  .list li,
  .step {
    font-size: 18px;
    line-height: 1.55;
  }

  .hero-grid {
    gap: 28px;
  }

  .offer-badges {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .offer-badge {
    min-height: 42px;
    font-size: 13px;
    line-height: 1.25;
  }

  .hero-actions .button,
  .cta-row .button,
  .lead-form .button {
    display: flex;
    width: 100%;
    min-height: 54px;
    padding: 15px 14px;
    font-size: 16px;
  }

  .visual-image {
    height: 260px;
    filter: brightness(1.24) contrast(1.04) saturate(1.08);
  }

  .visual-caption {
    padding: 18px;
    background: linear-gradient(180deg, rgba(20,27,36,.98), rgba(13,17,23,.99));
  }

  .work-card {
    border-radius: 10px;
  }

  .work-photo {
    aspect-ratio: 16 / 10;
    filter: brightness(1.42) contrast(1.04) saturate(1.12);
  }

  .work-body {
    padding: 18px;
  }

  .form-panel {
    padding: 18px;
  }

  .lead-form {
    gap: 10px;
  }

  .lead-form input {
    min-height: 56px;
    font-size: 18px;
    background: rgba(255,255,255,.10);
  }

  .faq-answer {
    display: block;
    padding: 0 0 18px;
  }

  .faq-question {
    color: var(--text);
    padding: 18px 0 10px;
    min-height: 0;
  }

  .faq-question::after {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .mobile-call {
    display: none !important;
  }
}

/* Hermes mobile overflow hardening 2026-06-30 */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.button,
.offer-badge,
.faq-question,
.lead,
h1,
h2,
h3,
p,
li,
span,
strong {
  overflow-wrap: anywhere;
}

@media (max-width: 600px) {
  .container,
  .header-inner {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }

  .hero-grid,
  .two-col,
  .cards-grid,
  .fact-grid,
  .proof-strip,
  .work-gallery,
  .hero-actions,
  .cta-row,
  .lead-form {
    width: 100%;
    max-width: 100%;
  }

  .offer-badges {
    grid-template-columns: minmax(0, 1fr);
  }

  .offer-badge {
    min-width: 0;
    width: 100%;
    font-size: 14px;
  }

  .button,
  .hero-actions .button,
  .cta-row .button,
  .lead-form .button {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 15px;
    line-height: 1.25;
  }

  .phone-link {
    white-space: normal;
  }

  .hero-actions,
  .cta-row {
    gap: 10px;
  }

  .lead {
    font-size: 17px;
  }

  h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  h2 {
    font-size: clamp(29px, 8.3vw, 38px);
  }

  .work-photo {
    min-height: 230px;
  }
}
