:root {
  --bg: #0a0a0c;
  --bg-soft: #0d0e12;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f1f2ee;
  --muted: #a4a8b0;
  --faint: #676c76;
  --accent: #10b981;
  --accent-2: #34d399;
  --accent-soft: rgba(16, 185, 129, 0.12);
  --accent-glow: rgba(16, 185, 129, 0.28);
  --font-sans: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-serif: "Instrument Serif", Georgia, serif;
  --container: 1160px;
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.9s;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
::selection { background: var(--accent); color: #06110d; }
img { max-width: 100%; display: block; border-radius: var(--radius-sm); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
.mono { font-family: var(--font-mono); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #23262d; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container-narrow { --container: 820px; }
.section { padding: clamp(5rem, 10vw, 8.5rem) 0; position: relative; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 1.1rem;
}
.label-sep { color: var(--faint); }
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 600;
  line-height: 1.15; letter-spacing: -0.02em;
}
.section-sub { color: var(--muted); margin-top: 1rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55rem; padding: 0.85rem 1.7rem; border-radius: 999px;
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.35s var(--ease);
}
.btn-primary { background: var(--accent); color: #06110d; }
.btn-primary:hover { background: var(--accent-2); box-shadow: 0 8px 30px -6px var(--accent-glow); }
.btn-ghost { border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-2); box-shadow: 0 8px 30px -12px var(--accent-glow); }
.btn .btn-arrow { transition: transform 0.35s var(--ease); }
.btn:hover .btn-arrow { transform: translate(2px, -2px); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1rem; }
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
.noise {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAA5OTkAAABMTExERERmZmYzMzMyMjJec5MzAAAACHRSTlMAMwA1MzMzM7O0s14AAABJSURBVDjLY2AYBaNg2AJGJiBpCqSNgDQR0kZAmghpIyBNhLQRECZC2ghIEyFtBIQJkDYC0kRIGwFhAqSNgDQR0kZAmAhpIwDCAQC+DAoR8j6q6QAAAABJRU5ErkJggg==");
  background-repeat: repeat; image-rendering: pixelated;
}
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 120; box-shadow: 0 0 12px var(--accent-glow);
}
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: transform 0.4s var(--ease), padding 0.4s var(--ease), background 0.4s, border-color 0.4s;
  padding: 10px 0; border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 1px 0 0 rgba(16, 185, 129, 0.05);
  padding: 5px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo-img { height: 128px; width: auto; display: block; transition: transform 0.3s var(--ease); }
.logo-navbar:hover .logo-img { transform: scale(1.05); }
.nav-links { display: flex; gap: 2rem; }
.nav-link {
  position: relative; font-size: 0.92rem; color: var(--muted);
  transition: color 0.3s; padding: 0.3rem 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.btn-nav { padding: 0.6rem 1.3rem; font-size: 0.88rem; }
.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  padding: 8px; z-index: 210;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: transform 0.35s var(--ease), opacity 0.3s; }
.nav-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.8rem; padding: 5rem 2rem 2rem; overflow-y: auto; opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 1rem;}
.mobile-link { font-size: 1.35rem; font-weight: 500; color: var(--muted); transition: color 0.3s; }
.mobile-link:hover { color: var(--accent-2); }

.mobile-menu .btn {
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
}
#themeToggleMobile {
  margin-top: 0;
  font-size: 0.85rem;
}

.hero {
  min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; position: relative;
  padding: 8.5rem 0 4rem; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0; opacity: 0.7; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.006) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.006) 1px, transparent 1px);
  background-size: 80px 80px;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(60px);
  animation: drift 14s ease-in-out infinite alternate;
}
.orb-1 {
  width: 480px; height: 480px; top: -160px; right: -80px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10), transparent 65%);
}
.orb-2 {
  width: 380px; height: 380px; bottom: -120px; left: -100px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08), transparent 65%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.08); }
}
.hero-inner {
  position: relative; display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center; gap: clamp(2.5rem, 6vw, 5rem);
}
.hero-inner > *, .about-grid > * { min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 1rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface);
  font-size: 0.82rem; color: var(--muted); margin-bottom: 1.6rem;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-2); position: relative;
}
.pulse-dot::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 1px solid var(--accent-2);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.hero-title {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem); font-weight: 600;
  line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 1.4rem;
}
.hero-title em, .contact-title em {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; color: var(--accent-2); letter-spacing: 0;
}
.hero-desc { color: var(--muted); font-size: 1.05rem; max-width: 34rem; margin-bottom: 2.2rem; }
.hero-desc strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero-meta { display: flex; align-items: center; gap: 0.9rem; color: var(--faint); font-size: 0.88rem; }
.meta-item { display: inline-flex; align-items: center; gap: 0.45rem; }
.meta-divider { color: var(--line-strong); }
#roleRotator { color: var(--accent-2); transition: opacity 0.35s, transform 0.35s var(--ease); display: inline-block; }
#roleRotator.swap { opacity: 0; transform: translateY(6px); }
.caret { color: var(--accent-2); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero-visual { position: relative; }
.code-card {
  position: relative; border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}
.code-head {
  display: flex; align-items: center; gap: 7px;
  padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--line);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.code-file { margin-left: auto; font-size: 0.72rem; color: var(--faint); }
.code-body {
  padding: 1.4rem 1.5rem 1.6rem;
  font-family: var(--font-mono); font-size: 0.82rem;
  line-height: 1.85; overflow-x: auto;
}
.c-comment { color: var(--faint); }
.c-kw { color: var(--accent-2); }
.c-var { color: var(--text); }
.c-str { color: #e8e6df; }
.c-punc { color: var(--faint); }
.chip {
  position: absolute; padding: 0.5rem 0.95rem;
  border-radius: 999px; border: 1px solid var(--line);
  background: rgba(13, 14, 18, 0.92);
  font-size: 0.75rem; color: var(--muted);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.6);
  animation: float 6s ease-in-out infinite;
}
.chip-1 { top: -16px; left: -14px; animation-delay: 0s; }
.chip-2 { bottom: 18%; right: -20px; animation-delay: 1.4s; }
.chip-3 { bottom: -16px; left: 14%; animation-delay: 2.6s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-stats {
  position: relative; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: 2.2rem; border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700;
  letter-spacing: -0.02em; color: var(--text);
  font-variant-numeric: tabular-nums;
}
.stat-num .accent { color: var(--accent-2); }
.stat-label { font-size: 0.82rem; color: var(--faint); }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); display: flex;
  flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--faint); transition: color 0.3s;
}
.scroll-hint:hover { color: var(--accent-2); }
.mouse {
  width: 24px; height: 38px; border: 1.5px solid currentColor;
  border-radius: 14px; display: flex; justify-content: center; padding-top: 7px;
}
.wheel {
  width: 3px; height: 7px; border-radius: 3px;
  background: currentColor; animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.scroll-text { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; }
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.1rem 0; overflow: hidden; background: var(--bg-soft);
}
.marquee-track {
  display: flex; align-items: center; gap: 2.5rem;
  width: max-content; animation: marquee 20s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--faint); white-space: nowrap;
  transition: color 0.3s;
}
.marquee:hover .marquee-item { color: var(--muted); }
.sep { color: var(--accent); font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
.about-grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.about-text p { color: var(--muted); margin-bottom: 1.3rem; font-size: 1.03rem; }
.about-text p em { color: var(--text); font-style: italic; }
.about-text p strong { color: var(--text); font-weight: 600; }
.about-image-wrap {
  margin: -1.6rem -1.7rem 1.2rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.about-image {
  width: 100%; height: 220px; object-fit: cover;
  display: block; border-radius: 0;
  transition: transform 0.6s var(--ease);
}
.facts-card:hover .about-image { transform: scale(1.05); }
.facts-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: 1.6rem 1.7rem;
  display: flex; flex-direction: column; overflow: hidden;
}
.fact-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; padding: 0.8rem 0; border-bottom: 1px dashed var(--line);
}
.fact-row:last-child { border-bottom: 0; }
.fact-key { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.fact-val { font-size: 0.92rem; font-weight: 500; text-align: right; }
.status-open { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent-2); }
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2);
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service-card {
  position: relative; padding: 2.1rem 1.9rem;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--surface); overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(16, 185, 129, 0.12);
}
.service-num {
  position: absolute; top: 1.4rem; right: 1.6rem;
  font-size: 0.78rem; color: var(--faint); letter-spacing: 0.1em;
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2); background: var(--accent-soft);
  border: 1px solid rgba(16, 185, 129, 0.25);
  margin-bottom: 1.5rem;
  transition: transform 0.45s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.7rem; }
.service-card p { color: var(--muted); font-size: 0.93rem; margin-bottom: 1.3rem; }
.service-list li {
  position: relative; padding-left: 1.4rem;
  font-size: 0.88rem; color: var(--muted); margin-bottom: 0.5rem;
}
.service-list li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--accent); transform: rotate(45deg);
}
.skills-list { display: flex; flex-direction: column; gap: 1.1rem; max-width: 860px; }
.skill-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 0.6rem 1.5rem; padding: 1.3rem 1.5rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 0.4s, background 0.4s;
}
.skill-row:hover { border-color: rgba(16, 185, 129, 0.35); background: var(--surface-2); }
.skill-info { display: flex; flex-direction: column; gap: 0.1rem; }
.skill-name { font-weight: 600; font-size: 1.02rem; }
.skill-desc { font-size: 0.82rem; color: var(--faint); }
.skill-pct { color: var(--accent-2); font-size: 0.95rem; align-self: start; }
.skill-bar {
  grid-column: 1 / -1; height: 5px; border-radius: 5px;
  background: rgba(255, 255, 255, 0.06); overflow: hidden;
}
.skill-fill {
  display: block; height: 100%; width: 0; border-radius: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px var(--accent-glow);
  transition: width 1.4s var(--ease);
}
.reveal.in .skill-fill { width: var(--w); }
.timeline {
  position: relative; max-width: 720px; padding-left: 2.2rem;
}
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--accent), var(--line) 60%, transparent);
}
.timeline-item { position: relative; padding-bottom: 2.4rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -2.2rem; top: 8px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--accent);
  transition: background 0.3s, box-shadow 0.3s;
}
.timeline-item:hover::before { background: var(--accent); box-shadow: 0 0 16px var(--accent-glow); }
.timeline-content {
  padding: 1.5rem 1.7rem; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--surface);
  transition: transform 0.45s var(--ease), border-color 0.4s;
}
.timeline-item:hover .timeline-content {
  transform: translateX(6px);
  border-color: rgba(16, 185, 129, 0.35);
}
.timeline-step {
  display: inline-block; font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 0.5rem;
}
.timeline-content h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.4rem; }
.timeline-content p { color: var(--muted); font-size: 0.92rem; }
.timeline-content p em { color: var(--text); }
.timeline-item.final .timeline-content {
  border-color: rgba(16, 185, 129, 0.45);
  background: linear-gradient(140deg, var(--accent-soft), transparent 60%);
}
.timeline-item.final::before { background: var(--accent); box-shadow: 0 0 16px var(--accent-glow); }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--surface); overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 28px 60px -24px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(16, 185, 129, 0.1);
}
.project-thumb {
  position: relative; aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-bottom: 1px solid var(--line);
  background-size: cover; background-position: center;
}
.project-thumb::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.85) 0%, rgba(10,10,12,0.2) 50%, transparent 100%);
  z-index: 1;
}
.project-thumb::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 50% 50%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 20%, transparent 80%);
}
.thumb-web { background-image: url('../images/landingpagebg.jpg'), linear-gradient(150deg, #0f1a16, #0a0a0c 70%); }
.thumb-bot { background-image: url('../images/companyprofilebg.jpg'), linear-gradient(150deg, #101820, #0a0a0c 70%); }
.thumb-game { background-image: url('../images/websitekatalogprodukbg.jpg'), linear-gradient(150deg, #181410, #0a0a0c 70%); }
.thumb-cat {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  padding: 0.3rem 0.75rem; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(10, 10, 12, 0.65);
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-2);
}
.project-body {
  display: flex; flex-direction: column; flex: 1;
  padding: 1.5rem 1.5rem 1.6rem;
}
.project-name { font-size: 1.18rem; font-weight: 600; margin-bottom: 0.5rem; }
.project-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.2rem; }
.project-tech {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  margin-bottom: 1.4rem;
}
.chip-tech {
  padding: 0.28rem 0.7rem; border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}
.project-card:hover .chip-tech { border-color: rgba(16, 185, 129, 0.3); color: var(--text); }
.cta-card:hover { border-color: var(--accent); }
.cta-plus {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px dashed var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2); font-size: 1.6rem; font-weight: 300;
  margin-bottom: 0.6rem;
  transition: transform 0.5s var(--ease), border-color 0.3s;
}
.cta-card:hover .cta-plus { transform: rotate(90deg); border-color: var(--accent); }
.cta-card h3 { font-size: 1.15rem; font-weight: 600; }
.cta-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.1rem; }
.stack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.stack-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.35rem; padding: 1.7rem 1rem 1.4rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); text-align: center;
  transition: transform 0.45s var(--ease), border-color 0.35s, background 0.35s;
}
.stack-item:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  background: var(--surface-2);
}
.stack-icon {
  color: var(--muted); margin-bottom: 0.5rem;
  transition: color 0.35s, transform 0.45s var(--ease);
}
.stack-item:hover .stack-icon {
  color: var(--accent-2); transform: scale(1.15);
}
.stack-name { font-weight: 600; font-size: 0.95rem; }
.stack-sub { font-size: 0.68rem; color: var(--faint); letter-spacing: 0.08em; }
.hobby-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.hobby-card {
  padding: 1.6rem 1.3rem; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--surface);
  transition: transform 0.45s var(--ease), border-color 0.35s;
}
.hobby-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  border-color: rgba(16, 185, 129, 0.4);
}
.hobby-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2); background: var(--accent-soft);
  margin-bottom: 1rem;
  transition: transform 0.45s var(--ease);
}
.hobby-card:hover .hobby-icon { transform: rotate(-8deg) scale(1.08); }
.hobby-card h3 { font-size: 0.98rem; font-weight: 600; margin-bottom: 0.3rem; }
.hobby-card p { font-size: 0.83rem; color: var(--muted); }
.faq-list { display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); overflow: hidden;
  transition: border-color 0.35s, background 0.35s;
}
.faq-item.open { border-color: rgba(16, 185, 129, 0.4); background: var(--surface-2); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; padding: 1.25rem 1.5rem;
  text-align: left; font-weight: 500; font-size: 1rem;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--accent-2); }
.faq-icon {
  flex-shrink: 0; width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: transform 0.45s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--accent); border-color: var(--accent); color: #06110d;
}
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 1.5rem 1.4rem; color: var(--muted); font-size: 0.93rem; }
.faq-a-inner a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.contact-box {
  position: relative; text-align: center;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}
.contact-glow {
  position: absolute; top: -180px; left: 50%;
  transform: translateX(-50%); width: 520px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18), transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.contact-box .label { justify-content: center; }
.contact-title {
  font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 600;
  line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 1.1rem;
}
.contact-desc { color: var(--muted); max-width: 30rem; margin: 0 auto 2rem; }
.email-row {
  display: inline-flex; align-items: center; gap: 0.8rem;
  flex-wrap: wrap; justify-content: center;
  padding: 0.55rem 0.55rem 0.55rem 1.3rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(10, 10, 12, 0.6); margin-bottom: 2.2rem;
}
.email-text {
  font-family: var(--font-mono); font-size: 0.9rem;
  color: var(--text); transition: color 0.3s;
}
.email-text:hover { color: var(--accent-2); }
.copy-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  border: 1px solid var(--line-strong); font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.copy-btn:hover { color: var(--accent-2); border-color: var(--accent); }
.copy-btn.copied { color: #06110d; background: var(--accent); border-color: var(--accent); }
.contact-actions {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 1rem; margin-bottom: 2rem;
}
.contact-meta {
  display: flex; justify-content: center; gap: 0.9rem;
  font-size: 0.78rem; color: var(--faint); letter-spacing: 0.05em;
}
.meta-dot { color: var(--accent); }
.footer {
  border-top: 1px solid var(--line);
  padding: 3.2rem 0 2rem; background: var(--bg-soft);
}
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 2rem; flex-wrap: wrap;
  padding-bottom: 2.2rem; border-bottom: 1px solid var(--line);
}
.footer-brand p { color: var(--faint); font-size: 0.88rem; margin-top: 0.5rem; }
.footer-nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-nav a { font-size: 0.9rem; color: var(--muted); transition: color 0.3s; }
.footer-nav a:hover { color: var(--accent-2); }
.socials { display: flex; gap: 0.7rem; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: color 0.3s, border-color 0.3s, transform 0.4s var(--ease);
}
.social-link:hover {
  color: var(--accent-2); border-color: var(--accent);
  transform: translateY(-4px);
}
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.6rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--faint); }
.to-top { font-size: 0.78rem; color: var(--muted); transition: color 0.3s; }
.to-top:hover { color: var(--accent-2); }
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--surface);
  color: var(--muted); cursor: pointer;
  transition: all 0.35s var(--ease); z-index: 101; position: relative;
}
.theme-toggle:hover {
  border-color: var(--accent); color: var(--accent-2);
  background: var(--accent-soft); transform: rotate(15deg);
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon, .theme-toggle .icon-sun {
  position: absolute;
  transition: transform 0.5s var(--ease), opacity 0.3s;
}
.theme-toggle .icon-moon { opacity: 1; transform: scale(1) rotate(0deg); }
.theme-toggle .icon-sun { opacity: 0; transform: scale(0.5) rotate(-90deg); }
body[data-theme="light"] .theme-toggle .icon-moon { opacity: 0; transform: scale(0.5) rotate(90deg); }
body[data-theme="light"] .theme-toggle .icon-sun { opacity: 1; transform: scale(1) rotate(0deg); }

body[data-theme="light"] {
  --bg: #f8f9fa; --bg-soft: #f0f2f5;
  --surface: rgba(0, 0, 0, 0.03); --surface-2: rgba(0, 0, 0, 0.06);
  --line: rgba(0, 0, 0, 0.08); --line-strong: rgba(0, 0, 0, 0.16);
  --text: #1a1a2e; --muted: #5a5a6e; --faint: #8a8a9e;
  --accent: #059669; --accent-2: #10b981;
  --accent-soft: rgba(16, 185, 129, 0.12);
  --accent-glow: rgba(16, 185, 129, 0.15);
}
body[data-theme="light"] .header.scrolled {
  background: rgba(248, 249, 250, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1), 0 1px 0 0 rgba(16, 185, 129, 0.05);
}
body[data-theme="light"] .mobile-menu { background: rgba(248, 249, 250, 0.95); }
body[data-theme="light"] .code-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(240, 242, 245, 0.95));
  border-color: var(--line);
}
body[data-theme="light"] .chip {
  background: rgba(255, 255, 255, 0.95); border-color: var(--line);
}
body[data-theme="light"] .hero-grid {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}
body[data-theme="light"] .thumb-web {
  background-image: url('../images/landingpagebg.jpg'), linear-gradient(150deg, #e8f5e9, #f8f9fa 70%);
}
body[data-theme="light"] .thumb-bot {
  background-image: url('../images/companyprofilebg.jpg'), linear-gradient(150deg, #e3f2fd, #f8f9fa 70%);
}
body[data-theme="light"] .thumb-game {
  background-image: url('../images/websitekatalogprodukbg.jpg'), linear-gradient(150deg, #fff3e0, #f8f9fa 70%);
}
body[data-theme="light"] .project-thumb::before {
  background: linear-gradient(to top, rgba(248,249,250,0.9) 0%, rgba(248,249,250,0.3) 50%, transparent 100%);
}
body[data-theme="light"] .project-thumb::after {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}
body[data-theme="light"] .c-comment { color: var(--faint); }
body[data-theme="light"] .c-kw { color: #059669; }
body[data-theme="light"] .c-var { color: var(--text); }
body[data-theme="light"] .c-str { color: #374151; }
body[data-theme="light"] .c-punc { color: var(--faint); }
body[data-theme="light"] .marquee { background: var(--bg-soft); border-color: var(--line); }
body[data-theme="light"] .marquee-item { color: var(--faint); }
body[data-theme="light"] .marquee:hover .marquee-item { color: var(--muted); }
body[data-theme="light"] .footer { background: var(--bg-soft); border-color: var(--line); }
body[data-theme="light"] .contact-box {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.8), rgba(240, 242, 245, 0.6));
}
body[data-theme="light"] .email-row { background: rgba(255, 255, 255, 0.8); }
body[data-theme="light"] .copy-btn.copied { color: #ffffff; background: var(--accent); border-color: var(--accent); }
body[data-theme="light"] ::selection { background: var(--accent); color: #ffffff; }
body[data-theme="light"] .faq-item.open .faq-icon { color: #ffffff; }
body[data-theme="light"] .btn-small.fill { color: #ffffff; }
body[data-theme="light"] .btn-small.fill:hover { color: #ffffff; }
body[data-theme="light"] .wa-float { color: #ffffff; }
body[data-theme="light"] .nav-toggle span { background: var(--text); }
body[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg); }
body[data-theme="light"] ::-webkit-scrollbar-thumb { background: #d1d5db; }
body[data-theme="light"] ::-webkit-scrollbar-thumb:hover { background: var(--accent); }
body { transition: background-color 0.5s ease, color 0.5s ease; }

.info-box {
  margin: 1.2rem 0 1.5rem; padding: 1.2rem 1.3rem;
  border-radius: var(--radius-sm); border: 1px dashed var(--line);
  background: var(--surface);
}
.info-box h4 {
  font-size: 0.82rem; font-weight: 600; color: var(--accent-2);
  margin-bottom: 0.7rem; display: flex; align-items: center; gap: 0.4rem;
}
.info-box h4::before { content: "ℹ"; font-size: 0.9rem; }
.info-box ul { list-style: none; padding: 0; margin: 0; }
.info-box ul li {
  position: relative; padding-left: 1.3rem;
  font-size: 0.82rem; color: var(--muted);
  margin-bottom: 0.45rem; line-height: 1.55;
}
.info-box ul li:last-child { margin-bottom: 0; }
.info-box ul li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent-2); font-weight: 600; font-size: 0.75rem;
}
.info-box ul li strong { color: var(--text); font-weight: 500; }
.domain-note {
  max-width: 650px; margin: 2.5rem auto 0;
  padding: 1.4rem 1.8rem; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface);
  text-align: center;
}
.domain-note p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin: 0; }
.domain-note p:first-child { font-weight: 600; color: var(--text); margin-bottom: 0.4rem; font-size: 0.95rem; }
body[data-theme="light"] .info-box { background: rgba(0, 0, 0, 0.02); border-color: rgba(0, 0, 0, 0.1); }
body[data-theme="light"] .domain-note { background: rgba(0, 0, 0, 0.02); }

/* ===== NEW SECTIONS: EDUKASI, ALUR, CONTOH, DOMAIN HOSTING ===== */

/* Edukasi Section */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.edu-card {
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.edu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}
.edu-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  background: var(--accent-soft);
  border: 1px solid rgba(16, 185, 129, 0.25);
  margin: 0 auto 1.2rem;
  transition: transform 0.45s var(--ease);
}
.edu-card:hover .edu-icon { transform: scale(1.1) rotate(-5deg); }
.edu-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.edu-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.edu-arrow {
  display: flex; justify-content: center;
  align-items: center;
  color: var(--accent);
  margin: -0.5rem 0;
}
.edu-arrow svg { width: 20px; height: 20px; }

/* Alur Visual Section */
.alur-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.alur-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  position: relative;
}
.alur-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  z-index: 0;
}
.alur-step {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease);
}
.alur-item:hover .alur-step {
  background: var(--accent);
  color: #06110d;
  box-shadow: 0 0 20px var(--accent-glow);
}
.alur-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.alur-desc {
  font-size: 0.78rem;
  color: var(--faint);
  line-height: 1.5;
  max-width: 140px;
}
.alur-note {
  text-align: center;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(16, 185, 129, 0.3);
  background: var(--accent-soft);
  max-width: 700px;
  margin: 0 auto;
}
.alur-note p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* Contoh Situasi */
.contoh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.contoh-card {
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.45s var(--ease), border-color 0.35s;
}
.contoh-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.35);
}
.contoh-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contoh-card ul { list-style: none; padding: 0; }
.contoh-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.contoh-card li:last-child { margin-bottom: 0; }
.contoh-check { color: var(--accent-2); flex-shrink: 0; margin-top: 2px; }
.contoh-cross { color: #ef4444; flex-shrink: 0; margin-top: 2px; }

/* Domain & Hosting Packages */
.dh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.dh-card {
  position: relative;
  padding: 2.1rem 1.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.dh-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(16, 185, 129, 0.12);
}
.dh-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
.dh-badge.popular {
  color: var(--accent-2);
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
}
.dh-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  background: var(--accent-soft);
  border: 1px solid rgba(16, 185, 129, 0.25);
  margin-bottom: 1.3rem;
  transition: transform 0.45s var(--ease);
}
.dh-card:hover .dh-icon { transform: scale(1.08) rotate(-4deg); }
.dh-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.3rem; }
.dh-price {
  color: var(--accent-2);
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-mono);
  margin-bottom: 0.8rem;
}
.dh-card > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.dh-list { margin-bottom: 1.5rem; }
.dh-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.87rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.dh-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
  transform: rotate(45deg);
}
.dh-note {
  margin-top: auto;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.04);
}
.dh-note p {
  font-size: 0.8rem;
  color: var(--faint);
  line-height: 1.55;
  margin: 0;
}

/* Info Banner */
.info-banner {
  max-width: 820px;
  margin: 0 auto 3rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.05);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.info-banner-icon {
  color: var(--accent-2);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.info-banner h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.info-banner p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Penjelasan sebelum DH */
.dh-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.dh-intro p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Section connector */
.section-connector {
  text-align: center;
  margin: 2rem 0;
}
.section-connector svg {
  color: var(--accent);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Trust badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.5rem;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  margin: 2.5rem auto 1rem;
}
.trust-badge span {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

/* Page header for subpages */
.page-header {
  padding-top: 8rem;
  padding-bottom: 3rem;
  text-align: center;
}
.page-header .section-title {
  margin-bottom: 0.8rem;
}
.page-header .section-sub {
  max-width: 560px;
  margin: 0 auto;
}

/* Workflow on layanan page */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.workflow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.7rem 1rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  text-align: center;
  transition: transform 0.45s var(--ease), border-color 0.35s, background 0.35s;
}
.workflow-item:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  background: var(--surface-2);
}
.workflow-icon {
  color: var(--muted);
  margin-bottom: 0.5rem;
  transition: color 0.35s, transform 0.45s var(--ease);
}
.workflow-item:hover .workflow-icon {
  color: var(--accent-2);
  transform: scale(1.15);
}
.workflow-name { font-weight: 600; font-size: 0.95rem; }
.workflow-sub { font-size: 0.68rem; color: var(--faint); letter-spacing: 0.08em; }
.workflow-item > p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.6rem;
  text-align: center;
  line-height: 1.5;
}

/* Wa float */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 60px; height: 60px; background-color: var(--accent);
  color: #06110d; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
  z-index: 90;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background-color 0.3s;
}
.wa-float:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: var(--accent-2);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.6);
}

.btn-small {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 1.05rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 500;
  border: 1px solid var(--line-strong); color: var(--text);
  transition: border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.35s var(--ease);
}
.btn-small:hover {
  border-color: var(--accent); color: var(--accent-2);
  box-shadow: 0 6px 22px -10px var(--accent-glow);
}
.btn-small.fill { background: var(--accent); border-color: var(--accent); color: #06110d; }
.btn-small.fill:hover { background: var(--accent-2); color: #06110d; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .dh-grid { grid-template-columns: 1fr 1fr; }
  .stack-grid { grid-template-columns: repeat(4, 1fr); }
  .hobby-grid { grid-template-columns: repeat(3, 1fr); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .contoh-grid { grid-template-columns: 1fr; }
  .alur-grid { grid-template-columns: repeat(3, 1fr); }
  .alur-item:nth-child(3)::after { display: none; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .dh-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .hobby-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .scroll-hint { display: none; }
  .footer-top { flex-direction: column; }
  .orb { display: none !important; }
  .header.scrolled { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .mobile-menu { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .alur-grid { grid-template-columns: 1fr; }
  .alur-item::after { display: none; }
  .alur-item { margin-bottom: 1rem; }
  .workflow-grid { grid-template-columns: 1fr; }
  .info-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .hobby-grid { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .email-row { border-radius: var(--radius-sm); padding: 0.9rem 1rem; }
  .hero-actions .btn { width: 100%; }
  .chip-2 { right: -8px; }
  .chip-1 { left: -6px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 768px) {
  .wa-float { bottom: 1.5rem; right: 1.5rem; width: 52px; height: 52px; }
  .wa-float svg { width: 24px; height: 24px; }
}