/* Parking Lot Sweeping Columbus — condensed + styled */

/* Slightly smaller base than before to reduce overall height */
html { font-size: 106%; }

body.sweep-landing {
  background: #ffffff;
  min-height: 100vh;
  margin: 0;
  padding: 1.5rem;
  display: block;              /* key fix */
  padding-bottom: 110px;       /* room for sticky bar */
}

/* Logo */
.badge-main {
  display: block;
  margin: 14px auto 14px auto;
  max-width: 270px;
  width: 72%;
  height: auto;
}

/* Shell */
.sweep-shell {
  position: relative;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

/* Watermark */
.sweep-watermark {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("../../images/midwest-icon.ico");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(360px, 70vw);
  z-index: 0;
}

/* Main panel */
.sweep-panel {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 1.35rem;
  padding: 1.7rem 2.1rem 1.4rem;
  text-align: center;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.6rem;
}
.back-link span.icon { font-size: 1.1rem; line-height: 1; }
.back-link:hover { text-decoration: underline; }

/* Header */
.sweep-header h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2.05rem;
  line-height: 1.12;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin: 0 auto 0.9rem;
}

.hero-pill {
  font-size: 0.92rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.78);
}

.hero-line {
  margin: 0.35rem auto 0.75rem;
  max-width: 72ch;
  color: rgba(0,0,0,0.80);
  line-height: 1.45;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin: 0 auto 0.8rem;
}

.hb {
  font-size: 0.92rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.78);
}

/* CTA row */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

/* AI accordion */
.ai-accordion {
  margin: 0.85rem auto 0;
  max-width: 860px;
  text-align: left;
}

.ai-details {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0.95rem;
  padding: 0.85rem 1rem;
  background: rgba(0,0,0,0.02);
}

.ai-details summary {
  cursor: pointer;
  font-weight: 700;
  color: rgba(0,0,0,0.85);
}

.ai-details__body {
  margin-top: 0.75rem;
}

.mini-title {
  margin: 0.85rem 0 0.45rem;
  font-size: 0.92rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}

.lead {
  margin: 1rem 0 1rem 0;
  font-size: 1.03rem;
  color: rgba(0,0,0,0.88);
}

.lead.tight {
  margin: 0.55rem 0;
  font-size: 0.98rem;
  color: rgba(0,0,0,0.86);
  line-height: 1.45;
}

/* Compact list used in CAM + definition */
.compact-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: rgba(0,0,0,0.78);
  line-height: 1.45;
}
.compact-list li { margin: 0.35rem 0; }

/* Blocks */
.block {
  margin-top: 1.35rem;
  text-align: left;
}

.block-heading {
  text-align: center;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin: 0 0 0.8rem;
}

.block-lead {
  margin: 0.6rem auto 0.85rem auto;
  max-width: 820px;
  color: rgba(0,0,0,0.85);
  line-height: 1.5;
  text-align: center;
}

.fine {
  margin-top: 0.8rem;
  font-size: 0.93rem;
  color: rgba(0,0,0,0.7);
  text-align: center;
}

.block-last { margin-bottom: 0.15rem; }

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.1rem;
  justify-items: stretch;
  align-items: stretch;
}

.card {
  width: 100%;
  max-width: none;
  background: rgba(0,0,0,0.03);
  border-radius: 0.9rem;
  padding: 0.85rem 0.95rem;
  text-align: center;
}

.card h3 {
  margin: 0 0 0.3rem 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(0,0,0,0.72);
  line-height: 1.38;
}

.card.highlight {
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.08);
}

.cam-summary {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.cam-summary h3 {
  text-align: center;
  margin-bottom: 0.55rem;
}

/* Areas paragraph */
.areas-paragraph {
  margin: 0.4rem auto 0.75rem;
  max-width: 820px;
  text-align: center;
  color: rgba(0,0,0,0.82);
  line-height: 1.5;
}

/* Pills */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.2rem;
}

.pill {
  display: inline-block;
  font-size: 0.88rem;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.8);
}

/* FAQ */
.faq {
  margin-top: 0.7rem;
}

.faq details {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0.9rem;
  padding: 0.75rem 0.9rem;
  background: rgba(0,0,0,0.02);
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: rgba(0,0,0,0.85);
}

.faq p {
  margin: 0.65rem 0 0 0;
  color: rgba(0,0,0,0.75);
  line-height: 1.45;
  font-size: 0.95rem;
}

/* Two-column FAQ on desktop */
@media (min-width: 980px) {
  .faq {
    column-count: 1;
  }
  .faq details {
    break-inside: avoid;
  }
}

/* Contact grid */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

/* Footer note */
.footnote {
  margin-top: 1rem;
  font-size: 0.86rem;
  color: rgba(0,0,0,0.55);
  text-align: center;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9998;
  padding: 0.6rem 0.75rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(0,0,0,0.08);
  transform: none !important; /* protects against theme transforms */
}

.sticky-cta__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.sticky-cta__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: rgba(0,0,0,0.8);
  font-size: 0.92rem;
}

.sticky-cta__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}



/* Mobile: stack cards */
@media screen and (max-width: 736px) {
  body.sweep-landing { padding: 1.1rem; }

  .sweep-panel {
    padding: 1.5rem 1.25rem 1.25rem;
    border-radius: 1.1rem;
  }

  .sweep-header h1 { font-size: 1.7rem; }

  .card-grid { grid-template-columns: 1fr; }

  .sticky-cta__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .sticky-cta__actions {
    justify-content: space-between;
  }
}

/* Keep your modal CSS intact below (unchanged from your file) */
.mlc-modal__dialog {
  height: auto;
  max-height: 85vh;
}

.quote-title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.quote-subtitle {
  font-size: 0.5rem;
  margin-bottom: 1rem;
}

.quote-panel {
  padding: 1.5rem 1.5rem 1.75rem;
}

@media (max-width: 736px) {
  .quote-panel {
    padding: 1.25rem 1rem;
  }

  .quote-title {
    font-size: 1.25rem;
  }

  .quote-subtitle {
    font-size: 0.9rem;
  }

  .mlc-modal__dialog {
    width: calc(100% - 1rem);
    margin: 4vh auto;
  }
}

/* ================================
   Quote Request Modal (iframe)
   ================================ */
.mlc-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.mlc-qr-modal.is-open {
  display: block;
}

.mlc-qr-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.mlc-qr-dialog {
  position: relative;
  width: min(920px, calc(100% - 1.25rem));
  margin: 6dvh auto;
  height: min(720px, 88vh);
  max-height: 88dvh;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);

  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mlc-qr-topbar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.mlc-qr-topbar__title {
  font-weight: 700;
  letter-spacing: .01em;
}

.mlc-qr-close {
  background: #5c8fb3;
  color: #ffffff !important;
  border: none;
  outline: none;
  border-radius: 8px;
  width: 56px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.mlc-qr-close:hover {
  background: #4e7fa1;
  color: #ffffff;
}

.mlc-qr-close:focus,
.mlc-qr-close:focus-visible {
  outline: none;
  box-shadow: none;
}

.mlc-qr-frame {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  border: 0;
}

@media (max-width: 640px) {
  .mlc-qr-dialog {
    margin: 4dvh auto;
    width: calc(100% - 1rem);
    max-height: 92dvh;
    border-radius: 12px;
  }
  .mlc-qr-topbar {
    padding: .65rem .85rem;
  }
}

.qr {
  padding: 18px;
  max-width: 860px;
}

.qr h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  margin: 6px 0 10px;
}

.qr p {
  margin: 0 0 14px;
}

.qr .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.qr textarea {
  min-height: 140px;
  max-height: 240px;
}

@media (max-width: 720px) {
  .qr { padding: 14px; }
  .qr .grid { grid-template-columns: 1fr; }
  .qr textarea { min-height: 120px; max-height: 200px; }
}