:root {
  --bg: #020617;
  --surface: #020617;
  --surface-soft: #020617;
  --border-sub: rgba(148, 163, 184, 0.3);
  --border-strong: rgba(148, 163, 184, 0.6);

  --text-main: #e5e7eb;
  --text-soft: #9ca3af;
  --text-softer: #6b7280;

  --accent-blue: #38bdf8;
  --accent-purple: #a855f7;
  --accent-green: #22c55e;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;

  --shadow-soft: 0 16px 50px rgba(15, 23, 42, 0.95);
  --shadow-card: 0 18px 60px rgba(15, 23, 42, 1);

  --font-display: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.ne-body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #020617, #020617 45%, #000 100%);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Basic */

a {
  color: inherit;
  text-decoration: none;
}

/* Background subtle gradient */

.ne-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 55%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.2), transparent 55%);
  opacity: 0.9;
  z-index: -1;
}

/* MAIN LAYOUT */

.ne-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 112px 20px 64px;
}

/* Reveal anim */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 360ms ease-out,
    transform 360ms ease-out;
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* NAVBAR */

.ne-nav {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 20;
}

.ne-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), #020617);
  border: 1px solid var(--border-sub);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(18px);
}

/* Navbar: beri sedikit ruang di pinggir layar mobile */
@media (max-width: 480px) {
  .ne-nav {
    padding-inline: 8px;
    box-sizing: border-box;
  }
}

/* Logo */

.ne-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ne-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9),
    0 0 18px rgba(56, 189, 248, 0.4);
}

.ne-logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ne-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.ne-logo-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ne-logo-sub {
  font-size: 11px;
  color: var(--text-soft);
}

/* Nav links */

.ne-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  font-size: 13px;
}

.ne-nav-link {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text-soft);
  transition:
    color 150ms ease-out,
    border-color 150ms ease-out,
    background-color 150ms ease-out,
    transform 120ms ease-out;
}

.ne-nav-link:hover {
  color: var(--text-main);
  border-color: var(--border-sub);
  background: rgba(15, 23, 42, 0.92);
  transform: translateY(-1px);
}

/* Burger */

.ne-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.ne-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: #e5e7eb;
  transition:
    transform 160ms ease-out,
    opacity 160ms ease-out;
}

.ne-nav-toggle.ne-open span:nth-child(1) {
  transform: translateY(5px) rotate(42deg);
}

.ne-nav-toggle.ne-open span:nth-child(2) {
  opacity: 0;
}

.ne-nav-toggle.ne-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-42deg);
}

/* HERO */

.ne-section {
  margin-bottom: 64px;
}

.ne-hero {
  margin-top: 16px;
}

.ne-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

/* Left */

.ne-hero-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 36px);
  letter-spacing: 0.02em;
}

.ne-hero-title span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
}

.ne-hero-text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* Hero actions */

.ne-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.ne-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  padding: 7px 13px;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: inherit;
  transition:
    background-color 180ms ease-out,
    border-color 180ms ease-out,
    transform 120ms ease-out,
    box-shadow 160ms ease-out;
}

.ne-btn-primary {
  background: linear-gradient(135deg, #22d3ee, #a855f7);
  color: #020617;
  border-color: rgba(15, 23, 42, 0.9);
  box-shadow:
    0 16px 40px rgba(8, 47, 73, 0.85),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.ne-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 50px rgba(8, 47, 73, 1),
    0 0 0 1px rgba(15, 23, 42, 1);
}

.ne-btn-ghost {
  border-color: var(--border-sub);
  background: rgba(15, 23, 42, 0.92);
  color: var(--text-main);
}

.ne-btn-ghost:hover {
  border-color: var(--border-strong);
  background: rgba(15, 23, 42, 1);
  transform: translateY(-1px);
}

.ne-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.ne-btn-icon svg {
  width: 15px;
  height: 15px;
}

.ne-btn-icon-ghost svg {
  color: var(--text-soft);
}

.ne-hero-meta {
  font-size: 11px;
  color: var(--text-softer);
}

/* Right - Mascot card */

.ne-hero-right {
  position: relative;
}

.ne-core-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 22px 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 18% 0%, #111827, #020617 60%, #000 100%);
  box-shadow: var(--shadow-card);
  transform-style: preserve-3d;
  overflow: hidden;
}

.ne-core-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(56, 189, 248, 0.2),
    rgba(168, 85, 247, 0.25),
    rgba(34, 197, 94, 0.2),
    rgba(56, 189, 248, 0.2)
  );
  opacity: 0.2;
  mix-blend-mode: screen;
  z-index: -1;
  animation: coreBorderSpin 14s linear infinite;
}

/* Inner */

.ne-core-inner {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
}

/* Orbits */

.ne-core-orbit {
  position: absolute;
  inset: 26% 10%;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 0 26px rgba(15, 23, 42, 0.9);
}

.ne-core-orbit-a {
  transform: rotate(14deg);
}

.ne-core-orbit-b {
  inset: 34% 16%;
  opacity: 0.7;
  transform: rotate(-16deg);
}

/* Sphere */

.ne-core-sphere {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  animation: coreFloat 4.6s ease-in-out infinite;
}

.ne-core-sphere-inner {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 25% 15%, #f9fafb, #e5e7eb 32%, #cbd5f5 50%, #4b5563 80%),
    radial-gradient(circle at 80% 125%, #020617, #020617 60%, transparent 100%);
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.95),
    0 0 0 5px rgba(15, 23, 42, 0.95),
    0 0 30px rgba(56, 189, 248, 0.45);
  overflow: hidden;
}

/* Gloss */

.ne-core-gloss {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.9), transparent 55%),
    radial-gradient(circle at 80% 120%, rgba(15, 23, 42, 0.98), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: coreShimmer 5.6s ease-in-out infinite;
}

/* Face */

.ne-core-face {
  position: absolute;
  inset: 0;
}

.ne-core-eye {
  position: absolute;
  top: 40%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #020617;
  box-shadow: 0 0 6px rgba(15, 23, 42, 0.7);
}

.ne-core-eye-left {
  left: 34%;
}

.ne-core-eye-right {
  right: 34%;
}

.ne-core-smile {
  position: absolute;
  left: 26%;
  right: 26%;
  bottom: 24%;
  height: 18px;
  border-radius: 0 0 100px 100px;
  border-bottom: 3px solid #020617;
}

/* Core tags */

.ne-core-tag {
  position: absolute;
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(191, 219, 254, 0.85);
  color: #dbeafe;
  box-shadow:
    0 12px 34px rgba(15, 23, 42, 0.95),
    0 0 18px rgba(59, 130, 246, 0.26);
  white-space: nowrap;
}

.ne-core-tag-ai {
  top: 6%;
  left: -8%;
}

.ne-core-tag-web3 {
  bottom: 8%;
  left: -6%;
}

.ne-core-tag-wa {
  right: -8%;
  top: 36%;
}

.ne-core-caption {
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--text-softer);
}

/* Core animations */

@keyframes coreFloat {
  0% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-4px);
  }
}

@keyframes coreShimmer {
  0% {
    transform: translateX(-8%);
    opacity: 0.9;
  }
  40% {
    transform: translateX(4%);
    opacity: 1;
  }
  70% {
    transform: translateX(0%);
    opacity: 0.86;
  }
  100% {
    transform: translateX(-8%);
    opacity: 0.9;
  }
}

@keyframes coreBorderSpin {
  to {
    transform: rotate(360deg);
  }
}

/* SECTION HEADERS */

.ne-section-header {
  margin-bottom: 18px;
}

.ne-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-softer);
}

.ne-section-title {
  margin: 4px 0;
  font-family: var(--font-display);
  font-size: 20px;
}

.ne-section-sub {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
}

/* PRODUCTS GRID */

.ne-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.02fr);
  gap: 16px;
}

.ne-card {
  border-radius: var(--radius-lg);
  padding: 14px 14px 12px;
  border: 1px solid var(--border-sub);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), #020617);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  transition:
    transform 150ms ease-out,
    box-shadow 150ms ease-out,
    border-color 150ms ease-out;
}

.ne-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}

/* Card head */

.ne-card-head {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

/* Icon shell – dark, subtle, selaras logo navbar */
.ne-icon-shell {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background:
    radial-gradient(circle at 30% 0%, #0f172a 0%, #020617 40%, #000000 100%);
  box-shadow:
    0 10px 26px rgba(15, 23, 42, 0.85),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  transform-origin: center;
  transition:
    transform 160ms ease-out,
    box-shadow 160ms ease-out,
    border-color 160ms ease-out;
}

/* Ring halus berputar di belakang icon */
.ne-icon-shell::before {
  content: "";
  position: absolute;
  inset: -45%;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(148, 163, 184, 0.0),
    rgba(148, 163, 184, 0.28),
    rgba(148, 163, 184, 0.08),
    rgba(148, 163, 184, 0.0)
  );
  mix-blend-mode: screen;
  opacity: 0.45;
  filter: blur(3px);
  animation: neIconRing 18s linear infinite;
  pointer-events: none;
}

/* Glow layer – dibuat sangat subtle */
.ne-icon-glow {
  position: absolute;
  inset: -45%;
  background:
    radial-gradient(circle, rgba(148, 163, 184, 0.35), transparent 60%);
  opacity: 0.0;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: iconPulse 5.2s ease-in-out infinite;
}

/* Icon center: float pelan */
.ne-icon-center {
  position: relative;
  width: 68%;
  height: 68%;
  border-radius: inherit;
  display: grid;
  place-items: center;
  animation: neIconFloat 5.4s ease-in-out infinite;
  will-change: transform;
}

.ne-icon-center svg {
  width: 100%;
  height: 100%;
}

/* Border variants – warna mengikuti tema tapi nggak terlalu terang */
.ne-icon-ai {
  border-color: rgba(56, 189, 248, 0.65);
}

.ne-icon-web3 {
  border-color: rgba(168, 85, 247, 0.65);
}

.ne-icon-wa {
  border-color: rgba(34, 197, 94, 0.65);
}

/* Hover effect pada card: sedikit tilt & pop, tapi tetap soft */
.ne-card:hover .ne-icon-shell {
  transform: translateY(-2px) rotate(-1.5deg);
  box-shadow:
    0 14px 32px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(15, 23, 42, 1);
  border-color: rgba(248, 250, 252, 0.55);
}

/* Card text */

.ne-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 15px;
}

.ne-card-sub {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--text-soft);
}

.ne-card-text {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.6;
}

.ne-card-meta {
  margin: 0 0 8px;
  font-size: 11px;
  color: var(--text-softer);
}

.ne-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #bfdbfe;
}

.ne-link-icon {
  display: inline-flex;
  width: 12px;
  height: 12px;
}

.ne-link-icon svg {
  width: 100%;
  height: 100%;
}

/* Icon animations (global) */

@keyframes iconPulse {
  0%,
  60% {
    opacity: 0;
    transform: scale(0.9);
  }
  80% {
    opacity: 0.6;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

@keyframes neIconRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes neIconFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}

/* TECH */

.ne-tech-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 16px;
}

.ne-tech-card {
  border-radius: var(--radius-lg);
  padding: 14px 14px 12px;
  border: 1px solid var(--border-sub);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), #020617);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
}

.ne-tech-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 14px;
}

.ne-tech-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  color: var(--text-soft);
}

.ne-tech-card li {
  margin-bottom: 4px;
}

/* APPROACH */

.ne-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ne-approach-card {
  border-radius: var(--radius-md);
  padding: 12px 12px 10px;
  border: 1px solid var(--border-sub);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), #020617);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
}

.ne-approach-card h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 13px;
}

.ne-approach-card p {
  margin: 0;
  color: var(--text-soft);
}

/* CONTACT */

.ne-contact-card {
  border-radius: var(--radius-lg);
  padding: 16px 14px 14px;
  border: 1px solid var(--border-sub);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), #020617);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 12px;
}

.ne-contact-text h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 18px;
}

.ne-contact-text p {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
}

.ne-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

/* FOOTER */

.ne-footer {
  padding: 14px 20px 20px;
  border-top: 1px solid var(--border-sub);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.97), #020617);
}

.ne-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-soft);
}

.ne-footer-title {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-main);
}

.ne-footer-sub {
  display: block;
}

.ne-footer-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .ne-main {
    padding-top: 96px;
  }

  .ne-nav-inner {
    border-radius: 16px;
  }

  .ne-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .ne-nav-links {
    position: absolute;
    right: 14px;
    top: 44px;
    padding: 6px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid var(--border-sub);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.95);
    display: none;
    flex-direction: column;
    gap: 4px;
    min-width: 150px;
  }

  .ne-nav-links.ne-open {
    display: flex;
  }

  .ne-nav-link {
    padding: 7px 10px;
    border-radius: 10px;
  }

  .ne-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ne-hero-right {
    order: -1;
  }

  .ne-product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ne-tech-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ne-approach-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ne-contact-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .ne-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ne-core-tag-ai {
    top: 6%;
    left: -4%;
  }
  .ne-core-tag-web3 {
    bottom: 8%;
    left: -2%;
  }
  .ne-core-tag-wa {
    right: -4%;
    top: 40%;
  }
}

@media (max-width: 640px) {
  .ne-main {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ───────────────────────────────────────────── */
/*        ANIMASI KHUSUS PER MODUL ICON         */
/* ───────────────────────────────────────────── */

/* AI: aksen biru/cyan, sangat halus */
.ne-card-ai .ne-icon-shell::before {
  background: conic-gradient(
    from 0deg,
    rgba(56, 189, 248, 0.00),
    rgba(56, 189, 248, 0.18),
    rgba(59, 130, 246, 0.09),
    rgba(56, 189, 248, 0.00)
  );
}

.ne-card-ai .ne-icon-glow {
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.16),
    transparent 60%
  );
  animation-duration: 7s;
}

/* Web3: aksen ungu, tetap lembut */
.ne-card-web3 .ne-icon-shell::before {
  background: conic-gradient(
    from 0deg,
    rgba(168, 85, 247, 0.00),
    rgba(168, 85, 247, 0.20),
    rgba(129, 140, 248, 0.10),
    rgba(168, 85, 247, 0.00)
  );
}

.ne-card-web3 .ne-icon-glow {
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.18),
    transparent 60%
  );
  animation-duration: 7.5s;
}

/* WA: aksen hijau, natural */
.ne-card-wa .ne-icon-shell::before {
  background: conic-gradient(
    from 0deg,
    rgba(34, 197, 94, 0.00),
    rgba(34, 197, 94, 0.20),
    rgba(52, 211, 153, 0.10),
    rgba(34, 197, 94, 0.00)
  );
}

.ne-card-wa .ne-icon-glow {
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.18),
    transparent 60%
  );
  animation-duration: 7.2s;
}

/* (opsional) biarkan .ne-icon-center pakai animasi global */

/* ───────────────────────────────────────────── */
/*  CONTACT: Email, WhatsApp, Sosmed, Back-top   */
/* ───────────────────────────────────────────── */

.ne-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Baris umum */
.ne-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Baris utama: Email + WhatsApp */
.ne-contact-row-main {
  margin-top: 0.25rem;
}

.ne-contact-btn-main {
  border-radius: 14px;
  padding: 0.55rem 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.87rem;
  font-weight: 500;
}

/* Email – lebih terang */
.ne-contact-btn-primary {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(5px);
}

/* WhatsApp – ghost lembut */
.ne-contact-btn-ghost {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.26);
  color: rgba(248, 250, 252, 0.88);
}

.ne-contact-btn-main svg {
  width: 18px;
  height: 18px;
}

/* Sosmed (IG + FB) */
.ne-contact-row-social {
  margin-top: 0.2rem;
}

.ne-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.60);
  border: 1px solid rgba(148, 163, 184, 0.28);
  color: rgba(248, 250, 252, 0.85);
  font-size: 0.83rem;
  font-weight: 400;
  white-space: nowrap;
}

.ne-contact-chip svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.9;
}


/* ========================================================= */
/*   BACK TO TOP (versi baru: inline baris sosial media)     */
/* ========================================================= */

.ne-contact-row-social-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  width: 100%;
  align-items: center;
}

.ne-contact-back-inline {
  margin-left: auto;
  display: flex;
}

.ne-contact-back-btn {
  border-radius: 14px;
  padding-inline: 1rem;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.02);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Mobile – kembali turun */
@media (max-width: 899px) {
  .ne-contact-back-inline {
    width: 100%;
    margin-left: 0;
    margin-top: 0.4rem;
    justify-content: flex-start;
  }
}

