:root {
  --bg: #060606;
  --bg-soft: #0d1115;
  --panel: rgba(16, 22, 28, 0.92);
  --panel-strong: rgba(10, 14, 18, 0.96);
  --text: #f7f7f4;
  --muted: #b4bcc4;
  --muted-strong: #d8dee4;
  --orange: #ef5a2a;
  --orange-2: #ff7e33;
  --orange-soft: rgba(239, 90, 42, 0.16);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 90, 42, 0.16), transparent 26%),
    radial-gradient(circle at 90% 20%, rgba(239, 90, 42, 0.1), transparent 24%),
    linear-gradient(180deg, #050505 0%, #0b0e12 100%);
}

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

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

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

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

.topbar {
  border-bottom: 1px solid var(--line-soft);
  background: #030303;
}

.topbar-wrap {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar p,
.topbar a {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-wrap {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand img,
.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.92;
  letter-spacing: 1px;
}

.brand-text span:first-child {
  font-size: 2rem;
  font-weight: 800;
}

.brand-text span:last-child {
  font-size: 1.42rem;
  font-weight: 700;
  color: #d8dde2;
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  color: #dfe5eb;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.phone-link {
  font-weight: 800;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 34px rgba(239, 90, 42, 0.28);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 34px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(239, 90, 42, 0.16) 0%, rgba(239, 90, 42, 0) 68%);
  pointer-events: none;
}

.hero-grid,
.split-grid,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.hero-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hero h1,
.section-title h2,
.dark-panel h2,
.quote-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.3px;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 7vw, 5.9rem);
}

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

.hero-text,
.section-title p,
.service-card p,
.area-panel p,
.review-card p,
.quote-copy p,
.faq-item p,
.features-bar p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.03rem;
}

.service-note {
  margin-top: 14px;
  color: var(--muted-strong);
  font-weight: 700;
}

.hero-points,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points {
  margin: 28px 0 18px;
}

.hero-points span,
.trust-strip li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-image-card,
.features-bar article,
.service-card,
.review-card,
.area-panel,
.dark-panel,
.brand-panel,
.quote-form,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-strong) 100%);
  box-shadow: var(--shadow);
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(7, 7, 7, 0.76) 100%);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: min(300px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(7, 10, 14, 0.82);
  backdrop-filter: blur(10px);
}

.hero-badge strong,
.quote-highlights strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.hero-badge span,
.quote-highlights p {
  color: var(--muted);
  line-height: 1.55;
}

.features-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.features-bar article {
  padding: 24px;
}

.features-bar h2,
.service-card h3,
.area-panel h3 {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.section {
  padding: 84px 0;
}

.section-title {
  max-width: 840px;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.areas-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.service-card,
.review-card,
.area-panel {
  padding: 28px;
}

.add-on-card {
  position: relative;
}

.area-map-panel {
  padding: 16px;
  overflow: hidden;
}

.area-map-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.area-copy-panel {
  display: grid;
  align-content: start;
}

.service-card .icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  border: 2px solid rgba(239, 90, 42, 0.82);
  border-radius: 50%;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.6px;
}

.dark-panel,
.brand-panel {
  min-height: 100%;
  padding: 34px;
}

.brand-panel {
  display: grid;
  place-items: center;
  gap: 24px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(239, 90, 42, 0.18), transparent 42%),
    linear-gradient(180deg, var(--panel) 0%, var(--panel-strong) 100%);
}

.brand-panel img {
  width: min(100%, 320px);
  object-fit: contain;
}

.process-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  display: grid;
  gap: 6px;
  padding: 18px 18px 18px 70px;
  position: relative;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.process-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.process-list strong {
  font-size: 1.05rem;
}

.process-list span {
  color: var(--muted);
  line-height: 1.55;
}

.panel-cta {
  display: grid;
  gap: 14px;
  max-width: 360px;
}

.panel-cta p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.55;
}

.area-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.area-list li {
  position: relative;
  padding-left: 22px;
  font-size: 1.08rem;
  font-weight: 700;
}

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

.reviews {
  background:
    linear-gradient(180deg, rgba(239, 90, 42, 0.04) 0%, transparent 12%),
    transparent;
}

.review-card .stars {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.review-card strong {
  display: block;
  margin-top: 16px;
}

.quote-copy {
  padding: 8px 6px 8px 0;
}

.contact-list,
.quote-highlights,
.faq-grid {
  display: grid;
  gap: 14px;
}

.contact-list {
  margin: 24px 0 28px;
}

.contact-list a,
.contact-list span {
  font-weight: 800;
  color: #fff;
}

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

.quote-highlights > div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.quote-form {
  padding: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #f3f5f7;
  font-size: 0.96rem;
  font-weight: 700;
}

.form-fieldset {
  margin: 0 0 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.form-fieldset legend {
  padding: 0 8px;
  color: #f3f5f7;
  font-size: 0.96rem;
  font-weight: 800;
}

.checkbox-grid {
  display: grid;
  gap: 12px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f3f5f7;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
}

.checkbox-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--orange);
}

.checkbox-option span {
  line-height: 1.4;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

select {
  color-scheme: dark;
}

select option {
  color: #f7f7f4;
  background: #10161c;
}

input::placeholder,
textarea::placeholder {
  color: #9aa5ae;
}

select {
  appearance: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
  margin-bottom: 14px;
}

input:focus,
select:focus,
textarea:focus,
.faq-item summary:focus,
.mobile-cta:focus {
  outline: 2px solid rgba(255, 126, 51, 0.9);
  outline-offset: 2px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
  text-align: center;
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
}

.hidden {
  display: none;
}

.site-footer {
  padding: 24px 0 92px;
  border-top: 1px solid var(--line-soft);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

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

.footer-brand strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.footer-brand p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  display: none;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

@media (max-width: 1080px) {
  .site-nav,
  .header-actions .phone-link {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav.open {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: #0c1116;
    box-shadow: var(--shadow);
  }

  .hero-grid,
  .split-grid,
  .quote-grid,
  .areas-grid,
  .card-grid.four,
  .card-grid.three,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-image-card img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 22px));
  }

  .topbar-wrap {
    justify-content: center;
    text-align: center;
  }

  .topbar a {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

  .features-bar,
  .card-grid.two,
  .form-row,
  .quote-highlights {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .brand img,
  .footer-brand img {
    width: 50px;
    height: 50px;
  }

  .brand-text span:first-child {
    font-size: 1.6rem;
  }

  .brand-text span:last-child {
    font-size: 1.16rem;
  }

  .dark-panel,
  .brand-panel,
  .quote-form,
  .service-card,
  .review-card,
  .area-panel,
  .faq-item,
  .features-bar article {
    border-radius: 18px;
  }

  .mobile-cta {
    display: inline-flex;
  }
}
