:root {
  --ink: #0c1626;
  --muted: #596575;
  --line: #d8e0ea;
  --paper: #f5f7fa;
  --white: #ffffff;
  --red: #ff1638;
  --red-dark: #b7132a;
  --blue: #132943;
  --steel: #8f9baa;
  --ice: #eef3f8;
  --shadow: 0 20px 60px rgba(12, 22, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(16, 20, 27, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

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

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

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
}

.header-call {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
}

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

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 16, 29, 0.94), rgba(8, 16, 29, 0.66) 42%, rgba(8, 16, 29, 0.18) 78%),
    linear-gradient(0deg, rgba(8, 16, 29, 0.7), rgba(8, 16, 29, 0) 42%);
}

.hero-logo {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 6vw, 86px);
  bottom: clamp(20px, 7vw, 92px);
  width: clamp(160px, 23vw, 330px);
  max-height: 42vh;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--red);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-actions,
.contact-methods,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(680px, 100%);
  margin: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div {
  padding: 16px 20px 0 0;
}

.hero-stats dt {
  color: var(--red);
  font-size: 1.04rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.services,
.why-us,
.reviews,
.share-strip,
.seo-faq,
.contact,
.site-footer {
  padding-inline: clamp(20px, 5vw, 72px);
}

.services,
.reviews {
  padding-block: clamp(52px, 7vw, 86px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  max-width: none;
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 0;
}

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

.service-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(16, 20, 27, 0.04);
}

.service-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--red-dark);
  background: #ffe7eb;
  font-weight: 800;
}

.service-card:nth-child(2) .service-icon {
  color: var(--blue);
  background: var(--ice);
}

.service-card:nth-child(3) .service-icon {
  color: var(--white);
  background: var(--blue);
}

.service-card:nth-child(4) .service-icon {
  color: var(--red-dark);
  background: #f2d7dc;
}

.service-card p,
.reason p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.why-us {
  padding-block: clamp(32px, 5vw, 58px);
  background: var(--ink);
}

.why-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1fr) minmax(260px, 0.72fr);
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(28px, 4vw, 46px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.why-panel h2 {
  margin-bottom: 16px;
}

.why-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
}

.reason {
  padding-block: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.reason:first-child {
  padding-top: 0;
  border-top: 0;
}

.reason p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.process-mini {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.process-mini h3 {
  font-size: 1.3rem;
}

.mini-steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.mini-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.mini-steps span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-size: 0.88rem;
}

.reviews {
  background: var(--white);
  overflow: hidden;
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.reviews-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--red);
}

.carousel-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.carousel-button:disabled:hover {
  background: var(--blue);
}

.review-carousel {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 18px;
  transition: transform 280ms ease;
  will-change: transform;
}

.review-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 25px rgba(12, 22, 38, 0.05);
}

.review-stars {
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 800;
}

.review-card blockquote {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 600;
}

.review-author {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-author strong,
.review-author span {
  display: block;
}

.review-author span {
  color: var(--muted);
  font-size: 0.92rem;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.review-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b9c3cf;
  cursor: pointer;
}

.review-dot.is-active {
  width: 28px;
  background: var(--red);
}

.share-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(300px, 0.78fr) minmax(260px, 0.62fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: center;
  padding-block: clamp(28px, 4vw, 46px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(19, 41, 67, 0.98), rgba(19, 41, 67, 0.9)),
    var(--blue);
}

.share-strip h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.social-preview-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.social-preview-card img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
}

.social-preview-card div {
  min-width: 0;
  padding: 12px;
}

.social-preview-card span,
.social-preview-card strong,
.social-preview-card p {
  display: block;
}

.social-preview-card span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-preview-card strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.94rem;
  line-height: 1.18;
}

.social-preview-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.3;
}

.share-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
}

.share-button:hover,
.share-button:focus-visible {
  border-color: var(--red);
  background: var(--red);
}

.share-native {
  background: var(--red);
}

.share-status {
  grid-column: 3;
  min-height: 22px;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: right;
}

.seo-faq {
  padding-block: clamp(42px, 6vw, 70px);
  background: var(--paper);
}

.near-me-panel {
  margin-bottom: 16px;
  padding: 22px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--white);
}

.near-me-panel h3 {
  margin-bottom: 8px;
}

.near-me-panel p {
  max-width: 980px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.faq-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-grid h3 {
  margin-bottom: 8px;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 5vw, 70px);
  padding-block: clamp(52px, 7vw, 86px);
  background: var(--white);
}

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

.contact-methods {
  margin-top: 30px;
}

.contact-methods a,
.service-area {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.contact-methods a {
  color: var(--blue);
}

.service-area {
  display: grid;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
}

.service-area span {
  color: var(--muted);
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

.form-row-full,
.turnstile-wrap,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

label {
  font-size: 0.9rem;
  font-weight: 800;
}

fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

legend {
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cdd6e2;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

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

.symptom-grid label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 44px;
  padding: 10px;
  border: 1px solid #cdd6e2;
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.symptom-grid input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
  accent-color: var(--red);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 22, 56, 0.22);
  border-color: var(--red);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.turnstile-wrap {
  min-height: 70px;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-weight: 700;
}

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

.form-status.is-success {
  color: #167343;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 28px;
  color: var(--white);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

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

  .header-call {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: rgba(16, 20, 27, 0.96);
  }

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

  .nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

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

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

  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .why-panel,
  .share-strip,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .share-actions {
    justify-content: flex-start;
  }

  .share-status {
    grid-column: 1;
    text-align: left;
  }

  .social-preview-card {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-inline: 18px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.1rem);
  }

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

  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 280px;
  }

  .hero-stats {
    margin-top: 36px;
  }

  .hero-logo {
    right: 12px;
    bottom: 18px;
    width: min(42vw, 180px);
    opacity: 0.78;
  }

  .service-card {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 28px;
  }

  .why-panel {
    padding: 28px 20px;
  }

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

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

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

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

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