/* ============================================================
   Aksamedia redesign — tokens
   ============================================================ */
:root {
  /* color */
  --bg:           #000000;
  --bg-1:         #0A0B0D;
  --bg-2:         #111316;
  --line:         rgba(255,255,255,0.08);
  --line-strong:  rgba(255,255,255,0.16);
  --text:         #FFFFFF;
  --text-muted:   rgba(255,255,255,0.62);
  --text-faint:   rgba(255,255,255,0.42);

  --cyan:         #4DD4E8;     /* accent — headline highlight, button */
  --cyan-soft:    #6FE0F0;
  --cyan-deep:    #1FA9BE;
  --cyan-glow:    rgba(77, 212, 232, 0.28);

  /* type */
  --font-sans:  'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* layout */
  --container:    1280px;
  --gutter:       clamp(20px, 4vw, 56px);
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    24px;
  --radius-pill:  999px;

  /* motion */
  --ease:         cubic-bezier(.2, .7, .2, 1);
  --ease-out:     cubic-bezier(.2, .9, .2, 1);
  --dur:          .35s;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { color-scheme: dark; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--cyan); color: #000; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 18px 0;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), padding var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav__logo svg { width: 30px; height: 30px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 6px;
}
.nav__link {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: color .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.nav__link:hover { color: var(--text); }
.nav__link.is-active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav__link.is-active::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 20px;
  background: var(--cyan);
  color: #002129;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.nav__cta:hover {
  background: var(--cyan-soft);
  box-shadow: 0 8px 28px -8px var(--cyan-glow);
  transform: translateY(-1px);
}
.nav__cta svg { width: 14px; height: 14px; }

.nav__menu-btn {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.nav__menu-btn svg { width: 20px; height: 20px; }

/* mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  padding: 92px var(--gutter) 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.nav-drawer.is-open { opacity: 1; pointer-events: auto; }
.nav-drawer__close {
  position: absolute;
  top: 24px; right: var(--gutter);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}
.nav-drawer__link svg { width: 18px; height: 18px; color: var(--text-faint); }
.nav-drawer__cta {
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--cyan);
  color: #002129;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-align: center;
  font-size: 16px;
}

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__menu-btn { display: inline-flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 96px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 96px - 80px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  display: inline-block;
}
.hero__eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px 2px 6px;
  background: rgba(77, 212, 232, 0.12);
  border-radius: var(--radius-pill);
  color: var(--cyan);
  font-weight: 600;
}

.hero__title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--text);
  text-wrap: balance;
}
.hero__title-accent { color: var(--cyan); }

.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 0 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px 18px 32px;
  background: var(--cyan);
  color: #00171C;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
  box-shadow: 0 18px 40px -16px var(--cyan-glow);
}
.btn-primary:hover {
  background: var(--cyan-soft);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -14px var(--cyan-glow);
}
.btn-primary svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  background: rgba(77, 212, 232, 0.06);
}
.btn-ghost__play {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cyan);
  display: inline-flex; align-items: center; justify-content: center;
  color: #001;
}
.btn-ghost__play svg { width: 10px; height: 10px; }

/* chevron arrow stack — recurring brand motif */
.chevron-stack {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 56px;
}
.chevron-stack svg {
  width: 24px;
  height: 24px;
  color: var(--cyan);
  animation: chevronSlide 1.8s var(--ease) infinite;
}
.chevron-stack svg:nth-child(2) { animation-delay: 0.15s; }
.chevron-stack svg:nth-child(3) { animation-delay: 0.3s; }
@keyframes chevronSlide {
  0%, 100% { transform: translateX(0); opacity: 0.55; }
  50%      { transform: translateX(6px); opacity: 1; }
}

.hero__media {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__media img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  object-position: bottom;
  border-radius: var(--radius-lg);
}
/* subtle gradient mask blends image into bg on left edge */
.hero__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 14%);
  pointer-events: none;
  z-index: 2;
}

/* hero footer strip — url + dots, mirroring the screenshot */
.hero__strip {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-faint);
  z-index: 3;
}
.hero__url {
  letter-spacing: 0.02em;
}
.hero__url::before {
  content: '◆';
  color: var(--cyan);
  margin-right: 10px;
  font-size: 9px;
  vertical-align: middle;
}
.hero__dots {
  display: inline-flex;
  gap: 8px;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(77, 212, 232, 0.4);
}
.hero__dot.is-active {
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

/* hero entry animation */
.hero-fade { animation: heroFade .9s var(--ease-out) both; }
.hero-fade--1 { animation-delay: 0.05s; }
.hero-fade--2 { animation-delay: 0.18s; }
.hero-fade--3 { animation-delay: 0.31s; }
.hero-fade--4 { animation-delay: 0.42s; }
@keyframes heroFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .hero { min-height: auto; padding-top: 110px; padding-bottom: 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; min-height: 0; }
  .hero__media { order: 2; }
  .hero__strip { position: static; margin-top: 32px; }
}

/* ============================================================
   About Us
   ============================================================ */
.about {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(77, 212, 232, 0.05) 0%, transparent 70%),
    var(--bg);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--cyan);
}

.about__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 72px;
}
.about__title {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.about__title em {
  font-style: normal;
  color: var(--cyan);
}
.about__title-strike {
  position: relative;
  display: inline-block;
}
.about__title-strike::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: 0.12em;
  height: 0.18em;
  background: var(--cyan);
  opacity: 0.22;
  z-index: -1;
}
.about__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 460px;
  justify-self: end;
}

/* split: left = pillars, right = visual card */
.about__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 24px;
  margin-bottom: 56px;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
  cursor: pointer;
}
.pillar:hover {
  border-color: rgba(77, 212, 232, 0.4);
  background: var(--bg-2);
  transform: translateY(-2px);
}
.pillar__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}
.pillar__body h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pillar__body p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.pillar__chev {
  width: 20px; height: 20px;
  color: var(--text-faint);
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.pillar:hover .pillar__chev {
  color: var(--cyan);
  transform: translateX(4px);
}

/* mission card on right */
.about__card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  background:
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.about__card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 240px; height: 240px;
  background: radial-gradient(circle at top right, var(--cyan-glow), transparent 70%);
  pointer-events: none;
}
.about__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.about__card-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.about__card-quote {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--text);
}
.about__card-quote span { color: var(--cyan); }
.about__card-meta {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about__card-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-deep), var(--cyan));
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #002;
  flex-shrink: 0;
}
.about__card-meta-text {
  font-size: 14px;
}
.about__card-meta-text strong { display: block; font-weight: 700; }
.about__card-meta-text span { color: var(--text-faint); font-size: 13px; }

/* stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-1);
  overflow: hidden;
}
.stat {
  padding: 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--text);
  font-feature-settings: 'tnum' 1;
}
.stat__num em {
  font-style: normal;
  color: var(--cyan);
}
.stat__label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* about cta row */
.about__cta-row {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, var(--bg-1), transparent 60%);
}
.about__cta-text {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.about__cta-text span { color: var(--cyan); }

@media (max-width: 960px) {
  .about__head, .about__split { grid-template-columns: 1fr; gap: 32px; }
  .about__lead { justify-self: start; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .about__cta-row { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   Section heading shared
   ============================================================ */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.section-head h2 em { font-style: normal; color: var(--cyan); }
.section-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 460px;
  justify-self: end;
}
@media (max-width: 960px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head p { justify-self: start; }
}

/* ============================================================
   Layanan (services)
   ============================================================ */
.services {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(50% 40% at 0% 100%, rgba(77, 212, 232, 0.05), transparent 70%),
    var(--bg);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.svc {
  --acc:        var(--cyan);
  --acc-soft:   rgba(77, 212, 232, 0.12);
  --acc-line:   rgba(77, 212, 232, 0.28);
  --acc-glow:   rgba(77, 212, 232, 0.22);
  --acc-tint:   rgba(77, 212, 232, 0.05);

  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, var(--acc-tint) 0%, transparent 50%),
    var(--bg-1);
  overflow: hidden;
  min-height: 320px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  cursor: pointer;
}

/* per-card accent palettes */
.svc--cyan {
  --acc:      #4DD4E8;
  --acc-soft: rgba(77, 212, 232, 0.12);
  --acc-line: rgba(77, 212, 232, 0.30);
  --acc-glow: rgba(77, 212, 232, 0.30);
  --acc-tint: rgba(77, 212, 232, 0.06);
}
.svc--violet {
  --acc:      #B8A4FF;
  --acc-soft: rgba(184, 164, 255, 0.14);
  --acc-line: rgba(184, 164, 255, 0.32);
  --acc-glow: rgba(124, 92, 255, 0.32);
  --acc-tint: rgba(124, 92, 255, 0.08);
}
.svc--lime {
  --acc:      #6EE7A3;
  --acc-soft: rgba(110, 231, 163, 0.12);
  --acc-line: rgba(110, 231, 163, 0.30);
  --acc-glow: rgba(110, 231, 163, 0.28);
  --acc-tint: rgba(110, 231, 163, 0.06);
}
.svc--ember {
  --acc:      #FFA07A;
  --acc-soft: rgba(255, 160, 122, 0.13);
  --acc-line: rgba(255, 160, 122, 0.32);
  --acc-glow: rgba(255, 106, 61, 0.30);
  --acc-tint: rgba(255, 106, 61, 0.07);
}

/* layered bg fx — colored glow + subtle grid */
.svc__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}
.svc__bg-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 75%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--acc-glow), transparent 65%);
  filter: blur(20px);
  opacity: 0.65;
  transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.svc__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(70% 60% at 100% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(70% 60% at 100% 0%, black 0%, transparent 70%);
  opacity: 0.7;
}

.svc:hover {
  border-color: var(--acc-line);
  transform: translateY(-4px);
}
.svc:hover .svc__bg-glow {
  opacity: 1;
  transform: scale(1.1);
}

.svc__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.svc__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--acc-soft);
  border: 1px solid var(--acc-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--acc);
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc:hover .svc__icon {
  background: color-mix(in srgb, var(--acc) 22%, transparent);
  transform: rotate(-4deg) scale(1.04);
  box-shadow: 0 8px 28px -8px var(--acc-glow);
}
.svc__icon svg { width: 28px; height: 28px; }
.svc__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}

.svc__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.svc__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
.svc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.svc__tag {
  padding: 4px 10px;
  border: 1px solid var(--acc-line);
  background: var(--acc-soft);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--acc);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  transition: background .2s var(--ease);
}
.svc:hover .svc__tag {
  background: color-mix(in srgb, var(--acc) 18%, transparent);
}

.svc__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .25s var(--ease), gap .25s var(--ease);
  position: relative;
  z-index: 1;
  align-self: flex-start;
}
.svc:hover .svc__cta {
  color: var(--acc);
  gap: 14px;
}
.svc__cta svg { width: 16px; height: 16px; }

@media (max-width: 760px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc { padding: 28px; min-height: auto; }
}

/* ============================================================
   Klien (clients) marquee
   ============================================================ */
.clients {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.clients__count {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}
.clients__count strong {
  color: var(--cyan);
  font-weight: 600;
  font-size: 15px;
}
.clients__count .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}

.marquee {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  --gap: 20px;
  --speed: 50s;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee + .marquee { margin-top: 16px; }
.marquee__track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: marquee var(--speed) linear infinite;
}
.marquee--reverse .marquee__track {
  animation-direction: reverse;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
@keyframes marquee {
  to { transform: translateX(calc(-50% - var(--gap) / 2)); }
}

.client-logo {
  flex-shrink: 0;
  width: 220px;
  height: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.client-logo:hover {
  color: var(--text);
  border-color: rgba(77, 212, 232, 0.3);
  background: var(--bg-2);
}
.client-logo--mono { font-family: var(--font-mono); font-weight: 500; font-size: 16px; letter-spacing: 0.06em; }
.client-logo--serif { font-family: ui-serif, Georgia, serif; font-style: italic; font-weight: 600; }
.client-logo--wide { letter-spacing: 0.18em; font-weight: 600; font-size: 16px; }
.client-logo--stack { flex-direction: column; gap: 2px; line-height: 1.1; font-size: 16px; }
.client-logo__sub { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; color: var(--text-faint); }

@media (max-width: 760px) {
  .client-logo { width: 180px; height: 80px; font-size: 16px; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  position: relative;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-cta {
  position: relative;
  padding: clamp(64px, 8vw, 120px) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  text-align: center;
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(77, 212, 232, 0.10), transparent 70%);
}
.footer-cta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.6;
}
.footer-cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  display: inline-block;
}
.footer-cta__title {
  font-size: clamp(36px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 auto 32px;
  max-width: 900px;
  text-wrap: balance;
}
.footer-cta__title em { font-style: normal; color: var(--cyan); }
.footer-cta__sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.footer-cta__actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-main {
  padding: 80px 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.footer-brand__tag {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 320px;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-meta__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-meta__item svg {
  width: 16px; height: 16px;
  margin-top: 2px;
  color: var(--cyan);
}
.footer-meta__item strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-meta__item a { color: var(--text-muted); transition: color .2s var(--ease); }
.footer-meta__item a:hover { color: var(--cyan); }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 15px;
  color: var(--text-muted);
  transition: color .2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover { color: var(--cyan); }
.footer-col a .badge {
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--cyan);
  border-color: rgba(77, 212, 232, 0.3);
}

.footer-bottom {
  padding: 24px 0 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-faint);
}
.footer-bottom__made {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom__made .heart {
  display: inline-block;
  color: var(--cyan);
  animation: heartbeat 1.6s var(--ease) infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.18); }
}
.footer-socials {
  display: inline-flex;
  gap: 8px;
}
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.footer-socials a:hover {
  color: var(--cyan);
  border-color: rgba(77, 212, 232, 0.3);
  background: rgba(77, 212, 232, 0.06);
}
.footer-socials svg { width: 16px; height: 16px; }

@media (max-width: 960px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 0 24px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   Studi Kasus (case studies / projects)
   ============================================================ */
.cases {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(77, 212, 232, 0.05), transparent 70%),
    var(--bg);
}

.cases__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}
.cases__head h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.cases__head h2 em { font-style: normal; color: var(--cyan); }

.cases__filters {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--bg-1);
  flex-wrap: wrap;
}
.cases__filter {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: color .2s var(--ease), background .2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.cases__filter:hover { color: var(--text); }
.cases__filter.is-active {
  color: #001;
  background: var(--cyan);
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  transition: opacity .25s var(--ease);
}
.cases__grid.is-loading { opacity: 0.85; }
.cases__grid > .case--feature {
  grid-column: span 2;
}

.cases__empty {
  grid-column: 1 / -1;
  padding: 80px 0;
  text-align: center;
  color: var(--text-faint);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}

.case {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-1);
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.case:hover {
  border-color: rgba(77, 212, 232, 0.3);
  transform: translateY(-4px);
}

.case__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.case--feature .case__media { aspect-ratio: 16 / 9; }

.case__cover {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.case:hover .case__cover { transform: scale(1.05); }

.case__cover-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0) 30%);
  pointer-events: none;
}

.case__platforms {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  gap: 6px;
  z-index: 2;
}
.case__platform {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}
.case__platform--web     { color: var(--cyan); border-color: rgba(77,212,232,0.4); }
.case__platform--android { color: #6ee7a3; border-color: rgba(110,231,163,0.35); }
.case__platform--ios     { color: #c7c7d6; border-color: rgba(199,199,214,0.35); }
.case__platform--desktop { color: #f0b86e; border-color: rgba(240,184,110,0.35); }

.case__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case__client {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.case__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.35;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  color: var(--text);
}
.case--feature .case__title { font-size: 22px; }
.case__title .arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  color: var(--text-muted);
}
.case:hover .case__title .arrow {
  background: var(--cyan);
  color: #001;
  border-color: var(--cyan);
  transform: rotate(-45deg);
}
.case__title .arrow svg { width: 14px; height: 14px; }

.cases__more {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 960px) {
  .cases__head { grid-template-columns: 1fr; align-items: start; }
  .cases__filters { overflow-x: auto; max-width: 100%; }
  .cases__grid { grid-template-columns: repeat(2, 1fr); }
  .cases__grid > .case--feature { grid-column: span 2; }
}
@media (max-width: 640px) {
  .cases__grid { grid-template-columns: 1fr; }
  .cases__grid > .case--feature { grid-column: span 1; }
  .case--feature .case__title { font-size: 18px; }
}

/* ============================================================
   Real client logo image variant
   ============================================================ */
.client-logo--img {
  padding: 14px 22px;
  background: rgba(255,255,255,0.96);
  border-color: var(--line);
}
.client-logo--img img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.78;
  filter: grayscale(0.35);
  transition: opacity .25s var(--ease), filter .25s var(--ease), transform .25s var(--ease);
}
.client-logo--img:hover {
  background: #fff;
  border-color: rgba(77, 212, 232, 0.4);
}
.client-logo--img:hover img {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}
