/* Wireless Internet — mobile-first, coverage & speed focus */
body.theme-wireless {
  --font: "Montserrat", system-ui, sans-serif;
  --radius: 0.75rem;
  --radius-lg: 1rem;
}

.theme-wireless .logo {
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: 1rem;
}

.theme-wireless .logo-icon {
  border-radius: 50%;
}

/* Left-aligned gradient hero */
.hero-wireless {
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #0c4a6e;
}

.hero-wireless .hero-bg {
  object-position: 70% center;
  opacity: 0.55;
}

.hero-wireless .hero-overlay {
  background: linear-gradient(105deg, rgb(8 47 73 / 0.95) 0%, rgb(8 145 178 / 0.75) 55%, rgb(8 47 73 / 0.5) 100%);
}

.hero-wireless .hero-content {
  text-align: left;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
  padding: 4rem 1.5rem;
}

.hero-wireless h1 {
  text-align: left;
  max-width: 14ch;
}

.hero-wireless h1 .accent {
  color: #67e8f9;
}

.hero-wireless .hero-sub {
  text-align: left;
  margin-left: 0;
  max-width: 28rem;
}

.hero-wireless .hero-pills {
  justify-content: flex-start;
}

.hero-wireless .hero-actions {
  justify-content: flex-start;
}

.hero-wireless .trust-line {
  justify-content: flex-start;
}

.hero-wireless .badge-offer {
  background: rgb(34 211 238 / 0.25);
  border: 1px solid rgb(103 232 249 / 0.4);
}

/* Wave section divider */
.wave-top {
  margin-top: -2px;
  line-height: 0;
  color: var(--bg-alt);
}

.wave-top svg {
  width: 100%;
  height: 48px;
}

/* Coverage types */
.coverage-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.coverage-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  transition: transform var(--transition), box-shadow var(--transition);
}

.coverage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.coverage-card .cov-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.coverage-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.coverage-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.coverage-card ul {
  font-size: 0.8rem;
  color: #374151;
}

.coverage-card ul li {
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.coverage-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

/* Horizontal plan rows with speed meter */
.plan-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-row {
  display: grid;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  align-items: center;
  transition: box-shadow var(--transition);
}

@media (min-width: 768px) {
  .plan-row {
    grid-template-columns: 1fr auto auto auto;
    gap: 1.5rem;
  }
}

.plan-row:hover {
  box-shadow: var(--shadow-lg);
}

.plan-row.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary-light);
}

.plan-row-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.plan-row-info .speed-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-row-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.speed-meter {
  width: 100%;
  max-width: 140px;
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.speed-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #22d3ee);
  border-radius: 999px;
}

.plan-row-price {
  text-align: center;
}

.plan-row-price .amount {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.plan-row-price .amount span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-row .btn-card {
  white-space: nowrap;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* Carrier strip */
.carrier-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carrier-badge {
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.04em;
}

/* Mobile deals — horizontal scroll */
.deals-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.deals-scroll .deal-card {
  flex: 0 0 min(300px, 85vw);
  scroll-snap-align: start;
  text-align: left;
}

.deals-scroll .deal-card h3 {
  font-size: 1rem;
}

.theme-wireless .section-alt {
  background: linear-gradient(180deg, #f0fdfa 0%, var(--bg-alt) 100%);
}

.theme-wireless .site-footer {
  background: #0f172a;
}
