*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2a4a;
  --navy-mid: #243558;
  --red: #c0392b;
  --red-dark: #a93226;
  --offwhite: #f7f4f0;
  --warm-tan: #ede8e1;
  --slate: #5a6a82;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--offwhite);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
}

.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 20px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-bar p { font-size: 15px; font-weight: 600; }
.sticky-bar a {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  background: var(--navy);
  background-image:
    linear-gradient(135deg, rgba(192,57,43,0.15) 0%, transparent 50%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  background-blend-mode: multiply;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 100px 20px 80px;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,42,74,0.88) 0%, rgba(26,42,74,0.55) 60%, transparent 100%);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(255,255,255,0.1);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: var(--white); }

.hero-form {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.hero-form h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.hero-form p {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 20px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d8d3cc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: var(--offwhite);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--red-dark); }
.form-disclaimer {
  font-size: 11px;
  color: var(--slate);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
.label-optional {
  text-transform: none;
  font-weight: 500;
  color: var(--slate);
}
.form-group.form-group-hidden { margin-bottom: 0; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--red);
}
.form-group .messages:empty { margin: 0; }
.form-group .help-block.error {
  font-size: 12px;
  color: var(--red);
  margin-top: 5px;
}
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.form-submit .loader {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  vertical-align: middle;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-form .thank-you-message { text-align: center; padding: 20px 0; }
.hero-form .thank-you-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.hero-form .thank-you-content {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}
.hero-form .thank-you-phone {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.trust-strip {
  background: var(--navy-mid);
  padding: 22px 20px;
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  gap: 0;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 12px;
}
.trust-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

section { padding: 90px 20px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 17px;
  color: var(--slate);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.services-bg { background: var(--offwhite); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,42,74,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26,42,74,0.14);
}
.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-body { padding: 24px; }
.service-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-body p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-link::after { content: '→'; }

.why-dark { background: var(--navy); padding: 90px 20px; }
.why-dark .eyebrow { color: rgba(255,255,255,0.55); }
.why-dark h2 { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.why-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.why-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.stats-bg { background: var(--warm-tan); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--slate);
  font-weight: 600;
  line-height: 1.4;
}

.gallery-bg { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,42,74,0.08);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }

.process-bg { background: var(--offwhite); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
}

.reviews-bg { background: var(--navy); padding: 90px 20px; }
.reviews-bg .eyebrow { color: rgba(255,255,255,0.5); }
.reviews-bg h2 { color: var(--white); margin-bottom: 48px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-pending {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-pending p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: #f0b429;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-quote {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 22px;
  flex-grow: 1;
}
.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.review-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.faq-bg { background: var(--offwhite); }
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid #ddd8d0;
  padding: 22px 0;
}
.faq-q {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q::after {
  content: '+';
  color: var(--red);
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item.active .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.35s ease;
}
.faq-item.active .faq-a {
  max-height: 400px;
  margin-top: 4px;
  opacity: 1;
}

.final-cta {
  background: var(--red);
  padding: 80px 20px;
  text-align: center;
}
.final-cta h2 { color: var(--white); margin-bottom: 14px; }
.final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-pair { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 4px;
  text-decoration: none;
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
}

.lp-footer {
  background: var(--navy);
  padding: 28px 20px;
  text-align: center;
}
.lp-footer p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
.lp-footer a { color: rgba(255,255,255,0.55); }

@media (max-width: 1220px) {
  .trust-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 14px;
  }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form { margin-top: 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .sticky-bar { flex-direction: column; gap: 10px; padding: 14px 16px; }
  section { padding: 70px 20px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero { padding: 80px 20px 60px; }
}
