/* ============================================================
   KaiDesign Digital — Style
   Creative Design • Professional Results
   ============================================================ */

:root {
  --bg: #0a0a0e;
  --surface: #121218;
  --surface-2: #17171f;
  --surface-3: #1d1d26;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f4f6;
  --muted: #9b9ba8;
  --muted-2: #6f6f7c;
  --accent: #c8f542;
  --accent-ink: #0a0a0e;
  --accent-soft: rgba(200, 245, 66, 0.12);
  --danger: #ff6b6b;
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --nav-h: 72px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #2a2a34;
  border-radius: 99px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: #3a3a46;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.container-narrow {
  max-width: 820px;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

/* ---------- Section headings ---------- */
.section-head {
  max-width: 660px;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.eyebrow-light {
  color: var(--accent);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 12px;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 13px 26px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 2px 12px -6px rgba(200, 245, 66, 0.35);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 14px 34px -10px rgba(200, 245, 66, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10, 10, 14, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 10, 14, 0.88);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--nav-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  flex: none;
  filter: drop-shadow(0 5px 16px rgba(200, 245, 66, 0.28));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}
.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}
.brand:hover .brand-mark {
  transform: translateY(-2px) rotate(-3deg);
  filter: drop-shadow(0 8px 20px rgba(200, 245, 66, 0.42));
}
.brand-text {
  line-height: 1.1;
}
.brand-text em {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  padding: 9px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 10px;
  transition: color 0.18s ease, background 0.18s ease;
}
.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.nav-link.is-active {
  color: var(--text);
}
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.nav-cta {
  margin-left: 10px;
  padding: 11px 22px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s ease;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--nav-h) + clamp(2rem, 6vw, 4.5rem)) clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(52% 44% at 78% 28%, rgba(200, 245, 66, 0.09), transparent 70%),
    radial-gradient(40% 36% at 12% 82%, rgba(200, 245, 66, 0.05), transparent 70%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 60% at 70% 30%, #000 0%, transparent 100%);
  mask-image: radial-gradient(70% 60% at 70% 30%, #000 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  padding: 11px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(200, 245, 66, 0.6);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 245, 66, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(200, 245, 66, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 22px;
}

.hl {
  position: relative;
  display: inline-block;
  color: var(--accent);
  white-space: nowrap;
}
.hl::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 7px;
  height: 11px;
  background: linear-gradient(90deg, rgba(200, 245, 66, 0.8), rgba(200, 245, 66, 0.22));
  border-radius: 6px;
  transform: skewX(-14deg);
  box-shadow: 0 8px 26px -8px rgba(200, 245, 66, 0.4);
  z-index: -1;
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 30em;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted-2);
}

.dot-lime {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

/* ---- Hero visual ---- */
.hero-visual {
  position: relative;
  min-height: 460px;
}

.hv-glow {
  position: absolute;
  inset: 8% 4%;
  background: radial-gradient(46% 50% at 50% 50%, rgba(200, 245, 66, 0.14), transparent 72%);
  filter: blur(30px);
}

.hv-card {
  position: absolute;
  inset: 6% 8%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
  animation: floatY 7s ease-in-out infinite;
}

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

.hv-card-top {
  display: flex;
  gap: 7px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.hv-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3a3a46;
}
.hv-dot:first-child {
  background: var(--accent);
}

.hv-canvas {
  position: relative;
  aspect-ratio: 4 / 3.4;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hv-canvas-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hv-mono {
  position: relative;
  color: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
}
.hv-mono svg {
  width: clamp(7.5rem, 15vw, 11rem);
  height: auto;
  display: block;
}
.hv-mono::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  background: var(--accent);
  z-index: -1;
}
.hv-canvas-meta {
  position: absolute;
  top: 16px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--muted);
}
.hv-canvas-meta-line.hv-dim {
  color: var(--muted-2);
}
.hv-lines {
  position: absolute;
  left: 20px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 38%;
}
.hv-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
}
.hv-line-lime {
  background: var(--accent);
  width: 70%;
}
.hv-line-sm {
  width: 48%;
  background: rgba(255, 255, 255, 0.09);
}
.hv-swatch {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 8px;
}
.hv-swatch i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hv-swatch i:nth-child(1) { background: var(--accent); }
.hv-swatch i:nth-child(2) { background: #f4f4f6; }
.hv-swatch i:nth-child(3) { background: #1d1d26; }
.hv-swatch i:nth-child(4) { background: #6f6f7c; }

.hv-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(18, 18, 24, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.8);
}
.hv-chip-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  flex: none;
}
.hv-chip-icon svg {
  width: 20px;
  height: 20px;
}
.hv-chip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.hv-chip-text b {
  font-size: 0.88rem;
  font-weight: 600;
}
.hv-chip-text small {
  font-size: 0.74rem;
  color: var(--muted);
}
.hv-chip-1 {
  top: 2%;
  left: -6%;
  animation: floatY 6s ease-in-out 1s infinite;
}
.hv-chip-2 {
  bottom: 8%;
  right: -4%;
  animation: floatY 7.5s ease-in-out 0.5s infinite;
}

.hv-stamp {
  position: absolute;
  top: -6%;
  right: -2%;
  width: 108px;
  height: 108px;
  color: var(--muted-2);
  animation: spin 22s linear infinite;
}
.hv-stamp-svg {
  width: 100%;
  height: 100%;
}
.hv-stamp-text {
  font-size: 7.6px;
  letter-spacing: 0.14em;
  fill: currentColor;
  font-family: var(--font-display);
  font-weight: 600;
}
.hv-stamp-center {
  fill: var(--accent);
}

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

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 16px 0;
  padding-right: 34px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-group i {
  font-style: normal;
  color: var(--accent);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Brand Identity section removed */


/* ============================================================
   TRUST
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.trust-item {
  position: relative;
  padding: 30px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 60%);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.trust-item:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 20px;
}
.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.trust-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  border-color: rgba(200, 245, 66, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.8);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}
.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.8;
}

/* Featured "Lainnya" card */
.service-card-featured {
  grid-column: 1 / -1;
  border-style: dashed;
  background: linear-gradient(120deg, rgba(200, 245, 66, 0.05), transparent 55%);
}
.service-card-featured:hover {
  border-color: var(--accent);
}
.featured-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.featured-side {
  max-width: 340px;
  text-align: right;
}
.featured-side p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 30px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}
.step-card:hover {
  border-color: rgba(200, 245, 66, 0.35);
  transform: translateY(-4px);
}
.step-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.step-card:hover::after {
  opacity: 1;
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ============================================================
   ORDER FORM
   ============================================================ */
.order-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.order-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field[hidden] {
  display: none;
}

.field-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.field-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -6px;
}

.field-hint {
  font-size: 0.8rem;
  color: var(--muted-2);
}

.field-input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.field-input::placeholder {
  color: var(--muted-2);
}
.field-input:hover {
  border-color: var(--border-strong);
}
.field-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 245, 66, 0.15);
  background: var(--surface-3);
}

.field-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

/* Date input */
input[type="date"].field-input {
  color-scheme: dark;
  min-height: 50px;
}

/* Select */
select.field-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239b9ba8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
select.field-input option,
select.field-input optgroup {
  background: var(--surface-3);
  color: var(--text);
}

/* ---- Paket radio cards ---- */
.paket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.paket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.paket-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.paket-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.paket-radio {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--muted-2);
  transition: border-color 0.2s ease;
}
.paket-radio i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: scale(0);
  transition: transform 0.2s ease;
}
.paket-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s ease;
}
.paket-card input:checked + .paket-radio {
  border-color: var(--accent);
}
.paket-card input:checked + .paket-radio i {
  transform: scale(1);
}
.paket-card input:checked ~ .paket-name {
  color: var(--text);
}
.paket-card:has(input:checked) {
  border-color: rgba(200, 245, 66, 0.5);
  background: var(--accent-soft);
}
.paket-card:has(input:focus-visible) {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---- Conditional custom field ---- */
.field-custom {
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

/* ---- Upload ---- */
.upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 26px 20px;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.upload-box:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.upload-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 4px;
}
.upload-icon svg {
  width: 20px;
  height: 20px;
}
.upload-title {
  font-weight: 600;
  font-size: 0.95rem;
}
.upload-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.file-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.file-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
}
.file-list .file-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-list .file-size {
  color: var(--muted-2);
  font-size: 0.75rem;
  flex: none;
}
.file-remove {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.file-remove:hover {
  color: var(--danger);
  background: rgba(255, 107, 107, 0.1);
}

.file-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

/* ---- Validation ---- */
.field-error {
  display: none;
  font-size: 0.82rem;
  color: var(--danger);
  font-weight: 500;
}
.field.invalid .field-error {
  display: block;
}
.field.invalid .field-input,
.field.invalid .paket-card {
  border-color: var(--danger);
}
.field.invalid .field-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}
.field.invalid .upload-box {
  border-color: var(--danger);
}

/* ---- Submit ---- */
.btn-submit {
  width: 100%;
  margin-top: 4px;
  padding-block: 18px;
}
.wa-icon {
  width: 20px;
  height: 20px;
}
.submit-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-2);
  margin-top: -14px;
}

/* ---- Summary ---- */
.order-summary {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 26px;
}
.summary-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.summary-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.summary-row dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  flex: none;
}
.summary-row dd {
  font-size: 0.92rem;
  font-weight: 600;
  text-align: right;
  color: var(--text);
  word-break: break-word;
}
.summary-row-wide {
  flex-direction: column;
  gap: 4px;
}
.summary-row-wide dd {
  text-align: left;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.88rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.summary-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted-2);
}
.summary-note .dot-lime {
  margin-top: 7px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item.is-open {
  border-color: rgba(200, 245, 66, 0.4);
}
.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 22px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.faq-q:hover {
  color: var(--accent);
}

.faq-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  flex: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--muted);
  transition: background 0.3s ease;
}
.faq-icon::before {
  width: 12px;
  height: 1.6px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.6px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
}
.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
  background: var(--accent-ink);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}
.faq-a-inner {
  overflow: hidden;
}
.faq-a-inner p {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.93rem;
  max-width: 58ch;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-panel {
  position: relative;
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.5rem, 4vw, 4rem);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  overflow: hidden;
}
.cta-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(55% 90% at 50% 110%, rgba(200, 245, 66, 0.12), transparent 70%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}
.cta-panel .eyebrow,
.cta-panel h2,
.cta-panel p,
.cta-panel .btn {
  position: relative;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.cta-sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 34em;
  margin: 0 auto 34px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-tagline {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin: 16px 0 12px;
}
.footer-desc {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 34ch;
  margin-bottom: 22px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--muted);
  font-size: 0.92rem;
  width: fit-content;
  transition: color 0.18s ease, transform 0.18s ease;
}
.footer-col a:hover {
  color: var(--accent);
  transform: translateX(3px);
}
.footer-note {
  color: var(--muted-2);
  font-size: 0.85rem;
}
.footer-cta-link {
  color: var(--text) !important;
  font-weight: 600;
  margin-top: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  color: var(--muted-2);
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.footer-bottom-tag {
  color: var(--muted);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}
[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
    min-height: 420px;
  }
  .hv-chip-1 {
    left: 0;
  }
  .hv-chip-2 {
    right: 0;
  }
  .hv-stamp {
    right: 0;
  }
  .service-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .order-layout {
    grid-template-columns: 1fr;
  }
  .order-summary {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(10, 10, 14, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px 24px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 12px;
  }
  .nav-link.is-active::after {
    display: none;
  }
  .nav-cta {
    margin: 10px 0 0;
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    padding: 24px 22px;
  }

  .featured-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .featured-side {
    max-width: none;
    text-align: left;
  }

  .paket-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: calc(var(--nav-h) + 2rem);
  }
  .hero-title {
    font-size: clamp(2.15rem, 11vw, 2.8rem);
  }
  .hl {
    white-space: normal;
  }
  .hero-visual {
    min-height: 360px;
  }
  .hv-chip {
    padding: 10px 14px;
  }
  .hv-chip-text small {
    display: none;
  }
  .hv-stamp {
    width: 84px;
    height: 84px;
    top: -3%;
  }
  .hero-actions .btn {
    width: 100%;
  }

  .service-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .order-form {
    padding: 1.4rem 1.15rem;
    border-radius: 18px;
  }
  .summary-title {
    font-size: 1.05rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
