/* ══════════════════════════════════════════
   sections.css – Why, Paket, Coverage,
                  Testimoni, Steps, CTA
══════════════════════════════════════════ */

/* ────────────────────────────────────────
   WHY SECTION
──────────────────────────────────────── */
.why-section { background: var(--gray-100); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

/* Visual card */
.why-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
}
.why-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--blue-dark) 0%, transparent 60%);
}
.why-card {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 18px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
}
.uptime-ring {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 3px solid var(--blue-glow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 800;
  color: var(--blue-glow);
  flex-shrink: 0;
}
.uptime-text { font-size: 0.82rem; opacity: 0.85; }
.uptime-text strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

/* Feature list */
.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition), transform 0.25s;
}
.why-feat:hover {
  transform: translateX(6px);
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-md);
}
.feat-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(30,92,220,0.28);
  flex-shrink: 0;
}
.feat-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.feat-desc {
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ────────────────────────────────────────
   PAKET SECTION
──────────────────────────────────────── */
.paket-section { background: var(--white); }

.pkg-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pkg-card {
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  overflow: hidden;
  position: relative;
  transition: var(--transition), transform 0.3s;
  box-shadow: var(--shadow-sm);
}
.pkg-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-lg);
}
.pkg-card.popular {
  border-color: var(--blue-bright);
  box-shadow: 0 8px 30px rgba(30,92,220,0.18);
}

.popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-accent));
  color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pkg-head {
  padding: 26px 24px 22px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  color: #fff;
}
.pkg-card.popular .pkg-head {
  background: linear-gradient(135deg, var(--blue-bright) 0%, #3b82f6 100%);
}

.pkg-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
}
.pkg-speed {
  font-family: var(--font-head);
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1;
  margin: 10px 0 4px;
}
.pkg-speed span { font-size: 1rem; font-weight: 400; opacity: 0.68; }
.pkg-type { font-size: 0.8rem; opacity: 0.62; }

.pkg-body { padding: 22px 24px 24px; }

.pkg-price {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue-bright);
  margin-bottom: 18px;
}
.pkg-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-700);
}
.pkg-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.btn-pkg {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid var(--blue-bright);
  color: var(--blue-bright);
  transition: var(--transition);
}
.btn-pkg:hover {
  background: var(--blue-bright);
  color: #fff;
}
.pkg-card.popular .btn-pkg {
  background: linear-gradient(135deg, var(--blue-bright), #3b82f6);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(30,92,220,0.32);
}
.pkg-card.popular .btn-pkg:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30,92,220,0.48);
}

/* ────────────────────────────────────────
   COVERAGE SECTION
──────────────────────────────────────── */
.coverage-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
}
.coverage-section .section-tag  { color: var(--blue-glow); }
.coverage-section .section-title{ color: #fff; }
.coverage-section .section-title span { color: var(--blue-glow); }
.coverage-section .section-sub  { color: rgba(255,255,255,0.62); }

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.coverage-info .section-header { margin-bottom: 0; }

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.area-chip {
  padding: 7px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(59,130,246,0.28);
  color: rgba(255,255,255,0.78);
  font-size: 0.84rem;
  transition: var(--transition);
}
.area-chip:hover {
  background: rgba(59,130,246,0.2);
  border-color: var(--blue-glow);
  color: #fff;
}

.coverage-cta { margin-top: 28px; }

/* Map */
.coverage-map {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: var(--radius-lg);
  padding: 30px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.coverage-map::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(59,130,246,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.map-dot {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--blue-glow);
}
.map-dot::after {
  content: '';
  position: absolute;
  top: -4px; left: -4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--blue-glow);
  opacity: 0;
  animation: ping 2s infinite;
}
.map-dot:nth-child(2)::after { animation-delay: 0.55s; }
.map-dot:nth-child(3)::after { animation-delay: 1.1s; }
.map-dot:nth-child(4)::after { animation-delay: 0.28s; }

.map-placeholder {
  text-align: center;
  pointer-events: none;
  z-index: 1;
}
.map-placeholder p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 10px;
}
.map-placeholder small {
  color: rgba(255,255,255,0.32);
  font-size: 0.75rem;
  margin-top: 4px;
  display: block;
}

/* ────────────────────────────────────────
   TESTIMONI SECTION
──────────────────────────────────────── */
.testi-section { background: var(--gray-100); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition), transform 0.3s;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.72;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.testi-loc {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-top: 2px;
}

/* ────────────────────────────────────────
   STEPS SECTION
──────────────────────────────────────── */
.steps-section { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.step-card {
  text-align: center;
  padding: 30px 18px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-5px); }

.step-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 14px;
}

.step-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 22px rgba(30,92,220,0.28);
}

.step-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ────────────────────────────────────────
   CTA BANNER SECTION
──────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.cta-wrap {
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-wrap h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-wrap > p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 34px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 22px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42) !important;
}

/* ══════════════════════════════════════════
   RESPONSIVE – SECTIONS
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .why-grid      { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-map  { aspect-ratio: 16/9; }
  .testi-grid    { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .pkg-grid      { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pkg-header    { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  section { padding: 60px 0; }
  .steps-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}
