@import url("https://fonts.googleapis.com/css2?family=Syne:wght@700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
:root {
  --bg: #080808;
  --surface: #111111;
  --surface2: #161616;
  --border: #222222;
  --accent: #c8ff00;
  --accent-dim: #9bbf00;
  --text: #ffffff;
  --muted: #666666;
  --muted2: #999999;
  /* Section padding */
  --section-py: 80px; /* atas bawah */
  --section-px: 60px; /* kiri kanan */
  /* Container */
  --container-width: 1200px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  padding-inline: 32px;
  margin: 0 auto;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
}

/* ── NOISE OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5%;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s,
    border-color 0.3s;
}
nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.logo {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}
.logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;

  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: all 0.3s ease;

  display: inline-block;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}
.nav-cta {
  position: relative;
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  text-decoration: none;
  transition:
    color 0.2s,
    transform 0.2s;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
}
.nav-cta::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(
    transparent 0deg,
    transparent 60deg,
    var(--accent) 120deg,
    #fff 160deg,
    var(--accent) 200deg,
    transparent 260deg,
    transparent 360deg
  );
  z-index: -1;
  animation: spin-border 2.4s linear infinite;
}
.nav-cta::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  background: var(--bg);
  z-index: -1;
}
@keyframes spin-border {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.nav-cta:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 160px 5% 100px;
  position: relative;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .accent {
  color: var(--accent);
}
.hero-title .outline {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
}
.hero-desc {
  max-width: 480px;
  color: var(--muted2);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  margin-top: 1rem;
}
.hero-desc strong {
  color: var(--text);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-primary {
  position: relative;
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition:
    color 0.2s,
    transform 0.2s;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(
    transparent 0deg,
    transparent 60deg,
    var(--accent) 120deg,
    #fff 160deg,
    var(--accent) 200deg,
    transparent 260deg,
    transparent 360deg
  );
  z-index: -1;
  animation: spin-border 2.4s linear infinite;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  background: var(--bg);
  z-index: -1;
}
.btn-primary:hover {
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.1rem;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--muted);
}
/* Big BG number */
.hero-bg-num {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(16rem, 28vw, 28rem);
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
/* Accent line */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--accent),
    transparent
  );
  opacity: 0.6;
}

.rotating-text {
  position: absolute;
  right: -15%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.rotating-text svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.rotating-text text {
  fill: var(--text);
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 768px) {
  :root {
    --section-py: 48px;
    --section-px: 24px;
  }
  .hero {
    padding: 120px 5% 80px;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .hero-desc {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .hero-actions {
    gap: 1rem;
  }

  .rotating-text {
    width: 240px;
    height: 240px;

    right: -120px;
    top: 45%;

    opacity: 0.18;
  }

  .rotating-text text {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .hero-bg-num {
    font-size: 12rem;
    right: -15%;
    opacity: 0.04;
  }

  .hero-scroll {
    display: none;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .wa-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.75rem 0;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 20s linear infinite;
  will-change: transform;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-item {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 0 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  flex-shrink: 0;
}
.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* ── SECTION BASE ── */
section {
  padding: 6rem 5%;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

/* ── SERVICES ── */
#layanan {
  background: var(--surface);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.services-header p {
  max-width: 380px;
  color: var(--muted2);
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--surface);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  background-size: cover;
  transition:
    transform 0.4s ease,
    background-size 0.6s ease;
}
/*.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: none;
}*/
.service-card:hover {
  background: #000000;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
  z-index: 3;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.45);
  z-index: 1;
  transition: background 0.6s ease;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.45));
}
.service-card:hover::after {
  background: rgba(0, 0, 0, 6);
}
.service-card > * {
  position: relative;
  z-index: 2;
}

.service-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  color: rgba(194, 194, 194, 0.427);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-icon {
  width: 52px;
  height: 52px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.service-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--muted2);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.25rem 0.65rem;
  color: var(--muted2);
}

/* ── PORTFOLIO ── */
#portofolio {
  background: var(--bg);
}
.portfolio-header {
  margin-bottom: 3.5rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
}
.project-card:nth-child(1) {
  grid-column: span 7;
}
.project-card:nth-child(2) {
  grid-column: span 5;
}
.project-card:nth-child(3) {
  grid-column: span 5;
}
.project-card:nth-child(4) {
  grid-column: span 7;
}
.project-thumb {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s;
}
.project-card:hover .project-thumb {
  transform: scale(1.03);
}
.p1 {
  background-image: url("../img/kumis-dan-sisir.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p2 {
  background-image: url("../img/blackgold-coffee.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p3 {
  background-image: url("/assets/img/gudegbutjitro1925.com.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.p4 {
  background-image: url("../img/pria-rapi-barbershop.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.project-info {
  padding: 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-info h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}
.project-info span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200, 255, 0, 0.06);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card:hover .project-overlay {
  opacity: 1;
}
.overlay-btn {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.65rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(8, 8, 8, 0.8);
  text-decoration: none;
}

/*--CTA BUTTON PORTOFOLIO--*/
.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: right;
  padding: 3rem 0;
  padding-top: 0rem;
  padding-right: 10%;
  margin-top: -2rem;
}

.btn-glitch {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 36px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #06080f;
  color: #f0f4ff;
  overflow: hidden;
}

.btn-glitch:hover {
  animation: bounce 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.g-text {
  position: relative;
  display: inline-block;
  animation: glitch 3s steps(2) infinite;
}

.g-text::before {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  top: 0;
  color: #00ffb4;
  clip-path: polygon(0 25%, 100% 25%, 100% 45%, 0 45%);
  animation: glitchTop 3s steps(2) infinite;
}

.g-text::after {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  top: 0;
  color: #ff5577;
  clip-path: polygon(0 60%, 100% 60%, 100% 78%, 0 78%);
  animation: glitchBot 3s steps(2) infinite;
}

@keyframes glitch {
  0%,
  85% {
    transform: translate(0);
  }
  86% {
    transform: translate(-2px, 1px);
  }
  88% {
    transform: translate(2px, -1px);
  }
  90% {
    transform: translate(-1px, 2px);
  }
  92% {
    transform: translate(1px, -2px);
  }
  94% {
    transform: translate(0);
  }
  96% {
    transform: translate(-2px, 1px);
  }
  98% {
    transform: translate(2px, 0);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes glitchTop {
  0%,
  85% {
    transform: translate(0);
    opacity: 0;
  }
  86% {
    transform: translate(3px, 0);
    opacity: 1;
  }
  88% {
    transform: translate(-3px, 0);
    opacity: 1;
  }
  90% {
    transform: translate(2px, 0);
    opacity: 1;
  }
  94% {
    transform: translate(0);
    opacity: 0;
  }
  96% {
    transform: translate(3px, 0);
    opacity: 1;
  }
  98% {
    transform: translate(-2px, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0);
    opacity: 0;
  }
}

@keyframes glitchBot {
  0%,
  85% {
    transform: translate(0);
    opacity: 0;
  }
  86% {
    transform: translate(-3px, 0);
    opacity: 1;
  }
  89% {
    transform: translate(3px, 0);
    opacity: 1;
  }
  91% {
    transform: translate(-2px, 0);
    opacity: 1;
  }
  94% {
    transform: translate(0);
    opacity: 0;
  }
  97% {
    transform: translate(-3px, 0);
    opacity: 1;
  }
  99% {
    transform: translate(2px, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0);
    opacity: 0;
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-8px);
  }
  40% {
    transform: translateY(-4px);
  }
  60% {
    transform: translateY(-6px);
  }
  80% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ── ABOUT ── */
#tentang {
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 500px;
}
.about-box-main {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-big-letter {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}
.about-stat-card {
  position: absolute;
  padding: 0.75rem 1rem;
  z-index: 5;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.about-stat-card.s1 {
  bottom: 2rem;
  left: -2rem;
  animation: floaty 4s ease-in-out infinite;
}
.about-stat-card.s2 {
  top: 2rem;
  right: -2rem;
  animation: floaty 4s ease-in-out infinite 1.5s;
}
.about-stat-card .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  color: var(--accent-dim);
  line-height: 1;
}
.about-stat-card .lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
}
.about-content .section-title {
  margin-bottom: 1rem;
}
.about-content p {
  color: var(--muted2);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.skill-pill {
  border: 1px solid var(--border);
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted2);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.skill-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* SWIPER */
.aboutSwiper {
  width: 100%;
  height: 100%;
}

.aboutSwiper .swiper-slide {
  overflow: hidden;
}

.aboutSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.08);
  transition: transform 6s ease;
}

/* ACTIVE IMAGE */
.swiper-slide-active img {
  transform: scale(1);
}

/* DARK OVERLAY */
.about-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));

  z-index: 1;
}

/* BIG LETTER */
.about-big-letter {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Bebas Neue", sans-serif;
  font-size: 18rem;

  color: rgba(255, 255, 255, 0.06);

  z-index: 2;

  pointer-events: none;
}

/* ── PRICING ── */
#harga {
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.pricing-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.pricing-row2 .price-card {
  grid-column: auto;
}
.pricing-row2-inner {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .pricing-grid,
  .pricing-row2 {
    grid-template-columns: 1fr;
  }
  .pricing-row2-inner {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
}
.price-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2.5rem;
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.price-card:hover {
  border-color: rgba(200, 255, 0, 0.3);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--accent);
  background: var(--surface2);
}
.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
}
.price-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.price-amount {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.price-amount sup {
  font-size: 1.5rem;
  vertical-align: 0.5em;
}
.price-period {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.75rem;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.price-features li {
  font-size: 0.875rem;
  color: var(--muted2);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.price-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.price-features li.no {
  color: var(--muted);
}
.price-features li.no::before {
  content: "✘";
  color: var(--muted);
}
.btn-plan {
  width: 100%;
  padding: 0.85rem;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  border: 1px solid var(--border);
  color: var(--text);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.btn-plan:hover {
  background: var(--text);
  color: var(--bg);
}
.price-card.featured .btn-plan {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.price-card.featured .btn-plan:hover {
  opacity: 0.85;
}

/* ======== ALUR KERJA ========= */
.workflow {
  padding: 120px 0;
  background: inherit;
  overflow: hidden;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 80px;
}

.timeline-line {
  position: absolute;
  top: 25px;
  left: 8%;
  width: 84%;
  height: 2px;
  background: rgba(19, 69, 2, 0.25);
}

.timeline-line::after {
  background: #95ff00;
  transform: scaleX(0);
  transition: 0.5s ease;
}

.timeline-line.active::after {
  animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
  to {
    transform: scaleX(1);
  }
}

.timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
  cursor: pointer;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
  border: 2px solid #6eff3e;
  margin: 16px auto 32px;
  transition: 0.35s ease;
}

.timeline-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.timeline-item h3 {
  color: #fff;
  margin-bottom: 10px;
}

.timeline-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

.timeline-item:hover .timeline-dot {
  background: #6eff3e;
  box-shadow:
    0 0 20px #6eff3e,
    0 0 40px #6eff3e;
}

.timeline-item:hover .timeline-number {
  color: #6eff3e;
  transform: translateY(-4px);
}

/* ── CONTACT ── */
#kontak {
  background: var(--surface);
  text-align: center;
  padding: 7rem 5%;
  position: relative;
  overflow: hidden;
}
#kontak::before {
  content: "YUDIGITAL";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(8rem, 18vw, 18rem);
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.contact-content {
  position: relative;
  z-index: 1;
}
.contact-content .section-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  margin-bottom: 1rem;
}
.contact-content p {
  color: var(--muted2);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}

.contact-link {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;

  backdrop-filter: blur(12px);

  transition: all 0.3s ease;
}

.contact-link img {
  width: 24px;
  height: 24px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.contact-link:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15);
}

.contact-link:hover img {
  transform: scale(1.15);
}

.contact-link:active {
  transform: translateY(-2px);
}

.cta-big {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.1rem 3rem;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.cta-big:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer p {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}
footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--accent);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* ===========================
   HAMBURGER BUTTON
   =========================== */
.hamburger {
  display: none; /* tampil hanya di mobile */
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2); /* sesuaikan warna border navbar lo */
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s;
  z-index: 200;
  position: relative;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff; /* sesuaikan warna bar dengan warna text navbar lo */
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.25s ease,
    width 0.35s ease;
}

/* Icon morph jadi X */
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===========================
   FULLSCREEN OVERLAY MENU
   =========================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #0a0a0a; /* sesuaikan dengan warna background website lo */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  z-index: 1000;

  /* Efek circle expand dari pojok kanan atas */
  clip-path: circle(0% at calc(100% - 45px) 45px);
  transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);

  pointer-events: none;
}

.mobile-nav.open {
  clip-path: circle(150% at calc(100% - 45px) 45px);
  pointer-events: all;
}

/* ===========================
   MENU LINKS
   =========================== */
.mob-link {
  font-size: 36px;
  font-weight: 600;
  color: #fff; /* sesuaikan warna text */
  text-decoration: none;
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(16px);
  transition:
    color 0.2s,
    padding-left 0.2s,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.mob-link:last-child {
  border-bottom: none;
}

.mob-link:hover {
  color: #7f77dd; /* sesuaikan warna accent lo */
  padding-left: 10px;
}

/* Staggered animation tiap link */
.mobile-nav.open .mob-link:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.18s;
}
.mobile-nav.open .mob-link:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.18s;
}
.mobile-nav.open .mob-link:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.24s;
}
.mobile-nav.open .mob-link:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}
.mobile-nav.open .mob-link:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.36s;
}

.mobile-nav.open .mob-link:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.42s;
}

.mobile-nav.open .mobile-cta {
  opacity: 1;
  transform: none;
  transition-delay: 0.42s;
}

/* CTA button di dalam menu */
.mobile-cta {
  margin-top: 50px;
  font-size: 16px !important;
  font-weight: 600;
  color: #fff !important;
  background: #02b802; /* sesuaikan warna accent lo */
  padding: 14px 28px !important;
  border-radius: 8px;
  border-bottom: none !important;
  text-align: center;
  transition:
    background 0.2s,
    opacity 0.35s ease,
    transform 0.35s ease !important;
}

.mobile-cta:hover {
  background: #534ab7;
  padding-left: 28px !important;
  color: #fff !important;
}

/* ===========================
   RESPONSIVE — tampil di mobile
   =========================== */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none; /* sembunyiin nav desktop */
  }

  .hamburger {
    display: flex;
  }

  .contact-link {
    width: 45px;
    height: 45px;
  }
}

.mob-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer !important;
  z-index: 999;
}

/* =========================
LOCATION V2
========================= */

#location {
  background: var(--bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-desc {
  margin: 2rem 0;
  line-height: 1.9;
  color: var(--muted);
}

.location-contact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-row span {
  color: var(--accent);
}

.contact-row p {
  color: #fff;
}

.location-btn {
  display: inline-block;

  margin-top: 2rem;

  padding: 1rem 1.8rem;

  border: 1px solid var(--accent);

  color: var(--accent);

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: 0.08em;

  transition: 0.3s;
}

.location-btn:hover {
  background: var(--accent);
  color: #000;
}

.location-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.location-card {
  position: relative;

  width: 100%;
  max-width: 520px;

  padding: 3rem;

  border: 1px solid var(--border);

  background: rgba(255, 255, 255, 0.02);

  backdrop-filter: blur(10px);

  overflow: hidden;

  z-index: 2;
}

.location-city {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  line-height: 0.9;
  letter-spacing: 0.05em;
}

.location-country {
  color: var(--accent);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.location-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

.location-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-item span {
  display: block;

  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;

  color: var(--accent);
}

.stat-item small {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.location-orbit {
  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  border: 1px solid rgba(200, 255, 0, 0.15);

  animation: rotateOrbit 18s linear infinite;
}

.location-orbit::before {
  content: "";

  position: absolute;

  top: -6px;
  left: 50%;

  width: 12px;
  height: 12px;

  background: var(--accent);

  border-radius: 50%;

  box-shadow:
    0 0 15px var(--accent),
    0 0 35px var(--accent);
}

@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

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

  .location-city {
    font-size: 3.5rem;
  }

  .location-stats {
    grid-template-columns: 1fr;
  }

  .location-orbit {
    width: 280px;
    height: 280px;
  }
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 20px;
  height: 20px;

  color: var(--accent);

  flex-shrink: 0;
}

.contact-icon {
  color: var(--accent);

  filter: drop-shadow(0 0 4px rgba(200, 255, 0, 0.4))
    drop-shadow(0 0 8px rgba(200, 255, 0, 0.2));
}

/*===FLOATING WA===*/
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.wa-float {
  position: fixed; /* ini yang bikin nempel di pojok */
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #0a0a0a;
  border: 2px solid #39ff14;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 10px rgba(57, 255, 20, 0.5),
    0 0 24px rgba(57, 255, 20, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  z-index: 9999;
  text-decoration: none;
  animation: spin-slow 6s linear infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 20px rgba(57, 255, 20, 0.9),
    0 0 50px rgba(57, 255, 20, 0.4);
  animation-play-state: paused;
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #39ff14;
}

/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  :root {
    --section-py: 60px;
    --section-px: 40px;
  }
  section {
    padding: 5rem 5%;
  }
  .services-header {
    flex-direction: column;
    gap: 1rem;
  }
  .services-header p {
    max-width: 100%;
  }
  .project-card:nth-child(1) {
    grid-column: span 12;
  }
  .project-card:nth-child(2) {
    grid-column: span 12;
  }
  .project-card:nth-child(3) {
    grid-column: span 6;
  }
  .project-card:nth-child(4) {
    grid-column: span 6;
  }
  #tentang {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .about-visual {
    height: 380px;
  }
  .about-stat-card.s1 {
    bottom: 1rem;
    left: 0.25rem;
  }
  .about-stat-card.s2 {
    top: 1rem;
    right: 0.25rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-card:last-child {
    grid-column: span 2;
  }
}

/* ── TABLET PORTRAIT (max 900px) ── */
@media (max-width: 900px) {
  nav .nav-links {
    display: none;
  }
  nav .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  #tentang {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 5%;
  }
  .about-visual {
    height: 280px;
  }
  .about-stat-card .num {
    font-size: 2rem;
  }
  .about-stat-card {
    padding: 0.9rem 1.25rem;
  }
  .about-stat-card.s1 {
    bottom: 1rem;
    left: 0.5rem;
  }
  .about-stat-card.s2 {
    top: 1rem;
    right: 0.5rem;
  }
  .project-card:nth-child(1),
  .project-card:nth-child(2),
  .project-card:nth-child(3),
  .project-card:nth-child(4) {
    grid-column: span 12;
  }
  .project-thumb {
    height: 220px;
    font-size: 4rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card:last-child {
    grid-column: span 1;
  }
  .hero-scroll {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-left: 40px;
  }

  .timeline-line {
    width: 2px;
    height: 100%;
    left: 8px;
    top: 0;
  }

  .timeline-line::after {
    width: 100%;
    height: 100%;
    transform-origin: top;
    transform: scaleY(0);
  }

  .timeline-line.active::after {
    animation: drawLineMobile 2s ease forwards;
  }

  .timeline-item {
    text-align: left;
    padding-left: 20px;
  }

  .timeline-dot {
    position: absolute;
    left: -40px;
    top: 12px;
    margin: 0;
  }

  .timeline-number {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

@keyframes drawLineMobile {
  to {
    transform: scaleY(1);
  }
}

/* ── MOBILE (max 640px) ── */
@media (max-width: 640px) {
  section {
    padding: 4rem 5%;
  }
  nav {
    padding: 1rem 5%;
  }
  .logo {
    font-size: 1.25rem;
  }
  .hero {
    padding: 0 5%;
    padding-top: 30px;
    min-height: 95svh;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.75rem;
  }
  .hero-title {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }
  .hero-title .outline {
    -webkit-text-stroke: 1.5px var(--text);
  }
  .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  .hero-actions {
    gap: 1rem;
  }
  .btn-primary {
    font-size: 0.82rem;
    padding: 0.75rem 1.5rem;
  }
  .btn-ghost {
    font-size: 0.82rem;
  }
  .hero-bg-num {
    display: none;
  }
  .section-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 2rem 1.5rem;
  }
  .service-num {
    font-size: 2.5rem;
  }
  .project-thumb {
    height: 180px;
    font-size: 3rem;
  }
  .project-info h3 {
    font-size: 1.1rem;
  }
  .about-visual {
    height: 320px;
  }
  .about-big-letter {
    font-size: 10rem;
  }
  .about-stat-card .num {
    font-size: 1.75rem;
  }
  .about-stat-card .lbl {
    font-size: 0.6rem;
  }
  .about-stat-card.s1 {
    bottom: 0.75rem;
    left: 0.35rem;
    padding: 0.75rem 1rem;
  }
  .about-stat-card.s2 {
    top: 0.75rem;
    right: 0.35rem;
    padding: 0.75rem 1rem;
  }
  .price-card {
    padding: 2rem 1.5rem;
  }
  .price-amount {
    font-size: 2.75rem;
  }
  .contact-content .section-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
  #kontak::before {
    font-size: clamp(5rem, 22vw, 9rem);
  }
  .contact-links {
    gap: 1rem;
  }
  .cta-big {
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .marquee-item {
    font-size: 0.9rem;
    padding: 0 1.5rem;
    gap: 1.5rem;
  }

  .btn-wrap {
    justify-content: center; /* misalnya mau di-center di mobile */
    padding-right: 0;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  :root {
    --section-py: 36px;
    --section-px: 16px;
  }
  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ── SMALL MOBILE (max 400px) ── */
@media (max-width: 400px) {
  .hero-title {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }
  .section-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }
  .hero-badge {
    font-size: 0.6rem;
  }
  .about-visual {
    height: 250px;
  }
  .about-big-letter {
    font-size: 8rem;
  }
  .contact-links {
    flex-direction: flex;
    align-items: center;
  }
}

/*---CTA cinematic hover---*/
.cta-orbit {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 1rem 2.4rem;

  border-radius: 18px;

  overflow: hidden;

  text-decoration: none;

  background: #0b0b0b;

  isolation: isolate;
}

/* rotating light */
.cta-orbit::before {
  content: "";

  position: absolute;

  width: 220%;
  height: 220%;

  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 60deg,
    rgba(200, 255, 0, 0.95) 120deg,
    #ffffff 160deg,
    rgba(200, 255, 0, 0.95) 200deg,
    transparent 260deg,
    transparent 360deg
  );

  animation: orbit-spin 3s linear infinite;

  z-index: -2;
}

/* inner dark layer */
.cta-orbit::after {
  content: "";

  position: absolute;
  inset: 1.5px;

  border-radius: 16px;

  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0.96),
    rgba(8, 8, 8, 0.98)
  );

  z-index: -1;
}

/* text */
.cta-orbit span {
  position: relative;

  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;

  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: white;

  transition:
    color 0.3s ease,
    transform 0.35s ease;
}

/* hover */
.cta-orbit:hover {
  transform: translateY(-4px);

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.45),
    0 0 35px rgba(200, 255, 0, 0.14);

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.cta-orbit:hover span {
  color: #c8ff00;
  transform: scale(1.03);
}

/* animation */
@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.map-btn {
  margin-top: 2rem;
}

/*---styling ikon layanan ----*/
.service-icon svg {
  width: 52px;
  height: 52px;
  stroke: #9a9a9a; /* ganti sama warna accent lo */
  stroke-width: 1.5;
}

.mob-logo {
  position: absolute;
  top: 30px;
  left: 48px;
  font-family: "Share Tech Mono", monospace; /* samain sama font logo navbar */
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.mob-logo span {
  color: var(--accent); /* warna titik hijau lo */
}

/*---ALUR KERJA---*/
@media (max-width: 991px) {
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .workflow {
    padding: 80px 0;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-number {
    font-size: 3rem;
  }
}

/* === TESTIMONI === */
.testi-section {
  padding: 4rem 0;
  padding-left: 50px;
  overflow: hidden;
}

.testi-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* lebar = 3 kartu + 2 gap */
  max-width: calc((280px * 3) + (16px * 2));
  margin: 0 auto;
  padding: 4rem 0;
}

.testi-track {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.35, 1);
  will-change: transform;
}

/* Kartu */
.testi-card {
  background: #111115;
  border: 0.5px solid #1e1e26;
  border-radius: 16px;
  padding: 1.5rem;
  min-width: 280px;
  width: 280px;
  flex-shrink: 0;
  opacity: 0.4;
  transform: scale(0.88);
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.55s cubic-bezier(0.25, 1, 0.35, 1),
    opacity 0.55s ease,
    border-color 0.55s ease;
}

.testi-card.active {
  opacity: 1;
  transform: scale(1.05);
  border-color: #39ff14;
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.2);
}

/* Bintang */
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.testi-stars i {
  font-size: 14px;
  color: #f0b429;
}

/* Teks */
.testi-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: "Outfit", sans-serif;
}

/* Profil */
.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
  background: #1a1a1a;
  transition: 0.35s;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi-card:hover .testi-avatar {
  transform: scale(1.08);
}
@media (max-width: 768px) {
  .testi-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .testi-name {
    font-size: 0.95rem;
  }

  .testi-role {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .testi-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .testi-person {
    gap: 10px;
  }

  .testi-name {
    font-size: 0.9rem;
  }

  .testi-role {
    font-size: 0.75rem;
  }
}
.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 2px;
  font-family: "Outfit", sans-serif;
}
.testi-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  font-family: "Outfit", sans-serif;
}

/* Kontrol */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 0.5rem;
}

.testi-btn {
  background: transparent;
  border: 0.5px solid #1e1e26;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  color: rgba(255, 255, 255, 0.4);
}
.testi-btn:hover {
  background: #1e1e26;
  color: #fff;
}
.testi-btn:active {
  transform: scale(0.92);
}
.testi-btn i {
  font-size: 16px;
}

.testi-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.testi-dot {
  height: 5px;
  width: 5px;
  border-radius: 3px;
  background: #1e1e26;
  cursor: pointer;
  transition:
    width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s;
}
.testi-dot.active {
  width: 20px;
  background: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .testi-card {
    min-width: 240px;
    width: 240px;
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .testi-card {
    min-width: 200px;
    width: 200px;
    padding: 1rem;
  }
  .testi-text {
    font-size: 13px;
  }
  .testi-section {
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testi-track {
    transition: none;
  }
  .testi-card {
    transition: none;
  }
}

/* ── MARQUEE CHIP ── */
.chip-marquee-wrap {
  overflow: hidden;
  padding: 2rem 0;
  background: var(--bg);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.chip-marquee-track {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
  animation: chipMarquee 36s linear infinite;
  will-change: transform;
}

.chip-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes chipMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.chip-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 1.2rem 0.5rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted2);
  font-family: "Outfit", sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: default;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
}

.chip-pill:hover {
  border-color: var(--accent);
  color: var(--text);
  background: var(--surface2);
}

.chip-pill:hover .chip-pill-icon {
  color: var(--accent);
}

.chip-pill-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-right: 10px;
  flex-shrink: 0;
}

.chip-pill:hover span {
  color: #d9ff00;
}

/*=====about====*/
@media (max-width: 992px) {
  #tentang {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    height: 400px;
  }

  .about-stat-card.s1 {
    left: 1rem;
    bottom: 1rem;
  }

  .about-stat-card.s2 {
    right: 1rem;
    top: 1rem;
  }
}

@media (max-width: 576px) {
  .about-visual {
    height: 320px;
  }

  .about-stat-card {
    padding: 0.8rem 1rem;
  }

  .about-stat-card .num {
    font-size: 1.8rem;
  }

  .about-big-letter {
    font-size: 8rem;
  }

  .skills-list {
    gap: 0.4rem;
  }

  .skill-pill {
    font-size: 0.65rem;
  }
}

/* =============================================
   UMKM GO DIGITAL SECTION
   ============================================= */
#umkm-digital {
  background: var(--surface);
  padding: var(--section-py) var(--section-px);
  position: relative;
  overflow: hidden;
}

/* dot-grid texture, accent-tinted, fade to right */
#umkm-digital::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(200, 255, 0, 0.06) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 70% 50%, black 0%, transparent 65%);
  pointer-events: none;
}

.umkm-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* ── LEFT COPY ── */
.umkm-copy .section-title {
  margin-bottom: 12px;
}

.subtitle-umkm {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  color: var(--muted2);
  margin-bottom: 16px;
}
.subtitle-umkm em {
  color: var(--accent);
  font-style: italic;
}

.umkm-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 18px;
  box-shadow: 0 0 12px rgba(200, 255, 0, 0.4);
}

.umkm-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
}

.umkm-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  margin-bottom: 36px;
}

.umkm-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.umkm-stat svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.umkm-stat span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.umkm-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* reuse existing .btn-primary style tapi override warna text supaya kontras */
#umkm-digital .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  cursor: pointer;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
#umkm-digital .btn-primary:hover {
  transform: translateY(-3px);
}
#umkm-digital .btn-primary svg {
  transition: transform 0.3s ease;
}
#umkm-digital .btn-primary:hover svg {
  transform: translateX(4px);
}

/* ── RIGHT SCENE ── */
.umkm-scene {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}

.umkm-img {
  width: 100%;
  max-width: 600px;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(200, 255, 0, 0.5);
  transition: all 0.5s ease;
  animation: borderGlow 3s ease-in-out infinite;
}

.umkm-img:hover {
  transform: translateY(-8px) scale(1.02);
}

@keyframes borderGlow {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(200, 255, 0, 0.2);
    border-color: rgba(200, 255, 0, 0.3);
  }
  50% {
    box-shadow:
      0 0 24px rgba(200, 255, 0, 0.6),
      0 0 48px rgba(200, 255, 0, 0.2);
    border-color: rgba(200, 255, 0, 0.9);
  }
}

.umkm-glow {
  display: none;
  position: absolute;
  width: 70%;
  height: 70%;
  background: #002c30;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  z-index: 1;
}

.umkm-badge {
  position: absolute;
  z-index: 3;

  background: rgba(12, 12, 12, 0.8);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(188, 255, 0, 0.3);

  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;

  padding: 0.9rem 1.2rem;
  border-radius: 14px;

  box-shadow: 0 0 20px rgba(188, 255, 0, 0.15);

  animation: floatBadge 4s ease-in-out infinite;
  display: none;
}

.badge-top {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.badge-left {
  left: -20px;
  bottom: 20%;
}

.badge-right {
  right: -20px;
  top: 30%;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .umkm-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .umkm-scene {
    order: -1;
    height: 340px;
  }
  .umkm-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .badge-top {
    display: none;
  }

  .badge-left {
    display: none;
  }

  .badge-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .umkm-scene {
    margin-bottom: 40px;
  }

  .umkm-img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .umkm-content {
    padding-top: 10px;
  }
}

@media (max-width: 480px) {
  .umkm-scene {
    height: 260px;
  }
  .umkm-stats {
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
  }
  #umkm-digital {
    padding: 60px 24px;
  }
}

/*----ARTIKEL----*/
.articles-section {
  padding: 120px 5%;
  background: #070707;
  position: relative;
}

.articles-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(195, 255, 0, 0.06),
      transparent 30%
    ),
    radial-gradient(circle at 80% 60%, rgba(0, 153, 255, 0.05), transparent 30%);
  pointer-events: none;
}

.articles-header {
  margin-bottom: 50px;
}

.articles-header .section-label {
  color: #c3ff00;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.articles-header .section-title {
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 900;
  line-height: 1;
  color: white;
  margin-bottom: 16px;
}

.articles-header .section-title span {
  color: #c3ff00;
}

.section-desc {
  max-width: 650px;
  color: #9a9a9a;
  line-height: 1.8;
}

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

.article-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(195, 255, 0, 0.12);
  border-radius: 22px;
  overflow: hidden;
  transition: 0.4s ease;
  backdrop-filter: blur(12px);
}

.article-card:hover {
  transform: translateY(-8px);
  border-color: rgba(195, 255, 0, 0.5);
  box-shadow: 0 0 30px rgba(195, 255, 0, 0.08);
}

.article-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.article-card:hover img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #c3ff00;
  color: black;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}

.article-content {
  padding: 28px;
}

.date {
  display: inline-block;
  margin-bottom: 14px;
  color: #999;
  font-size: 14px;
}

.article-content h3 {
  color: white;
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.article-content p {
  color: #a3a3a3;
  line-height: 1.8;
  margin-bottom: 22px;
}

.read-more {
  color: #c3ff00;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
}

.read-more:hover {
  opacity: 0.7;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

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

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

  .article-content h3 {
    font-size: 24px;
  }
}
