#coverage,
#about,
#reviews,
#contact {
  scroll-margin-top: 96px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(0, 62, 128, .55), transparent 60%),
    radial-gradient(700px 480px at 5% 110%, rgba(204, 35, 42, .25), transparent 55%),
    linear-gradient(160deg, var(--navy), #152337);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 30% 30%, #000, transparent 75%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
  padding: 64px 24px 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 7px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  margin: 22px 0 18px;
  font-weight: 800;
}

.hero h1 .hl {
  color: #fff;
  background: linear-gradient(transparent 62%, rgba(204, 35, 42, .85) 62%);
  padding: 0 4px;
}

.hero p.sub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .82);
  max-width: 480px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}

.trust svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.hero-anim {
  opacity: 0;
  transform: translateY(18px);
  animation: rise .7s ease forwards;
}

.d1 { animation-delay: .05s; }
.d2 { animation-delay: .15s; }
.d3 { animation-delay: .25s; }
.d4 { animation-delay: .35s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 44px 24px 54px;
  }
}

/* ---------- Quote card ---------- */
.quote-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .5);
}

.quote-card .qhead {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 4px;
}

.quote-card .qhead .badge {
  background: var(--red);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 9px;
  border-radius: 6px;
  text-transform: uppercase;
}

.quote-card h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 8px 0 2px;
}

.quote-card .qsub {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 18px;
}

.q-label {
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
  display: block;
}

.lob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lob {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 6px;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: .86rem;
  color: var(--ink);
  transition: all .18s;
  text-align: center;
}

.lob svg {
  width: 25px;
  height: 25px;
  color: var(--navy);
  transition: color .18s;
}

.lob:hover {
  border-color: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.lob.active {
  border-color: var(--red);
  background: linear-gradient(180deg, #fff, #fbf1f1);
  box-shadow: 0 0 0 3px rgba(204, 35, 42, .12);
}

.lob.active svg {
  color: var(--red);
}

.lob.recommend {
  border-color: #E6B84a;
  background: linear-gradient(180deg, #fff, #fffaf0);
}

/* Bundle & Save badge on recommended lines */
.bundle-badge {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 50px;
  box-shadow: 0 4px 10px -3px rgba(204, 35, 42, .5);
  animation: badgePop .35s cubic-bezier(.2, 1.4, .5, 1) both;
  z-index: 2;
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(.5);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

@media (max-width: 420px) {
  .lob-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.qhint {
  font-size: .85rem;
  color: var(--muted);
  margin: 14px 0 16px;
  min-height: 1.1em;
  text-align: center;
}

.qhint strong {
  color: var(--red-dark);
}

/* Details form fields */
.field {
  margin-bottom: 13px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: .82rem;
  color: var(--navy);
  margin-bottom: 5px;
}

.field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: .96rem;
  color: var(--ink);
  transition: border .18s, box-shadow .18s;
}

.field input:focus {
  outline: none;
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px rgba(0, 62, 128, .12);
}

.submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 15px;
  margin-top: 6px;
}

.submit:disabled {
  background: #c3c9d2;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.fineprint {
  font-size: .74rem;
  color: var(--muted);
  text-align: center;
  margin-top: 11px;
  line-height: 1.45;
}

.ok-msg {
  display: none;
  text-align: center;
  padding: 28px 14px;
}

.ok-msg.show {
  display: block;
  animation: slide .4s ease;
}

.ok-msg .tick {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #e7f7ec;
  color: #15a14a;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}

.ok-msg .tick svg {
  width: 30px;
  height: 30px;
}

.ok-msg h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 7px;
}

.ok-msg p {
  color: var(--muted);
  font-size: .95rem;
}

@keyframes slide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Quote modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(12, 22, 38, .62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-overlay.open {
  display: flex;
  animation: fadeIn .2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  position: relative;
  background: var(--paper);
  border-radius: 22px;
  width: 100%;
  max-width: 460px;
  padding: 32px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .5);
  max-height: 92vh;
  overflow: auto;
  animation: modalIn .32s cubic-bezier(.2, 1, .4, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal h2 {
  color: var(--navy);
  font-size: 1.5rem;
  margin: 8px 0 2px;
}

.modal .qsub {
  color: var(--muted);
  font-size: .94rem;
  margin-bottom: 18px;
}

.modal .qsub strong {
  color: var(--red);
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #f1f3f6;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, color .15s;
}

.modal-close:hover {
  background: #e3e7ec;
  color: var(--ink);
}

body.modal-open {
  overflow: hidden;
}

/* Address autocomplete */
.ac-wrap {
  position: relative;
}

.ac-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow);
  max-height: 236px;
  overflow: auto;
  display: none;
}

.ac-list.show {
  display: block;
}

.ac-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 10px 13px;
  font-size: .9rem;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 1px solid #f0f2f5;
}

.ac-list li:last-child {
  border-bottom: none;
}

.ac-list li:hover,
.ac-list li.active {
  background: #f6f8fb;
}

.ac-list li svg {
  width: 15px;
  height: 15px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}

.ac-list strong {
  font-weight: 600;
}

.ac-list .muted {
  color: var(--muted);
  font-weight: 400;
}

/* ---------- Value strip ---------- */
.values {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding: 46px 24px;
}

.value {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.value .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: grid;
  place-items: center;
  color: #fff;
}

.value .ic svg {
  width: 23px;
  height: 23px;
}

.value h3 {
  font-size: 1.05rem;
  color: var(--navy);
}

.value p {
  font-size: .9rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Sections ---------- */
section.pad {
  padding: 74px 0;
}

.sec-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.sec-head .kicker {
  color: var(--red);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.sec-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  color: var(--navy);
  margin: 10px 0;
}

.sec-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.lob-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .2s, box-shadow .2s;
  border-top: 4px solid var(--red);
}

.lcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.lcard .ic {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #fdeef0;
  display: grid;
  place-items: center;
  color: var(--red);
  margin-bottom: 15px;
}

.lcard .ic svg {
  width: 26px;
  height: 26px;
}

.lcard h3 {
  font-size: 1.22rem;
  color: var(--navy);
  margin-bottom: 7px;
}

.lcard p {
  font-size: .93rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.lcard a {
  font-weight: 700;
  color: var(--red);
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lcard a:hover {
  gap: 10px;
}

@media (max-width: 860px) {
  .lob-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .lob-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- About ---------- */
#about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.about-right {
  position: relative;
}

.about-photos {
  position: relative;
  margin-bottom: 30px;
}

.photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef1f5, #e1e6ee);
  box-shadow: var(--shadow);
}

.photo.horizontal {
  width: 72%;
  margin-right: auto;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
}

.photo.vertical {
  position: absolute;
  right: 0;
  bottom: -26px;
  width: 40%;
  aspect-ratio: 3/4;
  z-index: 2;
  border: 7px solid var(--paper);
  box-shadow: 0 24px 50px -18px rgba(33, 53, 78, .45);
}

.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo img:not([src]),
.photo img[src=""] {
  display: none;
}

.ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  padding: 12px;
  color: var(--navy);
  font-weight: 700;
  font-size: .84rem;
}

.ph-label svg {
  width: 28px;
  height: 28px;
  opacity: .55;
  margin-bottom: 2px;
}

.ph-label small {
  font-weight: 500;
  color: var(--muted);
  font-size: .7rem;
}

@media (max-width: 600px) {
  .about-photos {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
  }
  .photo.horizontal {
    width: 100%;
  }
  .photo.vertical {
    position: static;
    width: 72%;
    margin: 0 auto;
    border: none;
    bottom: auto;
    box-shadow: var(--shadow);
  }
}

.about-copy .kicker {
  color: var(--red);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.about-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  color: var(--navy);
  margin: 10px 0 16px;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 1.02rem;
}

.about-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 26px;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
  font-size: 1.02rem;
}

.about-points svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- Google Reviews ---------- */
.reviews {
  background: linear-gradient(180deg, var(--cream), #fff);
  padding: 74px 0;
  overflow: hidden;
}

.rev-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.rev-head .kicker {
  color: var(--red);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.rev-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  color: var(--navy);
  margin: 10px 0;
}

.gsummary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.gsummary .gbadge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: 50px;
  padding: 10px 20px;
  text-decoration: none;
  transition: transform .18s, box-shadow .2s;
}

.gsummary .gbadge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.gsummary .score {
  font-family: "Bricolage Grotesque";
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--navy);
  line-height: 1;
}

.stars {
  display: inline-flex;
  gap: 2px;
}

.stars svg {
  width: 18px;
  height: 18px;
  color: #FBBC04;
}

.gsummary .count {
  font-size: .86rem;
  color: var(--muted);
}

.glogo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Marquee */
.marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.track.left {
  animation: scrollL 46s linear infinite;
}

.track.right {
  animation: scrollR 52s linear infinite;
}

@keyframes scrollL {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollR {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .track {
    animation: none;
  }
}

.rcard {
  flex: 0 0 340px;
  margin-right: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.rcard .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.rcard .who {
  display: flex;
  align-items: center;
  gap: 11px;
}

.rcard .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: "Bricolage Grotesque";
  font-size: 1.05rem;
}

.rcard .nm {
  font-weight: 700;
  color: var(--navy);
  font-size: .96rem;
  line-height: 1.1;
}

.rcard .nm small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: .76rem;
  margin-top: 2px;
}

.rcard .rtxt {
  color: #3c4759;
  font-size: .93rem;
  line-height: 1.55;
}

.rcard .stars svg {
  width: 15px;
  height: 15px;
  color: #FBBC04;
}

.rcard .top .glogo {
  width: 22px;
  height: 22px;
}

.rcard .rfoot {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.rcard .rfoot .glogo {
  width: 16px;
  height: 16px;
}

.rcard .rfoot span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}

.cta-band p {
  opacity: .92;
  margin-bottom: 24px;
  font-size: 1.08rem;
}
