/* ── 3-CARD FEATURE STRIP ── */
.features-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 var(--pad-x);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: 0 auto;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 34px 34px;
  border-right: 1px solid var(--border);
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: #fafbfc; }
.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 13px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-text h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  font-family: var(--font-sans);
  line-height: 1.25;
}
.feature-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.55;
  margin: 0;
}

/* ── WHY CHOOSE SECTION ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-text h2 {
  margin-bottom: 16px;
  color: var(--dark);
}
.why-text p {
  color: #555;
  margin-bottom: 14px;
  font-size: 17px;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  color: var(--dark);
  font-weight: 600;
}
.why-list li:last-child { border-bottom: none; }
.why-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-check svg { width: 11px; height: 11px; }
.why-checkin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
}

/* Location card (Why Choose right column) */
.why-location-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
  background: #fff;
}
.why-location-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}
.why-location-body { padding: 24px; }
.why-location-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.why-location-name img { width: 32px; height: 32px; border-radius: 6px; }
.why-location-rows { margin-bottom: 20px; }
.why-location-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: #555;
}
.why-location-row:last-child { border-bottom: none; }
.why-location-row svg { flex-shrink: 0; margin-top: 1px; }
.why-location-row strong {
  color: var(--dark);
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 2px;
}
.why-phone {
  color: var(--red);
  font-weight: 600;
}
.why-location-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.loc-btn-directions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 12px;
  border-radius: 8px;
}
.loc-btn-directions:hover { background: #1a1d22; color: #fff; }
.loc-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 12px;
  border-radius: 8px;
}
.loc-btn-call:hover { background: var(--red-dk); color: #fff; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── 24/7 CTA BAND ── */
.band-247 {
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1420 100%);
  padding: 64px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.band-247::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--band-bg-url, none) center / cover no-repeat;
  opacity: .10;
}
.band-247-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.band-247 .eyebrow { margin-bottom: 12px; }
.band-247 h2 {
  color: #fff;
  margin-bottom: 12px;
  max-width: 600px;
}
.band-247 p {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  margin-bottom: 30px;
  max-width: 480px;
}
.band-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.band-btn-primary {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.band-btn-primary:hover { background: var(--red-dk); color: #fff; }
.band-btn-outline {
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.band-btn-outline:hover { border-color: rgba(255,255,255,.8); color: #fff; }

/* ── CONDITIONS PORTAL ── */
.cp-section {
  padding: 72px var(--pad-x);
  background: #fff;
  border-top: 1px solid var(--border);
}
.cp-inner { max-width: var(--max-width); margin: 0 auto; }
.cp-heading { text-align: center; margin-bottom: 42px; }
.cp-heading h2 { margin-bottom: 6px; color: var(--dark); }
.cp-heading p { font-size: 18px; color: #666; max-width: 680px; margin: 10px auto 0; }
.cp-bar { width: 36px; height: 3px; background: var(--red); margin: 8px auto 0; border-radius: 2px; }
.cp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cp-benefits-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.cp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 16px 14px;
  transition: border-color .2s;
  display: flex;
  flex-direction: column;
}
.cp-card:hover { border-color: var(--red); }
.cp-benefit-card {
  border: 0;
  border-right: 3px solid #1d3158;
  border-radius: 0;
  padding: 18px 28px 20px;
  text-align: center;
  transition: none;
}
.cp-benefit-card:last-child { border-right: 0; }
.cp-benefit-card:hover { border-color: #1d3158; }
.cp-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cp-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cp-icon svg { width: 18px; height: 18px; }
.cp-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  font-family: var(--font-serif);
}
.cp-benefit-card .cp-title {
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.cp-benefit-card p {
  color: #4d4d4d;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.cp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex: 1;
}
.cp-pill {
  font-size: 11px;
  color: #666;
  background: var(--gray-bg);
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.cp-more {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 10px;
}
.cp-more:hover { text-decoration: underline; }

/* ── STATS ── */
.seen-logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  max-width: 840px;
  margin: 0 auto 26px;
}
.seen-logo-item {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.seen-logo-item img {
  max-width: 118px;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stat-item {
  background: #fff;
  text-align: center;
  padding: 40px 24px;
}
.stat-num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
  font-family: var(--font-sans);
}
.stat-label {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  font-family: var(--font-sans);
}
.stat-desc {
  font-size: 16px;
  color: #888;
  line-height: 1.45;
}

/* ── REVIEWS ── */
.reviews-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: flex-start;
}
.reviews-aggregate {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  position: sticky;
  top: 88px;
}
.reviews-agg-logo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 2px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews-agg-logo img { width: 100%; height: 100%; object-fit: cover; }
.reviews-agg-name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.reviews-agg-score { font-size: 44px; font-weight: 700; color: var(--star); line-height: 1; margin-bottom: 4px; }
.reviews-agg-stars { font-size: 22px; color: var(--star); letter-spacing: -1px; margin-bottom: 6px; }
.reviews-agg-count { font-size: 15px; color: #888; margin-bottom: 16px; }
.reviews-agg-powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 18px;
}
.reviews-agg-powered span { color: #555; font-weight: 600; }
.review-us-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 30px;
}
.review-us-btn:hover { background: var(--red-dk); color: #fff; }
.reviews-cards-wrap { overflow: hidden; }
.reviews-cards-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ── BUILDING STRIP ── */
.building-strip {
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 36px;
  box-shadow: var(--shadow);
}
.building-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.building-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,5,5,.55) 0%, transparent 60%);
  display: flex;
  align-items: center;
  padding: 28px;
}
.building-strip-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.building-strip-text p { font-size: 14px; color: rgba(255,255,255,.82); }
.building-strip-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.building-strip-badge img { width: 36px; height: 36px; border-radius: 6px; }
.building-strip-badge-text strong { display: block; font-size: 12px; font-weight: 700; color: var(--dark); }
.building-strip-badge-text span { font-size: 10px; color: #888; }

/* ── COMPARISON TABLE ── */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  min-width: 560px;
}
.compare-table th {
  padding: 16px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid var(--border);
}
.compare-table th.col-label { text-align: left; background: var(--gray-bg); border: 1px solid var(--border); }
.compare-table th.col-wv   { background: var(--red); color: #fff; border-color: var(--red); }
.compare-table th.col-hosp,
.compare-table th.col-uc   { background: #f0f0f0; color: var(--dark); }
.compare-table td {
  padding: 13px 20px;
  text-align: center;
  border: 1px solid var(--border);
  color: #555;
  vertical-align: middle;
}
.compare-table tr:nth-child(even) td { background: var(--gray-bg); }
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--dark);
}
.check-yes     { color: #16a34a; font-size: 18px; font-weight: 700; }
.check-no      { color: #bbb; font-size: 18px; }
.check-partial { color: #f59e0b; font-size: 13px; font-weight: 600; }

/* ── MOBILE STICKY BAR ── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0,0,0,.12);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-sticky a {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 13px;
  border-radius: 10px;
}
.mob-btn-call    { background: var(--red); color: #fff; }
.mob-btn-call:hover { background: var(--red-dk); color: #fff; }
.mob-btn-checkin { background: var(--dark); color: #fff; }
.mob-btn-checkin:hover { background: #1a1d22; color: #fff; }

/* Mobile comparison table: keep the real table, shrink to fit instead of stacking cards. */
@media (max-width: 600px) {
  .compare-table-wrap { overflow-x: visible; width: 100%; }
  .compare-table { display: table !important; width: 100%; min-width: 0; table-layout: fixed; border-collapse: collapse; border-spacing: 0; font-size: 12px; }
  .compare-table thead { display: table-header-group !important; }
  .compare-table tbody { display: table-row-group !important; }
  .compare-table tr { display: table-row !important; width: auto; border: 0; border-radius: 0; background: transparent; overflow: visible; }
  .compare-table th, .compare-table td { display: table-cell !important; width: auto; border: 1px solid var(--border); padding: 9px 5px; text-align: center; vertical-align: middle; line-height: 1.25; }
  .compare-table th { font-size: 11px; padding: 10px 4px; white-space: normal; }
  .compare-table th.col-label { width: 34%; }
  .compare-table th.col-wv, .compare-table th.col-hosp, .compare-table th.col-uc { width: 22%; }
  .compare-table td:first-child { display: table-cell !important; width: 34%; padding-left: 7px; text-align: left; font-size: 12px; background: inherit; }
  .compare-table td[data-label]::before { content: none; display: none; }
  .check-yes, .check-no { font-size: 16px; }
  .check-partial { font-size: 10px; line-height: 1.2; }
}
