/* =====================================================
   Family Plans Page — v2.0 LEAN
   Color palette: Internet & Phone (#054162 #0899e6 #38bdf8 #7dd3fc)
   Prefix: fp-  (inherits wp- base from wireless-plans.css)
   ===================================================== */

/* =====================================================
   Hero — unique background
   ===================================================== */
.fp-hero-bg {
  background-image: url('../../images/fp-hero.webp');
  background-size: cover;
  background-position: center top;
  position: absolute;
  inset: 0;
}

/* =====================================================
   Per-Line Math — pricing table
   ===================================================== */
.fp-table-wrap {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.fp-table {
  width: 100%;
  border-collapse: collapse;
}

.fp-table thead th {
  background: rgba(8, 153, 230, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 1.25rem;
  font-family: var(--fh);
  font-size: 0.82rem;
  font-weight: 800;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.fp-table tbody td {
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.5;
}

.fp-table tbody tr:last-child td {
  border-bottom: none;
}

.fp-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.fp-table tbody td:first-child {
  font-weight: 700;
  color: #fff;
}

.fp-table tbody td:last-child {
  color: #38bdf8;
  font-weight: 700;
}

.fp-table-note {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.6;
}

/* =====================================================
   Audit checklist cards
   ===================================================== */
.fp-audit-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.25s ease;
}

.fp-audit-card:hover {
  border-color: rgba(8, 153, 230, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 153, 230, 0.04);
  background: #ffffff;
}

.fp-audit-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #054162, #0899e6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(8, 153, 230, 0.2);
  flex-shrink: 0;
}

.fp-audit-card p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 767px) {
  .fp-table thead th,
  .fp-table tbody td {
    padding: 0.75rem 0.85rem;
    font-size: 0.8rem;
  }

  .fp-table thead th {
    font-size: 0.7rem;
  }
}
