:root {
  --black: #0b0d0f;
  --graphite: #111418;
  --panel: #191d22;
  --white: #ffffff;
  --paper: #f7f8fa;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --green: #003127;
  --green-bright: #10b981;
  --accent: #f59e0b;
  --accent-2: #fbbf24;
  --max: #5b5ff0;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overscroll-behavior-y: none;
  overflow-x: hidden;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
}

body.is-locked {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(11, 13, 15, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.18);
}

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

.brand strong {
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.brand small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.phones {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.phones a,
.footer__contacts a {
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 900;
}

.phones a::before,
.footer__contacts a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: 2px;
}

.btn {
  min-height: 50px;
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn--primary {
  color: #14100a;
  background: linear-gradient(180deg, #fcd34d, var(--accent));
  box-shadow: 0 16px 32px rgba(245, 158, 11, 0.28);
}

.btn--outline-dark {
  color: var(--accent-2);
  border: 1px solid var(--accent);
  background: transparent;
}

.btn--glass {
  color: var(--accent-2);
  border: 1px solid rgba(245, 158, 11, 0.8);
  background: rgba(7, 10, 12, 0.45);
  backdrop-filter: blur(10px);
}

.btn--max {
  color: var(--white);
  background: linear-gradient(135deg, #6d6ff5, var(--max));
  box-shadow: 0 14px 26px rgba(91, 95, 240, 0.28);
}

.btn--max img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  flex: 0 0 auto;
}

.btn--max-compact {
  min-width: 104px;
  padding-inline: 16px;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero__image,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.94) 0%, rgba(5, 7, 9, 0.78) 28%, rgba(5, 7, 9, 0.22) 68%, rgba(5, 7, 9, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 7, 9, 0.1), rgba(5, 7, 9, 0.34));
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  min-height: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 610px;
  padding: 72px 0;
}

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 950;
}

h1 span {
  color: var(--accent-2);
}

.hero__content p {
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  line-height: 1.52;
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.services {
  padding: 62px 0 70px;
}

.section__head {
  max-width: 840px;
  margin-bottom: 28px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(16, 185, 129, 0.12);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.section__head h2,
.lead-section h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.section__head p,
.lead-section__copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.service-card {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.48);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card--featured {
  padding: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(245, 158, 11, 0.2), transparent 28%),
    linear-gradient(160deg, #003127 0%, #05251f 54%, #080b0d 100%),
    var(--graphite);
  border-color: rgba(245, 158, 11, 0.32);
}

.service-card--featured .service-card__label,
.service-card--featured .price-list span {
  color: rgba(255, 255, 255, 0.76);
}

.service-card--featured h3 {
  color: var(--white);
}

.featured-service__head {
  display: grid;
  gap: 18px;
  padding: 24px 24px 18px;
}

.featured-service__title {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.service-card--featured .service-badge {
  margin-bottom: 10px;
  color: #4a3100;
  background: linear-gradient(180deg, #fff5d1, #ffe5a0);
}

.service-card--featured .service-card__label {
  margin-bottom: 4px;
}

.featured-service__media {
  position: relative;
  overflow: hidden;
  margin-top: auto;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-service__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 49, 39, 0.08), transparent 34%, rgba(5, 7, 9, 0.22)),
    linear-gradient(90deg, rgba(5, 7, 9, 0.2), transparent 42%);
}

.service-card__top {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 10px 0 18px;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: linear-gradient(180deg, #fcd34d, var(--accent));
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.22);
}

.service-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.service-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 950;
}

.service-card__label {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
}

.service-badge {
  align-self: flex-start;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #3d2700;
  background: #fff0c2;
  font-size: 12px;
  font-weight: 950;
}

.service-badge--green {
  color: #052d24;
  background: rgba(16, 185, 129, 0.16);
}

.service-price {
  margin: 0 0 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-price span,
.service-price strong {
  display: block;
}

.service-price span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-price strong {
  margin-top: 4px;
  color: var(--accent-2);
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
}

.service-card__image {
  width: calc(100% + 44px);
  max-width: none;
  height: 210px;
  margin: 16px -22px 20px;
  object-fit: cover;
}

.service-card--photo .service-card__image {
  margin-top: 16px;
}

.service-card--featured .service-card__image {
  display: block;
  width: 100%;
  height: 238px;
  margin: 0;
}

.price-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding-left: 16px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.price-list span {
  color: #252b33;
}

.price-list b {
  white-space: nowrap;
  text-align: right;
  font-size: 13px;
  font-weight: 950;
}

.price-list--short {
  margin-bottom: 8px;
  flex: 0;
}

.service-link {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(0, 49, 39, 0.18);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.service-link::after {
  content: "→";
  margin-left: 10px;
}

.service-link:hover {
  transform: translateY(-1px);
  background: #06483b;
  box-shadow: 0 18px 34px rgba(0, 49, 39, 0.24);
}

.service-card--featured .service-link {
  width: calc(100% - 48px);
  margin: 22px 24px 22px;
  color: #14100a;
  background: linear-gradient(180deg, #fcd34d, var(--accent));
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.26);
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: 42px;
  align-items: center;
  padding: 76px max(20px, calc((100vw - var(--container)) / 2));
  color: var(--text);
  background: linear-gradient(180deg, #f5f7f6, #eef2f1);
}

.lead-section__copy {
  min-height: 430px;
  padding: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 49, 39, 0.9), rgba(0, 49, 39, 0.68)),
    url("./assets/service-excavator.webp") center / cover;
  box-shadow: 0 24px 70px rgba(0, 49, 39, 0.2);
}

.lead-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  color: #3d2700;
  background: #fff0c2;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.lead-section h2 {
  max-width: 680px;
  color: var(--white);
}

.lead-section__copy p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

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

.lead-benefits span {
  display: grid;
  gap: 8px;
  min-height: 146px;
  padding: 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.lead-benefits img {
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fcd34d, var(--accent));
}

.lead-benefits strong {
  font-size: 16px;
  line-height: 1.25;
}

.lead-benefits small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 38px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.lead-section .lead-form {
  padding: 34px;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
}

.lead-form__head {
  display: grid;
  gap: 6px;
  margin-bottom: 4px;
}

.lead-form__head span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.lead-form__head h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 950;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.lead-section .lead-form label {
  color: #5b6470;
}

.lead-form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--white);
  background: rgba(8, 11, 13, 0.32);
  outline: none;
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.lead-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.lead-section .lead-form input {
  color: var(--text);
  background: #f7f8f7;
  border-color: rgba(17, 24, 39, 0.14);
}

.lead-section .lead-form input::placeholder {
  color: #8c949d;
}

.lead-section .lead-form .btn {
  margin-top: 4px;
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.24);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.form-note a {
  color: var(--accent-2);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.lead-section .form-note {
  color: #6b7280;
}

.lead-section .form-note a {
  color: var(--green);
}

.form-status {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.form-status[data-type="success"] {
  color: #34d399;
}

.form-status[data-type="error"] {
  color: #fca5a5;
}

.lead-section .form-status {
  color: #5b6470;
}

.lead-section .form-status[data-type="success"] {
  color: var(--green);
}

.lead-section .form-status[data-type="error"] {
  color: #b91c1c;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.thanks-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.88), rgba(5, 7, 9, 0.56)),
    url("./assets/hero-excavator.webp") center / cover fixed,
    var(--black);
}

.thanks-screen {
  width: min(var(--container), calc(100% - 40px));
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 42px;
  margin: 0 auto;
  padding: 48px 0;
}

.thanks-brand {
  align-self: start;
}

.thanks-card {
  width: min(720px, 100%);
  padding: 42px;
  border-radius: var(--radius);
  background: rgba(8, 12, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.thanks-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 20px;
  padding: 0 12px;
  border-radius: 999px;
  color: #3d2700;
  background: #fff0c2;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.thanks-card h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 68px);
}

.thanks-card p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 700;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.footer {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 49, 39, 0.26), transparent 40%),
    #080b0d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 24px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 0.9fr) minmax(260px, 0.78fr);
  gap: 42px;
  align-items: start;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.footer__brand p {
  max-width: 300px;
  margin: 22px 0 0;
}

.footer h3 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 950;
}

.footer__contacts,
.footer__actions {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer__contacts a {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__contacts span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer__contacts strong {
  font-size: 17px;
  line-height: 1.25;
}

.footer__actions {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__actions .btn {
  width: 100%;
  min-height: 52px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer__bottom a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.footer__bottom a:hover {
  color: #fff;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 9, 0.72);
}

.modal__dialog {
  position: relative;
  width: min(500px, 100%);
  padding: 32px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--panel);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.modal__dialog h2 {
  margin-bottom: 12px;
  font-size: 34px;
}

.modal__dialog p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lead-form--modal {
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .phones {
    flex-wrap: wrap;
  }

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

  .lead-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 0;
    padding: 14px 10px 12px;
  }

  .header-note {
    display: none;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .phones {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .phones a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
  }

  .btn {
    min-height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }

  .btn--max-compact {
    min-width: 0;
  }

  .hero,
  .hero__inner {
    min-height: 610px;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(5, 7, 9, 0.93) 0%, rgba(5, 7, 9, 0.76) 48%, rgba(5, 7, 9, 0.28) 100%),
      linear-gradient(90deg, rgba(5, 7, 9, 0.82), rgba(5, 7, 9, 0.14));
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__inner {
    width: min(100% - 20px, var(--container));
    align-items: flex-start;
  }

  .hero__content {
    max-width: none;
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .hero__content p {
    font-size: 18px;
  }

  .hero__actions,
  .hero__actions .btn {
    width: 100%;
  }

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

  .services {
    padding-top: 36px;
  }

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

  .service-card {
    min-height: 0;
    padding: 20px;
  }

  .service-card--featured {
    padding: 0;
  }

  .featured-service__head {
    padding: 20px 20px 16px;
  }

  .service-card__top {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
  }

  .price-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-list b {
    text-align: left;
  }

  .service-card__image {
    width: calc(100% + 40px);
    height: 220px;
    margin: 18px -20px -20px;
  }

  .service-card--photo .service-card__image,
  .service-card--with-image .service-card__image {
    margin-bottom: 18px;
  }

  .service-card--featured .service-card__image {
    width: 100%;
    height: 220px;
    margin: 0;
  }

  .service-card--featured .service-link {
    width: calc(100% - 40px);
    margin: 20px;
  }

  .lead-section {
    grid-template-columns: 1fr;
    padding: 52px 20px;
  }

  .lead-section__copy {
    min-height: 0;
    padding: 28px 20px;
  }

  .lead-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .lead-benefits span {
    min-height: 0;
    grid-template-columns: 42px 1fr;
    align-items: center;
  }

  .lead-benefits small {
    grid-column: 2;
  }

  .lead-form {
    padding: 24px;
  }

  .lead-section .lead-form {
    padding: 24px 20px;
  }

  .lead-form__head h3 {
    font-size: 24px;
  }

  .thanks-screen {
    width: min(100% - 20px, var(--container));
    gap: 30px;
    padding: 28px 0;
  }

  .thanks-card {
    padding: 28px 20px;
  }

  .thanks-actions,
  .thanks-actions .btn {
    width: 100%;
  }

  .footer {
    gap: 34px;
  }

  .footer__inner {
    width: min(100% - 20px, var(--container));
    padding: 34px 0 22px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__brand p {
    max-width: none;
  }

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

@media (max-width: 430px) {
  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 12px;
  }

  .brand__icon {
    width: 48px;
    height: 48px;
  }
}
