body {
  margin:0;
  font-family:Inter, sans-serif;
  background:#000;
  color:#fff;
}
.container {width:min(1100px,92vw); margin:auto}
.site-header {background:#000; border-bottom:1px solid #222}
.header-inner {display:flex; align-items:center; justify-content:space-between; padding:16px 0}
.logo {height:44px}
.nav a {color:#fff; margin-left:16px; text-decoration:none; font-weight:600}

.hero {padding:80px 0; text-align:center}
.hero-logo {max-width:420px; width:80%; margin-bottom:24px}
.lead {color:#bbb}
.trust-line {
  color:#fff;
  font-weight:600;
  margin:18px 0 0;
}

.btn {
  padding:12px 18px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
  display:inline-block;
  margin:8px;
}
.btn-solid {background:#ff7a00; color:#000}
.btn-outline {border:1px solid #fff; color:#fff}

.section {padding:64px 0; background:#fff; color:#000}
.section.dark {background:#000; color:#fff}
.grid-4 {display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:16px}
.feature {padding:24px; border:1px solid #ddd; text-align:center; font-weight:700}

/* Expandable Services */
.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
  margin-top:20px;
}
.service-card {
  background:#fff;
  border:1px solid #ddd;
  border-radius:6px;
  padding:20px;
  cursor:pointer;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover,
.service-card:focus {
  border-color:#999;
  outline:none;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.service-title-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.service-title {
  display:block;
  font-weight:800;
  font-size:1rem;
  line-height:1.3;
}
.service-toggle::before {
  content:"+";
  font-size:1.4rem;
  font-weight:800;
  line-height:1;
}
.service-details {
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .25s ease, opacity .2s ease, margin-top .2s ease;
  margin-top:0;
}
.service-details p {
  margin:0;
  font-weight:400;
  line-height:1.5;
  color:#222;
}
.service-card[aria-expanded="true"] .service-details {
  max-height:260px;
  opacity:1;
  margin-top:14px;
}
.service-card[aria-expanded="true"] .service-toggle::before {content:"−"}

.proof-wrap {position:relative}
.proof-wrap img {width:100%; display:block}
.watermark {
  position:absolute;
  bottom:20px;
  right:20px;
  width:180px;
  opacity:0.06;
}

/* Process */
.process-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
  margin-top:20px;
}
.process-card {
  border:1px solid #ddd;
  border-radius:6px;
  padding:22px;
  background:#fff;
}
.process-number {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  background:#ff7a00;
  color:#000;
  border-radius:50%;
  font-weight:800;
  margin-bottom:12px;
}
.process-card h3 {
  margin:0 0 8px;
}
.process-card p {
  margin:0;
  color:#333;
  line-height:1.55;
}

.safety-section {padding-top:48px; padding-bottom:48px}
.safety-card {
  border:1px solid #222;
  border-radius:10px;
  padding:28px;
  background:#080808;
}
.safety-card h2 {margin-top:0}
.safety-card p {
  color:#ccc;
  line-height:1.6;
  margin-bottom:0;
}

.quote-form {
  max-width:520px;
  margin:auto;
  display:grid;
  gap:12px;
}
.quote-form input,
.quote-form textarea {
  padding:12px;
  border-radius:10px;
  border:none;
  font-family:inherit;
}
.quote-form textarea {min-height:120px}

.contact-note {margin-top:16px; color:#bbb}
.contact-note a {color:#fff}

.footer {
  padding:40px 0;
  text-align:center;
  background:#000;
  border-top:1px solid #222;
}
.footer img {height:56px; margin-bottom:12px}
.footer p {
  max-width:900px;
  margin:0 auto;
  color:#bbb;
  line-height:1.5;
}

@media (max-width:700px) {
  .header-inner {flex-direction:column; gap:12px}
  .nav {display:flex; flex-wrap:wrap; justify-content:center; gap:8px}
  .nav a {margin-left:0}
  .hero {padding:56px 0}
  .services-grid {grid-template-columns:1fr}
  .process-grid {grid-template-columns:1fr}
  .watermark {width:120px; bottom:12px; right:12px}
}


/* Quote Photo Uploads */
.photo-upload-group {
  display:grid;
  gap:10px;
  margin:4px 0 2px;
}
.photo-upload-note {
  margin:0;
  color:#bbb;
  font-size:.9rem;
  line-height:1.45;
}
.file-upload-card {
  display:grid;
  gap:8px;
  color:#fff;
  font-weight:700;
}
.file-upload-card input[type="file"] {
  background:#fff;
  color:#000;
  padding:12px;
  border-radius:10px;
  border:none;
  font-family:inherit;
  cursor:pointer;
}
.file-upload-card input[type="file"]::file-selector-button {
  margin-right:12px;
  border:none;
  border-radius:8px;
  padding:8px 12px;
  background:#ff7a00;
  color:#000;
  font-weight:800;
  cursor:pointer;
}


/* Mobile Sticky Call Button */
.mobile-sticky-call {
  display:none;
}

@media (max-width:700px) {
  body {
    padding-bottom:82px;
  }

  .mobile-sticky-call {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    position:fixed;
    left:16px;
    right:16px;
    bottom:14px;
    z-index:999;
    padding:15px 18px;
    border-radius:14px;
    background:#ff7a00;
    color:#000;
    font-weight:800;
    text-decoration:none;
    box-shadow:0 8px 24px rgba(0,0,0,.35);
  }
}
