/* ==========================================================================
   NETSTREAM GLOBAL STYLESHEET
   ========================================================================== */

:root {
  --bg: #080B14;
  --bg-2: #0D111F;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #F3F5FC;
  --muted: #8990AC;
  --muted-soft: #5D6483;
  --violet: #7C6CF6;
  --cyan: #2DD9E8;
  --amber: #FFB020;
  --green: #34D399;
  --grad-cta: linear-gradient(120deg, #FFB020, #FF8A3D);
  --grad-brand: linear-gradient(120deg, #7C6CF6, #2DD9E8);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

/* ---------- RESET & BASE ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, .display {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow {
  max-width: 760px;
}

::selection {
  background: var(--amber);
  color: #0A0A0A;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- AMBIENT ELEMENTS ---------- */
.mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(680px 480px at 82% -6%, rgba(124, 108, 246, 0.24), transparent 60%),
    radial-gradient(560px 420px at 8% 18%, rgba(45, 217, 232, 0.14), transparent 65%),
    radial-gradient(500px 400px at 60% 90%, rgba(255, 176, 32, 0.08), transparent 65%),
    var(--bg);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  background: var(--grad-cta);
  color: #1A0F00;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(255, 176, 32, 0.25);
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 26px;
  border-radius: 100px;
  background: var(--surface);
  transition: background-color 0.2s;
}

.btn-ghost:hover {
  background: var(--surface-hover);
}

/* ---------- GENERAL CARD ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-hover);
}

/* ==========================================================================
   HEADER & NAVBAR (RESPONSIVE OFFCANVAS)
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 14px;
}

header.header-simple {
  position: relative;
  padding: 28px 24px;
  z-index: 10;
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 17, 31, 0.65);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.navbar.navbar-simple {
  max-width: 760px;
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 800;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-links {
  display: flex;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  padding: 9px 15px;
  border-radius: 100px;
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--surface-hover);
}

.nav-cta {
  background: var(--grad-cta);
  color: #1A0F00;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(255, 176, 32, 0.25);
  transition: filter 0.15s;
}

.nav-cta:hover {
  filter: brightness(1.05);
}

.back-link {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-link:hover {
  color: var(--text);
}

/* ---------- HAMBURGER BUTTON ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- OFFCANVAS SIDEBAR ---------- */
.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(8, 11, 20, 0.65);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.offcanvas-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85%;
  height: 100%;
  height: 100dvh;
  z-index: 999;
  background: rgba(13, 17, 31, 0.96);
  backdrop-filter: blur(24px) saturate(140%);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.offcanvas.open {
  transform: translateX(0);
}

.offcanvas-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.offcanvas-header .logo {
  font-size: 16px;
}

.offcanvas-close {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offcanvas-close:hover {
  color: var(--text);
}

.offcanvas-body {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  overflow-y: auto;
}

.offcanvas-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offcanvas-nav a {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background-color 0.2s, transform 0.2s;
}

.offcanvas-nav a:hover {
  color: var(--text);
  background-color: var(--surface-hover);
  transform: translateX(4px);
}

.offcanvas-footer {
  margin-top: auto;
  padding-top: 24px;
}

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .navbar .nav-cta {
    display: none;
  }
}

/* ==========================================================================
   PAGE SPECIFIC: HERO & HEADER
   ========================================================================== */

.page-head {
  padding: 70px 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#particles-js {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-head .eyebrow, .page-head h1, .page-head p {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--cyan);
  background: rgba(45, 217, 232, 0.08);
  border: 1px solid rgba(45, 217, 232, 0.28);
  padding: 8px 15px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.page-head .eyebrow {
  margin-bottom: 22px;
}

.page-head h1 {
  font-size: clamp(32px, 4.6vw, 48px);
  margin-bottom: 16px;
}

.page-head p {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- HERO ---------- */
.hero {
  padding: 88px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 660px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.02;
  margin-bottom: 24px;
}

.hero h1 .grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 38px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* ---------- FLOATING STATUS CARD ---------- */
.status-card {
  position: absolute;
  top: 8%;
  right: 0;
  width: 280px;
  background: rgba(13, 17, 31, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50% { transform: translateY(-14px) rotate(-0.5deg); }
}

@media (max-width: 980px) {
  .status-card {
    display: none;
  }
}

.status-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.status-top span {
  font-size: 11.5px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}

.status-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--cyan);
}

.status-speed {
  font-family: 'JetBrains Mono', monospace;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 4px;
}

.status-speed span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.status-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 34px;
  margin: 14px 0;
}

.status-bars i {
  flex: 1;
  background: var(--grad-brand);
  border-radius: 3px;
  opacity: 0.85;
  animation: barpulse 2.4s ease-in-out infinite;
}

.status-bars i:nth-child(1) { height: 35%; animation-delay: 0s; }
.status-bars i:nth-child(2) { height: 60%; animation-delay: 0.2s; }
.status-bars i:nth-child(3) { height: 100%; animation-delay: 0.4s; }
.status-bars i:nth-child(4) { height: 75%; animation-delay: 0.6s; }
.status-bars i:nth-child(5) { height: 45%; animation-delay: 0.8s; }

@keyframes barpulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.status-foot {
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.hero-stats b {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 27px;
}

.hero-stats span {
  font-size: 13px;
  color: var(--muted);
}

/* ==========================================================================
   SECTION SHARED
   ========================================================================== */

section {
  padding: 100px 24px;
  position: relative;
}

.section-head {
  max-width: 580px;
  margin-bottom: 56px;
}

.section-head .eyebrow-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: block;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

/* ==========================================================================
   BENTO FEATURES
   ========================================================================== */

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 16px;
}

.bento .b1 { grid-column: span 2; grid-row: span 2; }
.bento .b2 { grid-column: span 2; }
.bento .b3 { grid-column: span 1; }
.bento .b4 { grid-column: span 1; }

@media (max-width: 900px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento .b1 {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  .bento {
    grid-template-columns: 1fr;
  }
  .bento .card {
    grid-column: span 1 !important;
    grid-row: auto !important;
  }
}

.bento .card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento .fi {
  font-size: 28px;
  margin-bottom: auto;
}

.bento h3 {
  font-size: 18px;
  margin: 14px 0 8px;
}

.bento p {
  font-size: 14px;
  color: var(--muted);
}

.bento .b1 .fi {
  font-size: 36px;
}

.bento .b1 h3 {
  font-size: 22px;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */

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

@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service {
  padding: 30px;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.service h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.service p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.service ul {
  list-style: none;
}

.service li {
  font-size: 13px;
  color: var(--muted-soft);
  padding: 6px 0;
  border-top: 1px solid var(--border);
}

.service li:first-child {
  border-top: none;
}

/* ==========================================================================
   PACKAGES
   ========================================================================== */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 1300px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

.pkg {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pkg.featured {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
    var(--grad-brand) border-box;
}

.pkg.featured:hover {
  transform: translateY(-6px);
}

.pkg-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--grad-cta);
  color: #1A0F00;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
}

.pkg-name {
  font-size: 12px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pkg-speed {
  font-size: 30px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  margin-bottom: 4px;
}

.pkg-speed span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.pkg-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  color: var(--cyan);
  margin: 16px 0 20px;
}

.pkg-price span {
  font-size: 12.5px;
  color: var(--muted);
}

.pkg-list {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pkg-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 7px 0;
  border-top: 1px solid var(--border);
}

.pkg-list li:first-child {
  border-top: none;
}

.pkg-list li b {
  color: var(--text);
  font-weight: 600;
}

.pkg-btn {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 13px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.pkg.featured .pkg-btn {
  background: var(--grad-cta);
  color: #1A0F00;
  border: none;
}

.pkg-btn:hover {
  border-color: var(--cyan);
  background: var(--surface-hover);
}

.fineprint {
  font-size: 12.5px;
  color: var(--muted-soft);
  margin-top: 22px;
}

/* ==========================================================================
   HOW IT WORKS (STEPS)
   ========================================================================== */

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

@media (max-width: 800px) {
  .steps-row {
    grid-template-columns: 1fr;
  }
}

.step {
  padding: 28px;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14.5px;
  color: var(--muted);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.rating-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.rating-score {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 34px;
}

.rating-stars {
  color: var(--amber);
  font-size: 16px;
  letter-spacing: 2px;
}

.rating-summary .rs-meta {
  font-size: 13px;
  color: var(--muted);
}

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

@media (max-width: 900px) {
  .testimoni-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .testimoni-grid {
    grid-template-columns: 1fr;
  }
}

.testimoni {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.testimoni-stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimoni p.quote {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimoni-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimoni-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad-brand);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #0A0A0A;
  overflow: hidden;
}

.testimoni-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimoni-author .name {
  font-size: 13.5px;
  font-weight: 600;
}

.testimoni-author .loc {
  font-size: 12px;
  color: var(--muted-soft);
}

/* ==========================================================================
   HOMEPAGE CTA & REGISTRATION SECTIONS
   ========================================================================== */

.register {
  scroll-margin-top: 100px;
}

.register-box {
  border-radius: 32px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 860px) {
  .register-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

.register-info h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
}

.register-info p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.register-info .badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.register-info .badge .ic {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(45, 217, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  font-size: 14px;
}

/* ---------- GENERAL FORM LAYOUT ---------- */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field label {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 7px;
  font-weight: 500;
}

.field .opt {
  color: var(--muted-soft);
  font-weight: 400;
}

.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.15s, background-color 0.15s;
}

.field textarea {
  resize: vertical;
  min-height: 78px;
}

.field input::placeholder, .field textarea::placeholder {
  color: var(--muted-soft);
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--cyan);
  background: rgba(45, 217, 232, 0.04);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 500px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.submit-btn {
  margin-top: 6px;
  background: var(--grad-cta);
  color: #1A0F00;
  border: none;
  cursor: pointer;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: filter 0.15s, opacity 0.15s;
}

.submit-btn:hover {
  filter: brightness(1.05);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: wait;
  filter: none;
}

.form-note {
  font-size: 12px;
  color: var(--muted-soft);
  text-align: center;
  margin-top: 2px;
}

/* ==========================================================================
   PAKET PAGE DETAILED COMPARISON TABLE
   ========================================================================== */

.compare {
  margin-top: 70px;
}

.compare h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  margin-bottom: 24px;
  text-align: center;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th, td {
  padding: 14px 18px;
  text-align: left;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
}

th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 600;
  background: var(--surface);
}

td {
  color: var(--muted);
}

td b {
  color: var(--text);
}

tr:last-child td {
  border-bottom: none;
}

.footer-cta {
  padding: 52px;
  text-align: center;
}

.footer-cta h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 14px;
}

.footer-cta p {
  color: var(--muted);
  font-size: 15px;
  max-width: 460px;
  margin: 0 auto 26px;
}

/* ==========================================================================
   DAFTAR PAGE: REGISTRATION DETAILED STYLES
   ========================================================================== */

.form-shell {
  padding: 24px 24px 80px;
}

.form-card {
  padding: 40px;
}

@media (max-width: 600px) {
  .form-card {
    padding: 26px 20px;
  }
}

.fieldset {
  margin-bottom: 30px;
}

.fieldset-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--amber);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  display: block;
}

/* ---------- CUSTOM DROP DOWN SELECT ---------- */
.custom-select {
  position: relative;
}

.cs-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.cs-trigger:hover {
  background: var(--surface-hover);
}

.cs-trigger .cs-value {
  color: var(--muted-soft);
}

.cs-trigger .cs-value.has-value {
  color: var(--text);
}

.cs-trigger .cs-arrow {
  color: var(--muted);
  font-size: 12px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.custom-select.open .cs-trigger {
  border-color: var(--cyan);
  background: rgba(45, 217, 232, 0.04);
}

.custom-select.open .cs-arrow {
  transform: rotate(180deg);
}

.custom-select.invalid .cs-trigger {
  border-color: #F87171;
}

.cs-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 30;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
  padding: 6px;
  list-style: none;
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.cs-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cs-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
}

.cs-option:hover, .cs-option.active {
  background: var(--surface-hover);
}

.cs-option.active {
  outline: 1px solid rgba(45, 217, 232, 0.35);
}

.cs-option .cs-name {
  color: var(--text);
  font-weight: 500;
}

.cs-option .cs-meta {
  color: var(--muted);
  font-size: 12.5px;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
}

/* ---------- INTERACTIVE MAP ---------- */
.loc-row {
  display: flex;
  gap: 10px;
}

.loc-row input {
  flex: 1;
}

.btn-loc {
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 0 18px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: background-color 0.15s;
}

.btn-loc:hover {
  background: var(--surface-hover);
}

.btn-loc:disabled {
  opacity: 0.6;
  cursor: wait;
}

.loc-status {
  font-size: 12.5px;
  color: var(--muted-soft);
}

.loc-status.ok {
  color: var(--green);
}

.loc-status.err {
  color: #F87171;
}

#mapWrap {
  margin-top: 10px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

#locationMap {
  height: 280px;
  width: 100%;
  background: #0D111F;
}

#locationMap .leaflet-tile {
  filter: brightness(0.62) invert(1) contrast(0.9) hue-rotate(180deg) saturate(0.6);
}

#locationMap .leaflet-control-zoom a {
  background: var(--bg-2);
  color: var(--text);
  border-color: var(--border-strong) !important;
}

#locationMap .leaflet-control-zoom a:hover {
  background: var(--surface-hover);
}

#locationMap .leaflet-control-attribution {
  background: rgba(8, 11, 20, 0.75);
  color: var(--muted-soft);
  font-size: 10px;
}

#locationMap .leaflet-control-attribution a {
  color: var(--muted);
}

#mapLink {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--cyan);
  margin-top: 8px;
}

#mapLink:hover {
  text-decoration: underline;
}

/* ---------- GATEWAY SUBMISSION ---------- */
.submit-status {
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  text-align: center;
  line-height: 1.5;
}

.submit-status.ok {
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: var(--green);
}

.submit-status.err {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #F87171;
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
  font-size: 13px;
  color: var(--muted);
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ==========================================================================
   FOOTER (3-COLUMN GRID LAYOUT)
   ========================================================================== */

footer {
  padding: 50px 24px 40px;
}

.foot-card {
  border-radius: var(--radius-lg);
  padding: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
}

@media (max-width: 860px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.foot-col {
  display: flex;
  flex-direction: column;
}

.brand-col .logo {
  margin-bottom: 16px;
}

.foot-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.foot-copy {
  font-size: 12.5px;
  color: var(--muted-soft);
  margin-top: auto;
}

@media (max-width: 860px) {
  .foot-copy {
    margin-top: 16px;
  }
}

.foot-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--muted-soft);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  font-weight: 700;
}

.foot-links-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-links-vertical a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
  width: fit-content;
}

.foot-links-vertical a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.foot-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  flex-direction: column;
}

.contact-item .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--muted-soft);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-item .value {
  font-size: 14px;
  color: var(--text);
}

.contact-item a.value:hover {
  color: var(--cyan);
}

.highlight-wa {
  color: var(--cyan) !important;
  font-weight: 600;
  transition: color 0.15s;
}

.highlight-wa:hover {
  filter: brightness(1.15);
}

