:root {
  --ink: #101820;
  --coal: #17212b;
  --steel: #4f6173;
  --paper: #ffffff;
  --wash: #f4f6f8;
  --line: #d7dee5;
  --red: #c83d32;
  --teal: #167c80;
  --gold: #d28a23;
  --shadow: 0 18px 48px rgba(16, 24, 32, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 32px;
  color: var(--paper);
  background: var(--coal);
  font-size: 14px;
}

.topline a {
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
}

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

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

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 22px;
  font-weight: 850;
}

.brand small {
  color: var(--steel);
  font-size: 12px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--red);
}

.nav-toggle {
  display: none;
  min-width: 76px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--coal);
}

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

.hero-media img {
  object-fit: cover;
  object-position: center center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.96), rgba(16, 24, 32, 0.82) 44%, rgba(16, 24, 32, 0.26)),
    linear-gradient(180deg, rgba(16, 24, 32, 0.18), rgba(16, 24, 32, 0.38));
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(52vw, 680px);
  height: 12px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold));
  z-index: 2;
}

.hero-content::before {
  content: "";
  display: block;
  width: 86px;
  height: 6px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 24px 92px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: 68px;
  line-height: 0.98;
}

.hero-copy {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 12px 24px rgba(200, 61, 50, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.54);
  color: var(--paper);
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 640px;
  margin: 42px 0 0;
}

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

.hero-facts dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 26px 32px;
  background: var(--paper);
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.trust-strip span,
.section p,
.faq p,
.service-grid p,
.steps p {
  color: var(--steel);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 24px;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.12;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.answer-list {
  display: grid;
  gap: 18px;
}

.answer-list article {
  padding: 24px 0 24px 26px;
  border-left: 4px solid var(--teal);
}

.answer-list p,
.service-grid p,
.steps p,
.faq-grid p {
  margin: 10px 0 0;
}

.service-band {
  max-width: none;
  background: var(--wash);
}

.service-band .section-heading,
.service-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 780px;
}

.section-heading p {
  font-size: 18px;
}

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

.service-grid article,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
}

.service-code {
  display: inline-flex;
  min-width: 38px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--paper);
  background: var(--coal);
  border-radius: 999px;
  font-weight: 850;
}

.process {
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.06);
}

.steps li::before {
  content: counter(steps);
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--teal);
  font-weight: 900;
}

.steps strong {
  display: block;
  font-size: 22px;
}

.reviews {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 54px;
  align-items: center;
}

.rating-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--coal);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.rating-panel strong {
  display: block;
  font-size: 72px;
  line-height: 1;
}

.rating-panel span {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-weight: 850;
}

.rating-panel small {
  display: block;
  margin: 16px 0 22px;
  color: rgba(255, 255, 255, 0.76);
}

.rating-panel .button {
  width: 100%;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--paper);
  font-weight: 800;
}

.contact-section {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(260px, 460px) minmax(320px, 680px);
  gap: 48px;
  justify-content: center;
  background: var(--wash);
}

.contact-copy address {
  margin-top: 28px;
  font-style: normal;
}

.contact-copy a {
  font-weight: 850;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--coal);
  font-size: 14px;
  font-weight: 850;
}

.field-hint {
  color: var(--steel);
  font-size: 12px;
  font-weight: 650;
}

.contact-form label:has(textarea),
.checkbox,
.form-button,
.form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8d1da;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(22, 124, 128, 0.22);
  border-color: var(--teal);
}

.checkbox {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px;
  color: var(--steel) !important;
  font-weight: 650 !important;
}

.checkbox input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.form-status.is-success {
  color: var(--teal);
}

.form-status.is-error {
  color: var(--red);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 40px 32px;
  color: var(--paper);
  background: var(--ink);
}

.site-footer p {
  max-width: 540px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: start;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 920px) {
  .topline {
    padding: 8px 18px;
  }

  .nav-shell {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-facts,
  .trust-strip,
  .split,
  .service-grid,
  .steps,
  .reviews,
  .contact-section,
  .faq-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .topline {
    flex-direction: column;
    gap: 4px;
  }

  .brand strong {
    font-size: 19px;
  }

  .hero {
    min-height: auto;
  }

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

  .hero::before {
    background:
      linear-gradient(90deg, rgba(16, 24, 32, 0.97), rgba(16, 24, 32, 0.86) 62%, rgba(16, 24, 32, 0.42)),
      linear-gradient(180deg, rgba(16, 24, 32, 0.18), rgba(16, 24, 32, 0.36));
  }

  .hero-content {
    padding: 72px 18px;
  }

  .hero h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .section,
  .service-band,
  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .trust-strip div {
    padding: 22px 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}
