.hero-section {
  background: linear-gradient(135deg, #0b1f3a 0%, #153b6e 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 35%);
  pointer-events: none;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 0.9rem;
}

.hero-section h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-subheadline {
  font-size: 1.05rem;
  color: #dce8f8;
  margin-bottom: 1.25rem;
  max-width: 620px;
}

.hero-actions .btn {
  padding: 0.75rem 1.25rem;
  border-radius: 0.4rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  min-width: 120px;
}

.stat-item strong {
  display: block;
  font-size: 1.05rem;
}

.stat-item span {
  color: #dce8f8;
  font-size: 0.9rem;
}

.hero-card,
.feature-card,
.package-card,
.coverage-card,
.info-card,
.stats-card,
.list-card,
.coverage-map-card {
  background: #ffffff;
  border: 1px solid #e5ebf5;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  height: 100%;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-card-top {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-card-body {
  padding: 1rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
}

.router-placeholder {
  padding: 2rem 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  color: #f6fbff;
  font-weight: 600;
  text-align: center;
}

.metric-list {
  display: grid;
  gap: 0.6rem;
}

.metric-item {
  display: flex;
  justify-content: space-between;
  color: #f6fbff;
}

.feature-card h3,
.package-card h3,
.coverage-card h3,
.info-card h3,
.stats-card strong,
.list-card h3,
.coverage-map-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.section-block {
  background: #ffffff;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e5ebf5;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.stat-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 0.25rem;
}

.stat-card p {
  color: #4b5563;
  margin-bottom: 0;
}

.section-block:nth-of-type(odd) {
  background: #f8fafc;
}

.package-card.featured {
  border-color: #0d6efd;
  box-shadow: 0 16px 32px rgba(13, 110, 253, 0.16);
}

.featured-badge {
  display: inline-block;
  background: #0d6efd;
  color: #ffffff;
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.package-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 1rem;
}

.package-card ul,
.list-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  color: #4b5563;
}

.package-card li,
.list-card li {
  margin-bottom: 0.55rem;
}

.coverage-card-meta {
  color: #4b5563;
  margin-bottom: 0.45rem;
}

.coverage-status-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.coverage-status-pill.available {
  background: #dcfce7;
  color: #166534;
}

.coverage-status-pill.coming-soon {
  background: #fef3c7;
  color: #92400e;
}

.coverage-status-pill.inactive {
  background: #e5e7eb;
  color: #374151;
}

.coverage-filter-card {
  background: #ffffff;
  border: 1px solid #e5ebf5;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.coverage-map-shell {
  margin-top: 1rem;
}

.coverage-detail-meta .info-card {
  padding: 1rem;
}

.package-card--compact {
  padding: 1.1rem;
}

.inquiry-form .form-label {
  font-weight: 600;
  color: #0f172a;
}

.inquiry-form .form-control,
.inquiry-form .form-select {
  border-radius: 0.7rem;
}

.success-card {
  max-width: 880px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dbe7f6;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.success-badge {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, #0d6efd 0%, #1d4ed8 100%);
}

.cta-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.25rem;
  padding: 3rem 1.5rem;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.22);
}

.cta-card h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.cta-card p {
  font-size: 1.05rem;
  color: #e8f0ff;
  margin-bottom: 1.5rem;
}

.stats-card {
  text-align: center;
}

.stats-card span {
  display: block;
  color: #4b5563;
}

.map-placeholder {
  min-height: 240px;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, #e8f2ff 0%, #f8fafc 100%);
  border: 1px dashed #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  font-weight: 600;
}

.accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.85rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.accordion-button {
  font-weight: 600;
  color: #0f172a;
  background: #ffffff;
}

.accordion-button:not(.collapsed) {
  background: #f3f7ff;
  color: #0d6efd;
}

.page-loader {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 17, 31, 0.7);
  z-index: 2000;
}

.speedtest-page {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.speedtest-card {
  border: 1px solid #dbe7f6;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  padding: 1.1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.speedtest-card:hover {
  transform: translateY(-4px);
  border-color: #b7cdeb;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.speedtest-logo {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 132px;
  min-height: 132px;
  max-height: 132px;
  margin: 0 auto;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.speedtest-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.6rem;
}

.speedtest-logo i {
  font-size: 2rem;
  color: #2563eb;
  display: none;
}

.speedtest-logo-fallback i,
.speedtest-logo > i:only-child {
  display: inline-block;
}

.speedtest-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0;
}

.speedtest-card p {
  color: #5b708c;
}

.speedtest-card .btn {
  border-radius: 999px;
}

@media (max-width: 767.98px) {
  .speedtest-logo {
    max-width: 112px;
    min-height: 112px;
    max-height: 112px;
  }
}

.loader-ring {
  width: 3rem;
  height: 3rem;
  border: 4px solid rgba(255,255,255,0.25);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
