/* ═══════════════════════════════════════════
   AMEERANET — style.css
═══════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────── */
:root {
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;

  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --white: #ffffff;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.14);
  --shadow-blue: 0 8px 30px rgba(59,130,246,.25);
  --trans: all .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

/* ── Typography helpers ─────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section commons ────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: var(--blue-50);
  padding: .3rem .85rem;
  border-radius: 20px;
  border: 1px solid var(--blue-100);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--gray-500);
  font-size: .95rem;
  max-width: 560px;
  margin-inline: auto;
}

.section-header { margin-bottom: 1.5rem; }

/* ── Animation ──────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }


/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
#mainNav {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  padding: .85rem 0;
  transition: var(--trans);
}

#mainNav.scrolled {
  box-shadow: var(--shadow-md);
  padding: .6rem 0;
}

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.02em;
}

.brand-accent { color: var(--blue-500); }

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.nav-link {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--gray-600) !important;
  padding: .4rem .8rem !important;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.nav-link:hover { color: var(--blue-600) !important; background: var(--blue-50); }
.nav-link.active { color: var(--blue-600) !important; font-weight: 700; }

.navbar .dropdown-menu {
  border: 1px solid rgba(148, 163, 184, .22);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
  border-radius: 12px;
  padding: .45rem;
}

.navbar .dropdown-item {
  font-family: var(--font-display);
  font-size: .82rem;
  border-radius: 8px;
  padding: .45rem .62rem;
  color: var(--slate-700);
}

.navbar .dropdown-item:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

.profile-mega-menu {
  min-width: 560px;
  max-width: 620px;
  padding: .55rem;
}

.profile-mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 700;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: 10px;
  padding: .55rem .7rem;
  margin-bottom: .5rem;
}

.profile-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem;
}

.profile-mega-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: .5rem;
  text-decoration: none;
  border: 1px solid rgba(148,163,184,.2);
  border-radius: 10px;
  padding: .42rem;
  background: #fff;
  transition: all .16s ease;
}

.profile-mega-item:hover {
  border-color: rgba(59,130,246,.32);
  background: rgba(239, 246, 255, .65);
}

.profile-mega-item img,
.profile-mega-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(59,130,246,.12);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.profile-mega-item .title {
  display: block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--slate-800);
  line-height: 1.25;
}

.profile-mega-item small {
  display: block;
  margin-top: .12rem;
  font-size: .72rem;
  color: var(--slate-500);
  line-height: 1.35;
}

.profile-mega-empty {
  grid-column: 1 / -1;
  padding: .8rem .6rem;
  text-align: center;
  color: var(--slate-500);
  font-size: .8rem;
}

@media (max-width: 991.98px) {
  .profile-mega-menu {
    min-width: 100%;
    max-width: 100%;
  }

  .profile-mega-grid {
    grid-template-columns: 1fr;
  }
}

.btn-nav-cta {
  font-family: var(--font-display);

  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white !important;
  padding: .5rem 1.2rem;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--trans);
  box-shadow: var(--shadow-blue);
}
.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 35px rgba(59,130,246,.35);
  color: white !important;
}

.btn-link-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue-700);
  background: rgba(59,130,246,.10);
  border: 1px solid rgba(59,130,246,.26);
  border-radius: 999px;
  padding: .38rem .78rem;
  transition: all .18s ease;
}

.btn-link-chip:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 8px 20px rgba(59,130,246,.25);
}

.btn-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--blue-700);
  border: 1px solid rgba(59,130,246,.28);
  background: rgba(239, 246, 255, .8);
  border-radius: 10px;
  padding: .48rem .72rem;
  transition: all .16s ease;
}

.btn-readmore:hover {
  background: var(--blue-600);
  color: #fff;
  border-color: var(--blue-600);
}

.btn-back-soft {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--slate-700);
  border: 1px solid rgba(148,163,184,.3);
  background: #fff;
  border-radius: 10px;
  padding: .5rem .72rem;
  transition: all .16s ease;
}

.btn-back-soft:hover {
  color: var(--blue-700);
  border-color: rgba(59,130,246,.32);
  background: rgba(239, 246, 255, .7);
}

.btn-share-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .42rem .72rem;
  border: 1px solid transparent;
  transition: all .16s ease;
}

.btn-share-pill.share-wa {
  background: rgba(34, 197, 94, .12);
  color: #15803d;
  border-color: rgba(34, 197, 94, .32);
}

.btn-share-pill.share-fb {
  background: rgba(37, 99, 235, .12);
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, .32);
}

.btn-share-pill.share-x {
  background: rgba(15, 23, 42, .10);
  color: #0f172a;
  border-color: rgba(15, 23, 42, .2);
}

.btn-share-pill.share-copy {
  background: rgba(100, 116, 139, .12);
  color: #334155;
  border-color: rgba(100, 116, 139, .32);
}

.btn-share-pill:hover {
  transform: translateY(-1px);
  filter: brightness(.96);
}

/* ---- Coverage Mapbox ---- */
.section-coverage-mapbox {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.coverage-mapbox-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: .9rem;
}

.coverage-mapbox-panel {
  background: #fff;
  border: 1px solid rgba(148,163,184,.24);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: .85rem;
}

.coverage-mapbox-panel h5 {
  margin: 0 0 .55rem;
  font-size: .88rem;
  font-weight: 800;
  color: var(--slate-800);
}

.coverage-db-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: .36rem;
}

.coverage-db-item {
  appearance: none;
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: .52rem;
  cursor: pointer;
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 9px;
  background: #fff;
  padding: .46rem .58rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: all .16s ease;
}

.coverage-db-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: .78rem;
  color: var(--blue-600);
  background: rgba(59,130,246,.12);
}

.coverage-db-text strong {
  display: block;
  font-size: .8rem;
  line-height: 1.25;
}

.coverage-db-text small {
  display: block;
  margin-top: .08rem;
  font-size: .72rem;
  color: var(--slate-500);
  line-height: 1.3;
}

.coverage-db-item:hover,
.coverage-db-item.active {
  border-color: rgba(59,130,246,.34);
  background: rgba(239,246,255,.85);
  color: var(--blue-700);
}

.coverage-db-empty {
  border: 1px dashed rgba(148,163,184,.3);
  border-radius: 9px;
  padding: .7rem .6rem;
  text-align: center;
  color: var(--slate-500);
  font-size: .8rem;
}

.coverage-mapbox-wrap {
  border: 1px solid rgba(148,163,184,.24);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
}

#homeCoverageMap {
  width: 100%;
  min-height: 420px;
}

#homeCoverageMap .mapboxgl-ctrl-bottom-right {
  display: none !important;
}

.coverage-marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid #fff;
  box-shadow: 0 0 0 6px rgba(239,68,68,.22);
  position: relative;
}

.coverage-marker::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 2px solid rgba(239, 68, 68, .45);
  animation: coveragePulse 1.8s ease-out infinite;
}

.coverage-marker.planned {
  background: #f59e0b;
  box-shadow: 0 0 0 6px rgba(245,158,11,.2);
}

.coverage-marker.planned::after {
  border-color: rgba(245,158,11,.45);
}

@keyframes coveragePulse {
  0% { transform: scale(.72); opacity: .85; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ---- Coverage Full Map Page ---- */
.section-coverage-full {
  padding: 26px 0 46px;
  background: #f8fafc;
}

.coverage-full-head {
  margin-bottom: .7rem;
}

.coverage-full-map-wrap {
  position: relative;
  margin: 0 auto;
  width: min(1400px, calc(100vw - 32px));
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.24);
  box-shadow: 0 14px 36px rgba(15,23,42,.12);
}

#coverageFullMap {
  width: 100%;
  height: calc(100vh - 220px);
  min-height: 560px;
}

#coverageFullMap .mapboxgl-popup-content {
  border-radius: 12px;
  padding: .62rem .7rem .66rem;
  border: 1px solid rgba(148,163,184,.24);
  box-shadow: 0 10px 28px rgba(15,23,42,.18);
}

#coverageFullMap .mapboxgl-popup-tip {
  border-top-color: #fff;
}

.coverage-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  margin-bottom: .32rem;
}

.coverage-popup-head strong {
  font-size: .83rem;
  color: #0f172a;
  line-height: 1.25;
}

.coverage-popup p {
  margin: 0;
  font-size: .75rem;
  color: #475569;
  line-height: 1.38;
}

.coverage-popup-badge {
  font-size: .64rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .24rem .38rem;
}

.coverage-popup-badge.is-active {
  color: #166534;
  background: rgba(34,197,94,.16);
}

.coverage-popup-badge.is-planned {
  color: #92400e;
  background: rgba(245,158,11,.2);
}

.coverage-full-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: .9rem;
  color: #64748b;
  background: rgba(255,255,255,.86);
}

@media (max-width: 991.98px) {
  .section-coverage-full {
    padding: 20px 0 34px;
  }

  .coverage-full-map-wrap {
    width: calc(100vw - 20px);
    border-radius: 12px;
  }

  #coverageFullMap {
    height: calc(100vh - 190px);
    min-height: 460px;
  }
}

@media (max-width: 991.98px) {
  .coverage-mapbox-grid {
    grid-template-columns: 1fr;
  }
}

/* Hamburger */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: .4rem;
  outline: none !important;
  box-shadow: none !important;
}
.toggler-icon {
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
}
.toggler-icon span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-700); border-radius: 2px;
  transition: var(--trans);
}


/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero-section {
  position: relative;
  background: linear-gradient(160deg, var(--gray-900) 0%, #0c1a35 45%, #0a1628 100%);
  overflow: hidden;
  padding-top: 0;
}

.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(59,130,246,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(29,78,216,.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: .75rem; font-weight: 600;
  color: white;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.25);
  padding: .35rem .9rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: white;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Buttons */
.btn-primary-main {
  font-family: var(--font-display);
  font-weight: 600; font-size: .9rem;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white !important;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-md);
  border: none; text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: var(--trans);
  box-shadow: var(--shadow-blue);
}
.btn-primary-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59,130,246,.4);
}

.btn-outline-main {
  font-family: var(--font-display);
  font-weight: 600; font-size: .9rem;
  background: transparent;
  color: rgba(255,255,255,.85) !important;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.2);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: var(--trans);
}
.btn-outline-main:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
}

/* Stats */
.hero-stats { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); }

.stat-item {
  display: flex; flex-direction: column; gap: .15rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  color: white; line-height: 1;
}
.stat-plus { color: var(--blue-400); }
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.1);
  align-self: center;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}

.signal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,.25);
  animation: pulse-ring 3s ease-out infinite;
}
.ring-1 { width: 120px; height: 120px; animation-delay: 0s; }
.ring-2 { width: 200px; height: 200px; animation-delay: .8s; }
.ring-3 { width: 300px; height: 300px; animation-delay: 1.6s; }

@keyframes pulse-ring {
  0%   { transform: scale(.95); opacity: .6; }
  50%  { transform: scale(1);   opacity: .2; }
  100% { transform: scale(.95); opacity: .6; }
}

.hero-device {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-800));
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: white;
  box-shadow: 0 0 0 6px rgba(59,130,246,.15), var(--shadow-xl);
  position: relative; z-index: 2;
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: .6rem 1rem;
  display: flex; align-items: center; gap: .7rem;
  font-size: .78rem; color: white;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.float-badge i { font-size: 1.2rem; color: var(--blue-400); }
.fb-label { display: block; font-size: .65rem; color: rgba(255,255,255,.4); letter-spacing: .05em; }
.fb-val   { display: block; font-family: var(--font-display); font-weight: 700; color: white; }

.badge-speed { top: 30px;  right: -20px; animation-delay: 0s; }
.badge-ping  { bottom: 60px; left: -30px; animation-delay: 1.3s; }
.badge-uptime{ bottom: 10px; right: 10px; animation-delay: 0.7s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Wave divider */
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  line-height: 0; pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; }

/* Ping SVG animation */
.ping-circle {
  animation: ping-expand 2.5s ease-out infinite;
}
@keyframes ping-expand {
  0%   { r: 8;  opacity: .8; }
  100% { r: 40; opacity: 0; }
}


/* ═══════════════════════════════════════
   PAKET INTERNET
═══════════════════════════════════════ */
.section-paket {
  background: var(--gray-50);
  padding: 100px 0 80px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}

.pricing-card.popular {
  background: linear-gradient(160deg, #0c1a35 0%, #1e3a8a 100%);
  border: 1px solid var(--blue-700);
  box-shadow: var(--shadow-blue);
}
.pricing-card.popular:hover {
  box-shadow: 0 16px 50px rgba(59,130,246,.4);
}

.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: .7rem; font-weight: 700;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: white;
  padding: .3rem .9rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
}

.pc-header { margin-bottom: 1.25rem; }

.pc-icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--blue-500);
  margin-bottom: .85rem;
}
.popular .pc-icon { background: rgba(255,255,255,.1); color: var(--blue-200); }

.pc-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  color: var(--gray-900);
  margin-bottom: .25rem;
}
.popular .pc-name { color: white; }

.pc-desc { font-size: .8rem; color: var(--gray-400); margin: 0; }
.popular .pc-desc { color: rgba(255,255,255,.5); }

.pc-speed {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 900;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: .25rem;
}
.pc-speed span { font-size: 1rem; font-weight: 600; color: var(--gray-400); }
.popular .pc-speed { color: white; }
.popular .pc-speed span { color: rgba(255,255,255,.5); }

.pc-price {
  display: flex; align-items: baseline; gap: .2rem;
  padding: .75rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 1.25rem;
}
.popular .pc-price { border-color: rgba(255,255,255,.1); }

.pc-currency { font-family: var(--font-display); font-size: .85rem; font-weight: 600; color: var(--gray-500); }
.pc-amount   { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--gray-900); }
.pc-period   { font-size: .8rem; color: var(--gray-400); }
.popular .pc-currency, .popular .pc-amount, .popular .pc-period { color: rgba(255,255,255,.9); }

.pc-features {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  flex: 1; display: flex; flex-direction: column; gap: .6rem;
}
.pc-features li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .84rem; color: var(--gray-600);
}
.pc-features li i { font-size: 1rem; color: var(--blue-500); }
.pc-features li.muted { color: var(--gray-300); }
.pc-features li.muted i { color: var(--gray-200); }
.popular .pc-features li { color: rgba(255,255,255,.75); }
.popular .pc-features li i { color: var(--blue-300); }

.btn-pc {
  font-family: var(--font-display); font-weight: 600; font-size: .87rem;
  background: var(--blue-50); color: var(--blue-600) !important;
  padding: .7rem 1rem; border-radius: var(--radius-md);
  border: 1px solid var(--blue-100); text-decoration: none;
  text-align: center; transition: var(--trans);
}
.btn-pc:hover {
  background: var(--blue-500); color: white !important;
  border-color: var(--blue-500);
  box-shadow: var(--shadow-blue);
}

.btn-pc-popular {
  font-family: var(--font-display); font-weight: 700; font-size: .87rem;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
  color: white !important; padding: .75rem 1rem;
  border-radius: var(--radius-md); border: none;
  text-decoration: none; text-align: center; transition: var(--trans);
  box-shadow: 0 4px 15px rgba(59,130,246,.4);
}
.btn-pc-popular:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59,130,246,.5);
}

.pricing-note {
  font-size: .82rem; color: var(--gray-400);
}


/* ═══════════════════════════════════════
   COVERAGE AREA
═══════════════════════════════════════ */
.section-coverage {
  padding: 100px 0;
  background: white;
}

.coverage-map-wrap {
  position: relative;
}
.map-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(59,130,246,.15) 0%, transparent 70%);
  pointer-events: none;
}

.map-container {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.map-svg { width: 100%; height: auto; }

.map-legend { margin-top: .5rem; }
.legend-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .75rem; color: var(--gray-500);
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-primary { background: var(--blue-500); }
.dot-secondary { background: var(--blue-200); }

/* Coverage list */
.coverage-grid {
  display: flex; flex-direction: column; gap: .75rem;
}

.coverage-area-item {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  background: var(--gray-50);
  transition: var(--trans);
}
.coverage-area-item:hover { border-color: var(--blue-200); background: var(--blue-50); }

.coverage-area-item i { font-size: 1rem; margin-top: .1rem; flex-shrink: 0; }
.coverage-area-item.active i { color: var(--blue-500); }
.coverage-area-item.soon  i { color: var(--gray-300); }

.coverage-area-item strong { display: block; font-size: .87rem; color: var(--gray-800); font-weight: 600; }
.coverage-area-item span   { font-size: .78rem; color: var(--gray-400); }

.coverage-area-item.soon strong { color: var(--gray-400); }


/* ═══════════════════════════════════════
   KEUNGGULAN / FEATURES
═══════════════════════════════════════ */
.section-features {
  background: var(--gray-50);
  padding: 100px 0;
}

.feature-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  height: 100%;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}

.fc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--icon-color) 10%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--icon-color);
  margin-bottom: 1.1rem;
  transition: var(--trans);
}
.feature-card:hover .fc-icon {
  background: color-mix(in srgb, var(--icon-color) 18%, transparent);
  transform: scale(1.05);
}

.fc-title {
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 700;
  color: var(--gray-900); margin-bottom: .5rem;
}

.fc-desc { font-size: .83rem; color: var(--gray-500); line-height: 1.6; margin: 0; }

.layanan-acuan {
  background:
    radial-gradient(circle at 12% 10%, rgba(59,130,246,.09), transparent 24%),
    radial-gradient(circle at 90% 20%, rgba(14,165,233,.09), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
}

.layanan-acuan .section-eyebrow {
  color: var(--blue-700);
  background: rgba(59,130,246,.1);
  border-color: rgba(59,130,246,.24);
}

.layanan-acuan .feature-card {
  border-color: rgba(148,163,184,.2);
}

.layanan-acuan .feature-card:hover {
  border-color: rgba(59,130,246,.34);
  box-shadow: 0 14px 34px rgba(37,99,235,.14);
}

.layanan-acuan .fc-title {
  color: #0f172a;
}

.layanan-acuan .fc-desc {
  color: #475569;
}

/* ---- Paket (Acuan Tone) ---- */
.paket-acuan {
  background:
    radial-gradient(circle at 12% 10%, rgba(59,130,246,.09), transparent 24%),
    radial-gradient(circle at 90% 20%, rgba(14,165,233,.09), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
}

.paket-acuan .section-eyebrow {
  color: var(--blue-700);
  background: rgba(59,130,246,.1);
  border-color: rgba(59,130,246,.24);
}

.paket-acuan .pricing-card {
  border-color: rgba(148,163,184,.22);
}

.paket-acuan .pricing-card:hover {
  border-color: rgba(59,130,246,.36);
  box-shadow: 0 16px 40px rgba(37,99,235,.16);
}

.paket-acuan .pricing-card.popular {
  background: linear-gradient(160deg, #153a8a 0%, #1d4ed8 100%);
  border-color: rgba(59,130,246,.46);
  box-shadow: 0 16px 42px rgba(37,99,235,.28);
}

.paket-swiper-wrap {
  position: relative;
  padding-inline: .2rem;
}

.paket-swiper {
  padding-top: 16px;
  padding-bottom: 14px;
  overflow: visible !important;
}

.paket-swiper .swiper-slide {
  height: auto;
  padding-bottom: 8px;
}

.paket-swiper .pricing-card {
  height: 100%;
  margin-top: 2px;
}

.paket-swiper .swiper-wrapper {
  align-items: stretch;
}

.paket-swiper-prev,
.paket-swiper-next {
  width: 36px !important;
  height: 36px !important;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(148,163,184,.3);
  box-shadow: 0 6px 18px rgba(15,23,42,.10);
  color: var(--blue-700) !important;
}

.paket-swiper-prev::after,
.paket-swiper-next::after {
  font-size: .88rem !important;
  font-weight: 700;
}

.paket-swiper-prev {
  left: -6px !important;
}

.paket-swiper-next {
  right: -6px !important;
}

.paket-swiper-pagination {
  position: static !important;
  margin-top: .8rem;
}

.paket-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(59,130,246,.35);
  opacity: 1;
}

.paket-swiper-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: var(--blue-600);
}

@media (max-width: 767.98px) {
  .paket-swiper {
    padding-top: 14px;
  }

  .paket-swiper-prev,
  .paket-swiper-next {
    display: none !important;
  }
}

/* ---- Profil Detail Pro ---- */
.profil-pro-page {
  background: #f8fafc;
}

.profil-pro-card {
  border: 1px solid rgba(148,163,184,.2);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(15,23,42,.05);
}

.profil-pro-head {
  padding: 1.2rem 1.25rem .3rem;
}

.profil-pro-head .section-eyebrow {
  color: var(--blue-700);
  background: rgba(59,130,246,.10);
  border-color: rgba(59,130,246,.22);
}

.profil-pro-head .section-title {
  color: #0f172a;
}

.profil-pro-meta {
  margin: .45rem 0 0;
  font-size: .84rem;
  color: #64748b;
}

.profil-pro-image-wrap {
  padding: 1.05rem 1.05rem 0;
}

.profil-pro-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.22);
}

.profil-pro-content {
  padding: 1.1rem 1.25rem 1.4rem;
  font-size: 1rem;
  line-height: 1.82;
  color: #334155;
}

.profil-pro-content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .profil-pro-head {
    padding: 1.4rem 1.75rem .35rem;
  }

  .profil-pro-image-wrap {
    padding: 1.2rem 1.75rem 0;
  }

  .profil-pro-content {
    padding: 1.2rem 1.75rem 1.75rem;
  }
}

/* ---- News Page ---- */
.news-search-form {
  max-width: 700px;
  margin-inline: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .6rem;
}

.news-search-icon {
  position: absolute;
  left: .95rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: .85rem;
}

.news-search-form input {
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.28);
  background: #fff;
  padding: 0 .95rem 0 2.15rem;
  font-size: .88rem;
  color: #0f172a;
}

.news-search-form input:focus {
  outline: none;
  border-color: rgba(59,130,246,.45);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}

.news-search-form button {
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  padding: 0 1rem;
}

.news-card {
  background: #fff;
  border: 1px solid rgba(148,163,184,.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15,23,42,.06);
  height: 100%;
}

.news-card-image-link {
  display: block;
}

.news-card-image {
  width: 100%;
  height: 188px;
  object-fit: cover;
  background: #e2e8f0;
}

.news-card-image--placeholder {
  display: grid;
  place-items: center;
  color: #94a3b8;
  font-size: 1.4rem;
}

.news-card-body {
  padding: .92rem;
}

.news-card-meta {
  margin-bottom: .4rem;
  font-size: .74rem;
  color: #64748b;
}

.news-card-title {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 .46rem;
}

.news-card-title a {
  color: #0f172a;
  text-decoration: none;
}

.news-card-title a:hover {
  color: #1d4ed8;
}

.news-card-excerpt {
  margin: 0 0 .75rem;
  font-size: .83rem;
  color: #475569;
  line-height: 1.58;
}

.news-pagination-wrap nav {
  margin: 0;
}

.news-mini-card {
  background: #fff;
  border: 1px solid rgba(148,163,184,.2);
  border-radius: 12px;
  overflow: hidden;
}

.news-mini-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  background: #e2e8f0;
}

.news-mini-image--placeholder {
  display: grid;
  place-items: center;
  color: #94a3b8;
  font-size: 1.2rem;
}

.news-mini-body {
  padding: .72rem .75rem;
}

.news-mini-title {
  margin: 0 0 .28rem;
  font-size: .84rem;
  line-height: 1.45;
  color: #0f172a;
}

/* ---- Gallery Lightbox ---- */
.gallery-open-btn {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

.gallery-open-btn img {
  transition: transform .22s ease;
}

.gallery-open-overlay {
  position: absolute;
  right: .7rem;
  top: .7rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15,23,42,.62);
  color: #fff;
  opacity: 0;
  transition: opacity .18s ease;
}

.gallery-open-btn:hover img {
  transform: scale(1.02);
}

.gallery-open-btn:hover .gallery-open-overlay {
  opacity: 1;
}

.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.gallery-lightbox.is-open {
  display: block;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,.7);
  backdrop-filter: blur(2px);
}

.gallery-lightbox-dialog {
  position: relative;
  width: min(920px, calc(100vw - 28px));
  margin: 4vh auto 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2,6,23,.35);
  animation: galleryPop .2s ease;
}

.gallery-lightbox-close {
  position: absolute;
  top: .55rem;
  right: .55rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15,23,42,.62);
  color: #fff;
}

.gallery-lightbox-media-wrap {
  background: #0f172a;
}

.gallery-lightbox-media {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
}

.gallery-lightbox-info {
  padding: .85rem 1rem 1rem;
}

.gallery-lightbox-info h3 {
  margin: 0;
  font-size: 1rem;
  color: #0f172a;
}

.gallery-lightbox-info p {
  margin: .2rem 0 0;
  font-size: .82rem;
  color: #64748b;
}

@keyframes galleryPop {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 575.98px) {
  .news-search-form {
    grid-template-columns: 1fr;
  }

  .news-search-form button {
    width: 100%;
  }
}


/* ═══════════════════════════════════════
   TESTIMONI
═══════════════════════════════════════ */
.section-testimoni {
  background: white;
  padding: 100px 0;
}

.testi-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  height: 100%;
  display: flex; flex-direction: column; gap: 1rem;
  transition: var(--trans);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}

.testi-card.featured-testi {
  background: linear-gradient(160deg, #0c1a35 0%, #1e3a8a 100%);
  border-color: var(--blue-700);
  box-shadow: var(--shadow-blue);
}
.testi-card.featured-testi:hover {
  box-shadow: 0 14px 45px rgba(59,130,246,.35);
}

.testi-stars { color: #f59e0b; font-size: .85rem; display: flex; gap: .1rem; }

.testi-text {
  font-size: .87rem; color: var(--gray-600);
  line-height: 1.7; flex: 1; font-style: italic;
}
.featured-testi .testi-text { color: rgba(255,255,255,.7); }

.testi-avatar {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--av-color, var(--blue-500));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: .82rem; color: white;
}

.testi-author strong { display: block; font-size: .87rem; color: var(--gray-800); font-weight: 600; }
.testi-author span   { font-size: .74rem; color: var(--gray-400); }
.featured-testi .testi-author strong { color: white; }
.featured-testi .testi-author span   { color: rgba(255,255,255,.4); }


/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.section-cta {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--gray-50);
}
.cta-bg-shape {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(59,130,246,.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card {
  background: linear-gradient(145deg, #0c1a35 0%, #1a3167 60%, #1e3a8a 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(59,130,246,.2) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900; color: white;
  line-height: 1.2; margin-bottom: .75rem;
  position: relative;
}
.cta-sub {
  color: rgba(255,255,255,.6); font-size: .9rem;
  max-width: 460px; line-height: 1.7;
  position: relative;
}
.cta-sub strong { color: rgba(255,255,255,.9); }

.btn-cta-wa {
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  background: #25d366; color: white !important;
  padding: .8rem 1.8rem; border-radius: var(--radius-md);
  border: none; text-decoration: none;
  display: inline-flex; align-items: center;
  transition: var(--trans);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.btn-cta-wa:hover {
  background: #1db354;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
}

.btn-cta-outline {
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  background: transparent; color: rgba(255,255,255,.85) !important;
  padding: .8rem 1.8rem; border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.2);
  text-decoration: none; display: inline-flex; align-items: center;
  transition: var(--trans);
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4);
}

.cta-info-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  width: 100%; max-width: 300px;
  position: relative;
}

.cib-item {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cib-item i { font-size: 1.1rem; color: var(--blue-400); margin-top: .1rem; flex-shrink: 0; }
.cib-label { display: block; font-size: .68rem; color: rgba(255,255,255,.4); letter-spacing: .05em; text-transform: uppercase; margin-bottom: .1rem; }
.cib-val   { display: block; font-family: var(--font-display); font-size: .88rem; font-weight: 600; color: white; }


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.6);
  padding: 70px 0 0;
}

.footer-desc { font-size: .85rem; line-height: 1.7; max-width: 300px; }

.social-links { gap: .5rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .95rem;
  text-decoration: none; transition: var(--trans);
}
.social-btn:hover {
  background: var(--blue-600);
  border-color: var(--blue-500);
  color: white;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 700;
  color: white; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .6rem;
}
.footer-links a {
  color: rgba(255,255,255,.5); text-decoration: none;
  font-size: .84rem; transition: var(--trans);
}
.footer-links a:hover { color: var(--blue-400); padding-left: 4px; }

.footer-contact {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .75rem;
}
.footer-contact li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .83rem; color: rgba(255,255,255,.5);
}
.footer-contact li i { color: var(--blue-400); margin-top: .15rem; flex-shrink: 0; }

.footer-bottom {
  margin-top: 3rem; padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .78rem;
}
.footer-credit i { margin: 0 .1rem; }


/* ═══════════════════════════════════════
  GO TOP ORBIT
═══════════════════════════════════════ */
.go-top-orbit {
  --orbit-size: 64px;
  --ring-len: 151;
  position: fixed;
  right: 26px;
  bottom: 24px;
  width: var(--orbit-size);
  height: var(--orbit-size);
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(15,23,42,.84);
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.88) rotate(-12deg);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
  box-shadow: 0 14px 35px rgba(15,23,42,.34), 0 0 0 1px rgba(255,255,255,.08) inset;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.go-top-orbit::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px dashed rgba(96,165,250,.4);
  animation: orbit-spin 5s linear infinite;
}

.go-top-orbit::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-400);
  box-shadow: 0 0 14px rgba(96,165,250,.9);
}

.go-top-orbit.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1) rotate(0deg);
}

.go-top-orbit:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 40px rgba(15,23,42,.4), 0 0 0 1px rgba(191,219,254,.3) inset;
}

.go-top-orbit-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.go-top-orbit-track,
.go-top-orbit-progress {
  fill: none;
  stroke-width: 4;
}

.go-top-orbit-track {
  stroke: rgba(255,255,255,.14);
}

.go-top-orbit-progress {
  stroke: var(--blue-400);
  stroke-linecap: round;
  stroke-dasharray: var(--ring-len);
  stroke-dashoffset: var(--ring-len);
  transition: stroke-dashoffset .15s linear;
}

.go-top-orbit-core {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(59,130,246,.22), rgba(59,130,246,.06));
  border: 1px solid rgba(191,219,254,.3);
  box-shadow: 0 0 14px rgba(59,130,246,.3);
}

.go-top-orbit-core i {
  font-size: .9rem;
  color: #dbeafe;
}

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


/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-visual { width: 280px; height: 280px; }
  .badge-speed { right: 0; }
  .badge-ping  { left: 0; }
  .cta-card    { padding: 2.5rem 1.75rem; }
  .cta-info-box{ max-width: 100%; }
}

@media (max-width: 767px) {
  .section-paket,
  .section-coverage,
  .section-features,
  .section-testimoni { padding: 70px 0; }

  .hero-visual { width: 240px; height: 240px; }
  .ring-3 { width: 230px; height: 230px; }
  .float-badge { display: none; }

  .cta-card { padding: 2rem 1.25rem; }

  .stat-divider { display: none; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 575px) {
  .hero-headline { font-size: 2rem; }
  .hero-sub { font-size: .9rem; }
  .btn-primary-main, .btn-outline-main { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .go-top-orbit {
    right: 14px;
    bottom: 14px;
    --orbit-size: 56px;
  }
}
