/* CUSTOM STYLES FOR PRICE COMPARISON PAGE */

/* Hide get-quote button on mobile */
@media (max-width: 768px) {
  .d-none-mobile {
    display: none !important;
  }
}

/* Inline Trust Badges */
.inline-trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 500;
  color: #55625D;
}
.inline-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .inline-trust-badges {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
}

/* Hero Pill (Eyebrow focus) */
.eyebrow-pill {
  background: var(--color-red-light);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #B91C1C;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* Unified Comparison Table */
.unified-comp-table {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 24px;
}
.uct-header, .uct-row {
  display: grid;
  grid-template-columns: 25% 37.5% 37.5%;
  align-items: center;
  border-bottom: 1px solid #E2E8F0;
}
.uct-row:last-child {
  border-bottom: none;
}
.uct-header {
  background: white;
  align-items: stretch;
}
.uct-header .uct-col-label { border-right: 1px solid #E2E8F0; }
.uct-col-label {
  padding: 24px;
  font-weight: 600;
  color: #64748B;
  border-right: 1px solid #E2E8F0;
  line-height: 1.4;
}
.uct-col-bad, .uct-col-good {
  padding: 24px;
  font-weight: 600;
  line-height: 1.4;
}
.uct-header .uct-col-bad {
  background: var(--color-red-light);
  color: #991B1B;
  text-align: center;
}
.uct-header .uct-col-good {
  background: var(--color-green-light);
  color: #3b6327;
  text-align: center;
}
.uct-header .uct-title {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
}
.uct-col-bad {
  border-right: 1px solid #E2E8F0;
}
.uct-bad-text { color: var(--color-red); }
.uct-good-text { color: var(--color-green); }

@media (max-width: 768px) {
  .uct-header, .uct-row {
    grid-template-columns: 50% 50%;
  }
  .uct-col-label {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: 1px dashed #E2E8F0;
    padding: 12px 16px;
    background: #f8fafc;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-slate-dark);
  }
  .uct-header .uct-col-label {
    display: none;
  }
  .uct-col-bad, .uct-col-good {
    padding: 16px 12px;
    font-size: 0.9rem;
    text-align: center;
  }
  .uct-header .uct-title {
    font-size: 1.05rem;
  }
}

/* Savings Banner */
.savings-banner {
  background: var(--color-green);
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
  .savings-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
}

.savings-amount {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.savings-desc {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.savings-subdesc {
  font-size: 0.9rem;
  opacity: 0.8;
}

.savings-btn {
  background: white;
  color: var(--color-green);
  padding: 16px 32px;
}
.savings-btn:hover {
  background: var(--color-bg-gray);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .savings-btn {
    width: 100%;
  }
}

/* Service Promo Section */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr !important;
  }
}

.service-card {
  background: white;
}

.advice-callout {
  background: white;
  border-left: 4px solid #D97706;
  padding: 32px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}
.advice-callout p {
  margin-bottom: 0;
  color: var(--color-slate-dark);
  font-size: 1.1rem;
}

/* Features Grid Block 5 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 32px;
  border-radius: var(--radius-sm);
  border-top: 4px solid var(--color-green);
  background: white;
  box-shadow: var(--shadow-sm);
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Custom Forms */
.form-row-2 {
  display: flex;
  gap: 16px;
}
.form-row-2 .form-group {
  flex: 1;
}
@media (max-width: 768px) {
  .form-row-2 {
    flex-direction: column;
    gap: 0;
  }
}

.form-select, .form-textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-blue);
}
.form-select {
  background-color: white;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
}

@media (max-width: 768px) {
  .banner-phone {
    font-size: 2.25rem !important;
  }
}
