:root {
  --orange: #ff650f;
  --orange-dark: #e84f00;
  --ink: #111820;
  --text: #2b3038;
  --muted: #6f7681;
  --line: #e4e8ee;
  --soft: #f7f8fa;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 24, 32, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 0 42px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
}

.brand > span:last-child span {
  color: var(--orange);
}

.speed-lines {
  display: inline-grid;
  gap: 5px;
  transform: skewX(-12deg);
}

.speed-lines i {
  display: block;
  width: 32px;
  height: 4px;
  background: var(--orange);
  border-radius: 999px;
}

.speed-lines i:nth-child(2) {
  width: 44px;
}

.speed-lines i:nth-child(3) {
  width: 24px;
  justify-self: end;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 36px 0;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: var(--orange);
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.location-button,
.ghost-button,
.primary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 800;
  white-space: nowrap;
}

.location-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.location-button svg,
.search-field svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.ghost-button {
  min-width: 124px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.primary-button,
.hero .search-panel button,
.request-form button {
  min-width: 124px;
  padding: 0 24px;
  border: 0;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 101, 15, 0.22);
  cursor: pointer;
}

.primary-button:hover,
.hero .search-panel button:hover,
.request-form button:hover {
  background: var(--orange-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 620px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  align-self: center;
  padding: 54px 28px 54px clamp(28px, 4.8vw, 64px);
}

.hero h1 {
  max-width: 740px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(3.1rem, 5.2vw, 5.45rem);
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  max-width: 690px;
  margin: 0 0 36px;
  color: #48515d;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.52;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 210px 156px;
  max-width: 860px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.search-field,
.service-select {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-weight: 650;
}

.service-select {
  position: relative;
  color: var(--ink);
  font-weight: 750;
}

.service-select select {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.hero .search-panel button {
  min-height: 56px;
  border-radius: 0;
  font-weight: 850;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 860px;
  margin-top: 42px;
}

.hero-app-actions,
.app-download {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-app-actions .ghost-button,
.app-download .ghost-button {
  cursor: pointer;
}

.trust-row div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-row svg {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-row span {
  display: grid;
  gap: 3px;
  color: var(--ink);
  font-size: 0.92rem;
}

.trust-row strong {
  font-size: 1rem;
}

.hero-media {
  position: relative;
  min-height: 520px;
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.62) 16%, rgba(255,255,255,0) 42%);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 44%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.9) 30%, rgba(255,255,255,0) 100%);
}

.services-section {
  padding: 44px clamp(22px, 3.6vw, 52px) 54px;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 24px;
  text-align: center;
}

.section-heading h2,
.app-copy h2,
.provider-section h2,
.request-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.section-heading p,
.app-copy p,
.provider-section p,
.request-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(126px, 1fr));
  gap: 14px;
}

.service-card {
  display: grid;
  min-height: 214px;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.04);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover,
.service-card.selected {
  border-color: rgba(255, 101, 15, 0.65);
  box-shadow: 0 16px 36px rgba(255, 101, 15, 0.14);
  transform: translateY(-3px);
}

.service-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
}

.service-icon svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon .accent {
  stroke: var(--orange);
  fill: rgba(255, 101, 15, 0.16);
}

.service-card h3 {
  min-height: 42px;
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.15;
}

.service-card span {
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 800;
}

.steps-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 clamp(22px, 3.6vw, 52px) 58px;
  padding: 28px 26px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #fff5ed 0%, #ffffff 52%, #fff5ed 100%);
}

.steps-band article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border-right: 1px solid rgba(17, 24, 32, 0.12);
}

.steps-band article:last-child {
  border-right: 0;
}

.step-icon {
  display: grid;
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  background: #ffe5d3;
  color: var(--orange);
}

.step-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps-band h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.02rem;
}

.steps-band p {
  margin: 0;
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.45;
}

.app-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: 70px clamp(28px, 7vw, 120px);
  background: var(--soft);
}

.app-copy {
  max-width: 650px;
}

.app-copy p {
  margin-top: 20px;
}

.app-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.app-download .primary-button,
.app-download .ghost-button,
.hero-app-actions .primary-button,
.hero-app-actions .ghost-button {
  min-width: 190px;
}

.app-points span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.phone-preview {
  justify-self: center;
  width: min(100%, 370px);
  overflow: hidden;
  border-radius: 36px;
  box-shadow: 0 28px 70px rgba(17, 24, 32, 0.22);
}

.phone-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.provider-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 56px clamp(28px, 7vw, 120px);
  background: var(--ink);
  color: var(--white);
}

.provider-section h2,
.provider-section p {
  color: var(--white);
}

.provider-section p {
  max-width: 720px;
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  padding: 72px clamp(28px, 7vw, 120px);
}

.request-copy p {
  margin-top: 16px;
  max-width: 520px;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  outline: 0;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 101, 15, 0.12);
}

.request-form button {
  min-height: 52px;
  border-radius: var(--radius);
  font-weight: 900;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--orange-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(28px, 7vw, 120px);
  border-top: 1px solid var(--line);
}

.site-footer .brand {
  font-size: 1.8rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer div {
  display: flex;
  gap: 18px;
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 1240px) {
  .desktop-nav {
    gap: 18px;
  }

  .header-actions .ghost-button {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(5, minmax(140px, 1fr));
  }

  .steps-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .steps-band article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 940px) {
  .site-header {
    min-height: 74px;
    padding: 0 20px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

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

  .hero-copy {
    padding: 40px 22px 28px;
  }

  .hero-media {
    min-height: 360px;
    order: -1;
  }

  .hero-media img {
    object-position: 63% center;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .search-field,
  .service-select {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero-app-actions .primary-button,
  .hero-app-actions .ghost-button,
  .app-download .primary-button,
  .app-download .ghost-button {
    width: 100%;
  }

  .steps-band,
  .app-section,
  .provider-section,
  .request-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .steps-band article {
    border-right: 0;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 1.65rem;
  }

  .speed-lines i {
    width: 24px;
    height: 3px;
  }

  .speed-lines i:nth-child(2) {
    width: 32px;
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  .hero-media {
    min-height: 310px;
  }

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

  .service-card {
    min-height: 178px;
  }

  .steps-band {
    margin-inline: 18px;
    padding: 24px;
  }

  .steps-band article {
    align-items: flex-start;
  }

  .app-section,
  .provider-section,
  .request-section {
    padding: 48px 22px;
  }

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