:root {
  --orange: #ff6908;
  --orange-dark: #ed5700;
  --black: #0b0e11;
  --charcoal: #111c26;
  --charcoal-2: #162431;
  --text: #111111;
  --muted: #626870;
  --line: #e7e9ec;
  --soft: #f7f7f7;
  --white: #ffffff;
  --shadow: 0 16px 32px rgba(11, 14, 17, 0.08);
  --radius: 14px;
  --container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 18px rgba(0,0,0,.05);
}
.header-inner {
  max-width: var(--container);
  height: 96px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 38px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 295px;
}
.brand img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
}
.brand span {
  color: var(--black);
  font-size: 24px;
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.7px;
}
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  font-size: 14px;
  font-weight: 800;
}
.nav a { position: relative; padding: 39px 0 36px; }
.nav a.active { color: var(--orange); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
}
.nav-caret { font-size: 13px; }
.nav-cta {
  min-width: 180px;
  height: 50px;
  padding: 0 25px;
  border-radius: 7px;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(255,105,8,.25);
}
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 42%, #eef0f1 100%);
}
.hero-copy {
  position: relative;
  z-index: 4;
  max-width: var(--container);
  margin: 0 auto;
  padding: 52px 48px 62px;
  width: 100%;
}
.hero-copy h1 {
  margin: 0;
  max-width: 610px;
  color: #060606;
  font-size: 64px;
  line-height: .97;
  font-weight: 900;
  letter-spacing: -2.6px;
}
.hero-copy h1 span { color: var(--orange); }
.hero-kicker {
  margin: 24px 0 10px;
  max-width: 500px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}
.hero-text {
  margin: 0;
  max-width: 500px;
  color: #1d252d;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}
.btn {
  height: 48px;
  border-radius: 7px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary { color: #fff; background: var(--orange); box-shadow: 0 8px 16px rgba(255,105,8,.22); }
.btn-secondary { color: #111; background: #fff; border: 2px solid #161a1e; min-width: 215px; }
.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 61%;
  z-index: 1;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.85) 9%, rgba(255,255,255,.28) 24%, rgba(255,255,255,0) 42%);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}
.hero-bolt {
  position: absolute;
  z-index: 3;
  left: 42.2%;
  top: -3px;
  width: 118px;
  height: 520px;
  background: var(--orange);
  clip-path: polygon(44% 0, 98% 0, 62% 39%, 88% 39%, 25% 100%, 41% 54%, 6% 54%);
  filter: drop-shadow(0 10px 6px rgba(0,0,0,.1));
}
.hero::after {
  content: "";
  position: absolute;
  left: -42px;
  top: 40px;
  width: 122px;
  height: 280px;
  background: rgba(255,105,8,.18);
  clip-path: polygon(38% 0, 74% 0, 55% 38%, 82% 38%, 20% 100%, 39% 54%, 13% 54%);
}

.trust-strip {
  position: relative;
  z-index: 10;
  max-width: calc(var(--container) - 82px);
  margin: -30px auto 0;
  padding: 0;
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust-strip article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 28px 36px;
  border-right: 1px solid var(--line);
}
.trust-strip article:last-child { border-right: none; }
.trust-strip svg {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: var(--orange);
}
.trust-strip h3 {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 900;
}
.trust-strip p {
  margin: 0;
  max-width: 185px;
  color: #1d1d1d;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 600;
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 44px 48px 0;
  text-align: center;
}
.eyebrow {
  margin: 0 0 7px;
  color: var(--orange);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.eyebrow.left { text-align: left; }
h2 {
  margin: 0;
  color: #090909;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.8px;
}
.service-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
}
.service-card {
  min-height: 124px;
  padding: 22px 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(11, 14, 17, .05);
}
.service-card svg { width: 43px; height: 43px; color: var(--orange); }
.service-card h3 { margin: 0; font-size: 15px; line-height: 1.15; font-weight: 900; }
.outline-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  min-width: 170px;
  padding: 0 28px;
  border: 2px solid var(--orange);
  border-radius: 7px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.two-panel {
  max-width: var(--container);
  margin: 36px auto 0;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.info-card {
  min-height: 336px;
  padding: 28px 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(11, 14, 17, .06);
}
.why-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 220px;
  gap: 28px;
  align-items: end;
}
.why-card h2, .service-area-card h2 { font-size: 29px; max-width: 470px; }
.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  margin: 0 0 13px;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  line-height: 17px;
  text-align: center;
  font-weight: 900;
}
.panel-image {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 13px;
  align-self: center;
}
.service-area-card p {
  margin: 14px 0 18px;
  color: #2d3236;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}
.area-location {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
}
.area-location svg { width: 24px; height: 24px; color: #0a0a0a; }
.area-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.area-pills span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 2px solid #c6cbd0;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 900;
}
.callout {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px !important;
  color: #0d0d0d !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}
.callout svg { width: 22px; height: 22px; color: #0d0d0d; }

.process-section {
  position: relative;
  max-width: var(--container);
  margin: 34px auto 0;
  padding: 0 48px;
  text-align: center;
}
.process-section h2 { font-size: 31px; }
.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 32px;
}
.process-line {
  position: absolute;
  top: 107px;
  left: calc(48px + 145px);
  right: calc(48px + 145px);
  height: 2px;
  background: repeating-linear-gradient(90deg, #b9bdc1 0 8px, transparent 8px 15px);
}
.process-grid article { position: relative; text-align: center; }
.step-number {
  position: absolute;
  top: -10px;
  left: calc(50% - 37px);
  z-index: 4;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 900;
}
.step-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(11,14,17,.05);
}
.step-icon svg { width: 42px; height: 42px; color: #0b0b0b; }
.process-grid h3 { margin: 0 0 8px; font-size: 15px; font-weight: 900; }
.process-grid p { margin: 0 auto; max-width: 180px; color: #2c3136; font-size: 13px; line-height: 1.35; font-weight: 600; }

.quote-section {
  max-width: calc(var(--container) - 96px);
  margin: 36px auto 0;
  min-height: 250px;
  display: grid;
  grid-template-columns: 1.48fr .9fr;
  overflow: hidden;
  background: linear-gradient(135deg, #101b25, #142635);
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(11,14,17,.15);
}
.quote-copy { padding: 28px 32px 30px; }
.quote-section h2 { color: #fff; font-size: 31px; }
.quote-form {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.quote-form input, .quote-form select {
  height: 38px;
  width: 100%;
  padding: 0 14px;
  border: none;
  border-radius: 5px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  outline: none;
}
.quote-form button {
  grid-column: 1 / -1;
  height: 40px;
  border: none;
  border-radius: 5px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}
.quote-promise {
  position: relative;
  padding: 35px 44px;
  color: #fff;
  overflow: hidden;
}
.quote-promise img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 22px;
}
.quote-promise h3 { position: relative; z-index: 2; margin: 0 0 12px; font-size: 21px; line-height: 1.18; font-weight: 900; }
.quote-promise p { position: relative; z-index: 2; margin: 0; max-width: 240px; color: #fff; font-size: 14px; line-height: 1.45; font-weight: 700; }
.quote-bolt {
  position: absolute;
  right: -22px;
  top: 25px;
  width: 130px;
  height: 220px;
  background: rgba(255,105,8,.45);
  clip-path: polygon(46% 0, 86% 0, 56% 42%, 78% 42%, 13% 100%, 34% 55%, 8% 55%);
}

.reviews-section {
  max-width: var(--container);
  margin: 30px auto 0;
  padding: 0 48px 35px;
  text-align: center;
}
.reviews-section h2 { font-size: 31px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.review-card {
  min-height: 148px;
  padding: 24px 28px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  text-align: left;
  box-shadow: 0 8px 18px rgba(11,14,17,.05);
}
.stars {
  display: flex;
  gap: 3px;
  color: var(--orange);
  margin-bottom: 12px;
}
.stars svg { width: 18px; height: 18px; }
.review-card p { margin: 0 0 14px; color: #111; font-size: 14px; line-height: 1.45; font-weight: 700; }
.review-card strong { display: block; font-size: 14px; font-weight: 900; }
.review-card span { color: #333; font-size: 13px; font-weight: 700; }

.footer {
  background: #111d27;
  color: #fff;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 48px 28px;
  display: grid;
  grid-template-columns: 1.35fr 1.75fr .7fr 1.15fr;
  gap: 58px;
}
.footer-logo { display: flex; align-items: center; gap: 15px; margin-bottom: 16px; }
.footer-logo img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; }
.footer-logo h2 { margin: 0; color: #fff; font-size: 23px; line-height: .95; text-transform: uppercase; letter-spacing: -.4px; }
.footer p, .footer li, .footer a { color: #fff; }
.footer-brand p { max-width: 330px; margin: 0; color: rgba(255,255,255,.88); font-size: 14px; line-height: 1.5; font-weight: 600; }
.socials { display: flex; gap: 9px; margin-top: 20px; }
.socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1f3344;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}
.socials svg { width: 16px; height: 16px; }
.footer h3 { margin: 0 0 16px; color: #fff; font-size: 16px; text-transform: uppercase; font-weight: 900; }
.contact-list, .quick-links { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; margin-bottom: 12px; color: #fff; font-size: 13px; line-height: 1.25; font-weight: 700; overflow-wrap: anywhere; }
.contact-list svg { width: 20px; height: 20px; color: #fff; }
.quick-links li { margin-bottom: 8px; font-size: 14px; font-weight: 700; }
.footer-safe svg { width: 58px; height: 58px; color: var(--orange); margin-bottom: 12px; }
.footer-safe p { margin: 0 0 18px; color: rgba(255,255,255,.88); font-size: 14px; line-height: 1.45; font-weight: 600; }
.footer-safe h4 { margin: 16px 0 5px; color: var(--orange); font-size: 18px; line-height: 1; text-transform: uppercase; }
.footer-safe a { color: var(--orange); font-weight: 900; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 48px 18px;
  border-top: 1px solid rgba(255,255,255,.22);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.9); font-size: 13px; font-weight: 700; }
.footer-bottom svg { width: 20px; height: 20px; color: var(--orange); vertical-align: middle; }

@media (max-width: 1100px) {
  .header-inner { padding: 0 24px; gap: 20px; }
  .brand { min-width: auto; }
  .brand span { font-size: 19px; }
  .nav { gap: 20px; font-size: 13px; }
  .hero-copy { padding-left: 28px; padding-right: 28px; }
  .hero-copy h1 { font-size: 52px; max-width: 510px; }
  .trust-strip, .section, .two-panel, .process-section, .reviews-section, .footer-grid, .footer-bottom { max-width: none; margin-left: 24px; margin-right: 24px; padding-left: 0; padding-right: 0; }
  .quote-section { margin-left: 24px; margin-right: 24px; max-width: none; }
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .two-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .header-inner { height: 78px; padding: 0 18px; }
  .brand img { width: 52px; height: 52px; }
  .brand span { font-size: 15px; line-height: .98; }
  .nav, .nav-cta { display: none; }
  .mobile-menu {
    margin-left: auto;
    display: grid;
    gap: 5px;
    width: 34px;
    height: 34px;
    padding: 7px;
    border: none;
    background: transparent;
  }
  .mobile-menu span { display: block; height: 2px; background: #111; border-radius: 2px; }
  .hero { min-height: auto; display: flex; flex-direction: column; }
  .hero-copy { padding: 28px 22px 24px; }
  .hero-copy h1 { font-size: 38px; letter-spacing: -1.4px; max-width: 340px; }
  .hero-kicker { margin-top: 17px; font-size: 14px; }
  .hero-text { font-size: 13px; max-width: 320px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; max-width: 300px; }
  .btn { width: 100%; height: 44px; }
  .hero-media { position: relative; width: 100%; height: 230px; }
  .hero-media::before { background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.1) 28%, rgba(255,255,255,0) 100%); }
  .hero-bolt { left: 0; top: 283px; width: 70px; height: 180px; }
  .hero::after { display: none; }
  .trust-strip { margin: 0; border-radius: 0; grid-template-columns: repeat(4,1fr); box-shadow: none; }
  .trust-strip article { padding: 16px 6px; flex-direction: column; gap: 8px; text-align: center; border-right: 0; }
  .trust-strip svg { width: 30px; height: 30px; }
  .trust-strip h3 { font-size: 10px; }
  .trust-strip p { display: none; }
  .section, .two-panel, .process-section, .reviews-section { margin-left: 0; margin-right: 0; padding-left: 16px; padding-right: 16px; }
  .section { padding-top: 31px; }
  h2 { font-size: 24px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .service-card { min-height: 98px; padding: 13px 5px; }
  .service-card svg { width: 29px; height: 29px; }
  .service-card h3 { font-size: 11px; }
  .two-panel { grid-template-columns: 1fr; margin-top: 28px; gap: 12px; }
  .info-card { padding: 22px 18px; min-height: auto; }
  .why-card { grid-template-columns: 1fr; }
  .panel-image { width: 100%; height: 170px; }
  .why-card h2, .service-area-card h2 { font-size: 24px; }
  .area-pills { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-line { display: none; }
  .quote-section { margin: 24px 16px 0; grid-template-columns: 1fr; }
  .quote-copy { padding: 24px 18px 18px; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-section h2 { font-size: 24px; }
  .quote-promise { padding: 20px 18px 25px; }
  .quote-promise img { display: none; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { margin: 0; padding: 30px 20px; grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { margin: 0 20px; padding: 14px 0 20px; flex-direction: column; align-items: flex-start; }
}
