:root {
  --bg: #0f0f1a;
  --deep: #030716;
  --surface: rgba(17, 20, 38, .72);
  --surface-strong: rgba(10, 16, 32, .9);
  --text: #fff;
  --muted: #a9b0c3;
  --pink: #ff2d78;
  --purple: #8b2fc9;
  --blue: #3b82f6;
  --cyan: #00d4ff;
  --green: #25d366;
  --gold: #f59e0b;
  --line: rgba(255, 255, 255, .12);
  --radius: 14px;
  --shadow: 0 22px 60px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--deep); }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(820px 520px at 0% 16%, rgba(255, 45, 120, .23), transparent 64%),
    radial-gradient(900px 620px at 100% 20%, rgba(0, 212, 255, .22), transparent 66%),
    radial-gradient(720px 420px at 52% 52%, rgba(139, 47, 201, .13), transparent 72%),
    linear-gradient(180deg, #070a18 0%, #050817 48%, #040715 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

button, a, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.navbar {
  height: 86px;
  display: grid;
  grid-template-columns: 260px 1fr 150px;
  align-items: center;
  gap: 20px;
  padding: 0 44px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(4, 7, 18, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.brand, .nav-link, .mobile-menu, .footer button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.brand { padding: 0; text-align: left; }
.brand img {
  content: url('assets/logo/alsa-media-logo-transparent.png');
  width: 190px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 34px;
}
.nav-link {
  position: relative;
  padding: 30px 0 23px;
  color: #f5f7ff;
  font-size: 14px;
  font-weight: 700;
}
.nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  border-radius: 99px;
  opacity: 0;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
}
.nav-link.active:after,
.nav-link:hover:after { opacity: 1; }

.btn {
  min-height: 48px;
  border: 0;
  border-radius: 9px;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-primary {
  background: linear-gradient(100deg, var(--pink), var(--purple) 62%, var(--cyan));
  box-shadow: 0 12px 32px rgba(255, 45, 120, .28);
}
.btn-outline {
  background: rgba(0, 212, 255, .04);
  border: 1px solid rgba(0, 212, 255, .75);
}
.btn-whatsapp {
  background: #fff;
  color: #111827;
  border-radius: 10px;
}
.btn-whatsapp img { width: 25px; height: 25px; }
.nav-cta { min-height: 42px; padding: 11px 20px; font-size: 13px; }

.mobile-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  font-size: 22px;
}

main { min-height: 760px; }
.hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 16px;
  padding: 54px 54px 8px;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1,
.page-hero h1,
.section-title {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  letter-spacing: 0;
}
.hero h1 {
  margin: 0 0 18px;
  max-width: 520px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.1;
}
.hero p {
  max-width: 440px;
  margin: 0 0 28px;
  color: #d4d8e5;
  font-size: 16px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-stage {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  will-change: transform;
}
.hero-stage:before,
.service-orbit:before {
  content: "";
  position: absolute;
  inset: 23% -8% 10% 2%;
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(255,45,120,.1), rgba(255,45,120,.55), rgba(139,47,201,.5), rgba(0,212,255,.64), rgba(0,212,255,.1));
  filter: blur(10px);
  opacity: .85;
  animation: spinGlow 18s linear infinite;
}
.hero-stage img {
  position: relative;
  z-index: 1;
  width: 122%;
  max-width: none;
  margin-right: -80px;
  filter: drop-shadow(0 30px 45px rgba(0,0,0,.42));
  animation: float 5s ease-in-out infinite alternate;
}
@keyframes spinGlow { to { transform: rotate(1turn); } }
@keyframes float { to { translate: 0 -8px; } }

.section {
  padding: 34px 54px 0;
  position: relative;
}
.section-tight { padding-top: 24px; }
.section-title {
  margin: 0 auto 24px;
  text-align: center;
  font-size: 31px;
  line-height: 1.15;
}
.section-title:after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 8px auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
}

.glass {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17,20,38,.86), rgba(7,13,29,.78));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.glass:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,45,120,.2), transparent 38%, rgba(0,212,255,.18));
  opacity: .75;
}
.glass > * { position: relative; }
.service-feature,
.service-small,
.catalog-card,
.price,
.portfolio-card,
.process-card,
.workflow-card,
.contact-tile,
.info-panel {
  transition: transform .22s ease, border-color .22s ease, filter .22s ease;
}
.service-feature:hover,
.service-small:hover,
.catalog-card:hover,
.price:hover,
.portfolio-card:hover,
.process-card:hover,
.workflow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, .48);
  filter: brightness(1.05);
}

.featured-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
.service-feature {
  min-height: 154px;
  display: grid;
  grid-template-columns: 116px 1fr;
  align-items: center;
  padding: 23px 28px;
  cursor: pointer;
}
.small-services {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 64px;
}
.service-small {
  min-height: 118px;
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
}
.small-services .service-small:nth-last-child(1):nth-child(odd) { grid-column: 1 / -1; width: calc(50% - 32px); justify-self: center; }

.icon-box {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255,45,120,.12);
  border: 1px solid rgba(255,45,120,.65);
  box-shadow: inset 0 0 28px rgba(255,45,120,.12), 0 0 24px rgba(255,45,120,.14);
}
.icon-box.blue {
  background: rgba(0,212,255,.12);
  border-color: rgba(0,212,255,.72);
  box-shadow: inset 0 0 28px rgba(0,212,255,.12), 0 0 24px rgba(0,212,255,.14);
}
.icon-box.purple {
  background: rgba(139,47,201,.15);
  border-color: rgba(139,47,201,.72);
}
.icon-box img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}
.service-small .icon-box { width: 64px; height: 64px; }
.service-small .icon-box img { width: 38px; height: 38px; }
.service-feature h3,
.service-small h3,
.catalog-card h3,
.process-card h3,
.workflow-card h3,
.contact-tile h3,
.info-panel h2 {
  margin: 0 0 8px;
}
.service-feature p,
.service-small p,
.catalog-card p,
.process-card p,
.workflow-card p,
.price p,
.info-panel p,
.contact-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.process-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 74px;
  position: relative;
}
.process-grid:before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue), var(--cyan));
  filter: drop-shadow(0 0 12px rgba(0,212,255,.9));
}
.process-card {
  min-height: 178px;
  padding: 18px 15px;
  text-align: center;
}
.step-no { display: block; margin-bottom: 10px; font-weight: 900; font-size: 13px; }
.process-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  filter: brightness(0) invert(1);
}
.process-card h3 { font-size: 15px; }
.process-card p { font-size: 12px; }

.client-proof-section {
  padding-top: 42px;
}
.client-proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .82fr) 1.18fr;
  gap: 28px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(110deg, rgba(90, 12, 18, .36), rgba(8, 19, 36, .88) 48%, rgba(0, 91, 120, .24)),
    rgba(8, 11, 25, .72);
}
.client-proof__ambient {
  position: absolute;
  inset: -18px;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 8, 20, .9), rgba(88, 13, 18, .42) 42%, rgba(5, 12, 24, .86)),
    url('/putri-fikri/assets/mockup-cover.png') center / cover no-repeat;
  opacity: .36;
  filter: saturate(.9) contrast(1.08);
  transform: scale(1.04);
  pointer-events: none;
}
.client-proof__ambient:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 45, 120, .22), transparent 32%),
    radial-gradient(circle at 82% 70%, rgba(245, 158, 11, .18), transparent 36%),
    linear-gradient(90deg, rgba(6, 8, 20, .78), rgba(6, 8, 20, .36) 44%, rgba(6, 8, 20, .72));
}
.client-proof__phone {
  position: absolute;
  top: 26px;
  right: 24px;
  bottom: 26px;
  z-index: -1;
  width: min(238px, 25%);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 224, 166, .28);
  background: rgba(255, 255, 255, .06);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, .42),
    inset 0 0 0 1px rgba(255, 255, 255, .08);
  opacity: .42;
  transform: rotate(1.25deg);
  pointer-events: none;
}
.client-proof__phone:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 238, 210, .24), rgba(91, 12, 18, .34)),
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, .18), transparent 24%);
}
.client-proof__phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(.95);
  transform: scale(1.03);
}
.client-proof__media {
  position: relative;
  z-index: 1;
  min-height: 390px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(245,158,11,.22), transparent 45%),
    linear-gradient(145deg, rgba(255,45,120,.16), rgba(0,212,255,.06));
  border: 1px solid rgba(245, 158, 11, .28);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.client-proof__media:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3,7,22,.18), rgba(3,7,22,.34)),
    radial-gradient(circle at 20% 18%, rgba(255,45,120,.18), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(0,212,255,.18), transparent 34%);
  pointer-events: none;
}
.client-proof__media:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.12) 45%, transparent 62%);
  transform: translateX(-120%);
  animation: proofShine 5.8s ease-in-out infinite;
  pointer-events: none;
}
.client-proof__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.client-proof__photo--main {
  animation: proofPhotoDrift 9s ease-in-out infinite alternate;
}
.client-proof__photo--overlay {
  opacity: .24;
  mix-blend-mode: screen;
  transform: translateX(10%) scale(1.04);
  animation: proofOverlaySlide 8.5s ease-in-out infinite alternate;
}
.client-proof__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37, 211, 102, .95);
  color: #05140b;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
@keyframes proofPhotoDrift {
  from { transform: scale(1.02) translateX(-1.5%); }
  to { transform: scale(1.08) translateX(1.5%); }
}
@keyframes proofOverlaySlide {
  from { opacity: .1; transform: translateX(18%) scale(1.08); }
  to { opacity: .34; transform: translateX(-10%) scale(1.04); }
}
@keyframes proofShine {
  0%, 56% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
.client-proof__copy {
  position: relative;
  z-index: 1;
  padding: 12px 10px 12px 0;
}
.client-proof__copy .pill-label {
  margin-bottom: 14px;
}
.client-proof__copy h2 {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}
.client-proof__copy p {
  max-width: 560px;
  margin: 0 0 20px;
  color: #d4d8e5;
  line-height: 1.75;
}
.client-proof__meta {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
}
.client-proof__meta span {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.client-proof__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stats-grid,
.about-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.stat {
  min-height: 134px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px 14px;
}
.stat strong {
  display: block;
  font: 900 50px/1 "Plus Jakarta Sans", sans-serif;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat.gold strong { background-image: linear-gradient(90deg, var(--pink), var(--gold)); }
.stat.blue strong { background-image: linear-gradient(90deg, var(--blue), var(--cyan)); }
.stat.purple strong { background-image: linear-gradient(90deg, var(--purple), var(--blue)); }
.stat span { color: #fff; font-weight: 800; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.portfolio-grid.extended { grid-template-columns: repeat(4, 1fr); }
.portfolio-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  transition: transform .25s ease;
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
}
.portfolio-card:hover img { transform: scale(1.04); }
.portfolio-card .cap {
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 11px;
  font-weight: 800;
}

/* === Produk Catalog CTA === */
.produk-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(248,91,141,0.18), rgba(255,200,140,0.12) 50%, rgba(123,77,255,0.20));
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.produk-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 0% 50%, rgba(248,91,141,0.18), transparent 60%),
              radial-gradient(500px 200px at 100% 50%, rgba(123,77,255,0.22), transparent 60%);
  pointer-events: none;
}
.produk-cta:hover {
  transform: translateY(-3px);
  border-color: rgba(248,91,141,0.4);
  box-shadow: 0 24px 50px rgba(123,77,255,0.22);
}
.produk-cta__bloom {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F85B8D, #7B4DFF);
  display: grid; place-items: center;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(248,91,141,0.35);
  position: relative; z-index: 1;
}
.produk-cta__copy { position: relative; z-index: 1; }
.produk-cta__copy h2 { margin: 6px 0; font-size: 22px; }
.produk-cta__copy p { margin: 0; color: var(--c-text-2, #a89bb0); font-size: 14px; }
.produk-cta__action { position: relative; z-index: 1; }
@media (max-width: 768px) {
  .produk-cta { grid-template-columns: 1fr; text-align: center; padding: 24px; }
  .produk-cta__bloom { margin: 0 auto; }
  .produk-cta__action .btn { width: 100%; }
}

.cta-section { padding-top: 30px; }
.cta {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 190px;
  border-radius: 15px;
  padding: 32px;
  background:
    linear-gradient(105deg, rgba(255,45,120,.96), rgba(139,47,201,.9) 48%, rgba(0,212,255,.96)),
    url('assets/master/cta/01-whatsapp-cta.png') center/cover;
  overflow: hidden;
}
.cta h2 { margin: 0 0 9px; font-size: 34px; }
.cta p { margin: 0 0 18px; color: rgba(255,255,255,.9); }

.page-hero {
  min-height: 440px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 42px;
  padding: 70px 54px 18px;
}
.page-hero h1 {
  margin: 0 0 18px;
  max-width: 560px;
  font-size: clamp(42px, 4.8vw, 60px);
  line-height: 1.12;
}
.page-hero h1 span {
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero p {
  max-width: 500px;
  color: #d4d8e5;
  line-height: 1.7;
}
.pill-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,45,120,.5);
  background: rgba(255,45,120,.08);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.service-orbit,
.mockup-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
}
.service-orbit > img,
.mockup-frame > img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(0,0,0,.42));
  opacity: 1;
}
.mockup-frame {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  overflow: visible;
  box-shadow: none;
}
.mockup-frame:before {
  content: "";
  position: absolute;
  inset: 13% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.22), rgba(139,47,201,.16) 44%, transparent 72%);
  filter: blur(30px);
  opacity: .9;
  pointer-events: none;
}
.mockup-frame > img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
}
.orbit-chip {
  position: absolute;
  z-index: 2;
  width: 95px;
  min-height: 90px;
  border: 1px solid rgba(0,212,255,.7);
  border-radius: 12px;
  background: rgba(11,17,38,.82);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.orbit-chip img { width: 32px; height: 32px; margin: 0 auto 6px; filter: brightness(0) invert(1); }
.chip-0 { left: 8%; top: 8%; border-color: rgba(255,45,120,.75); }
.chip-1 { left: 8%; bottom: 16%; }
.chip-2 { left: 42%; bottom: 4%; border-color: rgba(139,47,201,.8); }
.chip-3 { right: 1%; top: 22%; }
.chip-4 { right: 1%; bottom: 18%; }
.chip-5 { left: 38%; top: -2%; border-color: rgba(255,45,120,.75); }

.service-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.catalog-card {
  min-height: 270px;
  padding: 25px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.catalog-card .icon-box { width: 82px; height: 82px; margin-bottom: 20px; }
.catalog-card p { font-size: 13px; }
.catalog-card .btn { margin-top: auto; min-height: 40px; padding: 10px 18px; font-size: 13px; }
.catalog-card.mini { min-height: 230px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
}
.price {
  min-height: 330px;
  padding: 28px;
  text-align: center;
}
.price.popular {
  border-color: rgba(255,45,120,.9);
  box-shadow: 0 0 32px rgba(255,45,120,.2), var(--shadow);
}
.popular-badge {
  display: inline-flex;
  margin: -8px auto 12px;
  padding: 5px 12px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.price h3 { margin: 0 0 10px; font-size: 28px; }
.price ul {
  margin: 22px 0;
  padding: 0;
  list-style: none;
  color: #d7dbea;
  text-align: left;
  line-height: 1.9;
  font-size: 13px;
}
.price li:before { content: "\2713"; color: var(--pink); margin-right: 10px; }
.price small { color: var(--muted); }
.price strong {
  display: block;
  margin: 4px 0 20px;
  color: var(--pink);
  font-size: 28px;
}

.workflow-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.workflow-card {
  min-height: 126px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
}
.workflow-card img { width: 50px; height: 50px; filter: brightness(0) invert(1); }
.workflow-card b { color: var(--pink); }
.workflow-card h3 { font-size: 16px; }
.workflow-card p { font-size: 12px; }

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(17,20,38,.72);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 17px 22px;
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  cursor: pointer;
}
.faq-item p {
  display: none;
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
  line-height: 1.6;
}
.faq-item button[aria-expanded="true"] + p { display: block; }
.faq-item button[aria-expanded="true"] b { transform: rotate(45deg); }

.about-split,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.info-panel {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-panel h2 { font-size: 32px; }
.info-panel p { margin-bottom: 24px; }
.contact-info {
  display: grid;
  gap: 14px;
  align-content: center;
}
.contact-tile {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  padding: 16px;
}
.contact-tile .icon-box { width: 58px; height: 58px; }
.contact-tile .icon-box img { width: 32px; height: 32px; }
.contact-direct {
  width: 100%;
  min-height: 58px;
}

.boostra-logo {
  width: 310px;
  max-width: 70%;
  margin: 0 0 20px;
  padding: 0;
  background: transparent;
  border: 0;
  filter: drop-shadow(0 14px 28px rgba(0,212,255,.22));
}
.boostra-showcase {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}
.boostra-showcase:before {
  content: "";
  position: absolute;
  inset: 18% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.28), rgba(139,47,201,.18) 48%, transparent 72%);
  filter: blur(34px);
}
.boostra-showcase img {
  position: relative;
  z-index: 1;
  width: 112%;
  max-width: none;
  border-radius: 16px;
  box-shadow: 0 28px 72px rgba(0,0,0,.34);
}
.section-title.align-left {
  margin-left: 0;
  text-align: left;
}
.section-title.align-left:after {
  margin-left: 0;
}
.boostra-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.boostra-benefit {
  min-height: 245px;
  padding: 22px;
}
.boostra-benefit .icon-box {
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
}
.boostra-benefit .icon-box img {
  width: 36px;
  height: 36px;
}
.boostra-benefit h3,
.boostra-copy h2 {
  margin: 0 0 10px;
}
.boostra-benefit p,
.boostra-copy p {
  color: var(--muted);
  line-height: 1.65;
}
.boostra-feature {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 24px;
  align-items: stretch;
}
.boostra-copy {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.boostra-copy h2 {
  font-size: 34px;
}
.boostra-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.boostra-preview {
  width: 100%;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(0,212,255,.05));
  box-shadow: var(--shadow);
  padding: 10px;
  cursor: zoom-in;
  overflow: hidden;
}
.boostra-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.boostra-slider-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}
.boostra-slider-head p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.slider-actions {
  display: flex;
  gap: 10px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0,212,255,.45);
  border-radius: 50%;
  background: rgba(17,20,38,.72);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(0,0,0,.25);
}
.boostra-slider {
  position: relative;
  margin: 0 -54px;
  padding: 0 54px;
  overflow: hidden;
}
.boostra-slider:before,
.boostra-slider:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 76px;
  z-index: 2;
  pointer-events: none;
}
.boostra-slider:before {
  left: 0;
  background: linear-gradient(90deg, #050817, transparent);
}
.boostra-slider:after {
  right: 0;
  background: linear-gradient(270deg, #050817, transparent);
}
.boostra-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(620px, 78%);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 54px;
  padding: 8px 0 18px;
  scrollbar-width: thin;
}
.boostra-slide {
  position: relative;
  scroll-snap-align: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}
.boostra-slide:after {
  content: "Klik untuk zoom";
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(4,7,18,.78);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(6px);
  transition: .2s ease;
}
.boostra-slide:hover:after {
  opacity: 1;
  transform: translateY(0);
}
.boostra-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f8f9ff;
}
.zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  place-items: center;
  padding: 32px;
  background: rgba(1, 4, 14, .86);
  backdrop-filter: blur(18px);
}
.zoom-modal.open {
  display: grid;
}
.zoom-modal img {
  max-width: min(96vw, 1400px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.zoom-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(17,20,38,.82);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.contact-form {
  padding: 28px;
}
.contact-form h3 { margin: 0 0 18px; font-size: 24px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 800; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(7,13,29,.88);
  color: #fff;
  padding: 13px 14px;
  outline: 0;
}
.field textarea { min-height: 126px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: rgba(0,212,255,.7); }

.footer {
  margin-top: 42px;
  padding: 0 54px 30px;
}
.footer-line {
  height: 2px;
  margin-bottom: 25px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .7fr .7fr;
  gap: 40px;
}
.footer-logo { width: 190px; margin-bottom: 10px; }
.footer p,
.footer small,
.footer button { color: var(--muted); font-size: 13px; }
.footer h4 { margin: 0 0 11px; }
.footer button { display: block; padding: 5px 0; }
.socials { display: flex; gap: 18px; }
.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
}
.socials img { width: 24px; height: 24px; }
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 18px 40px rgba(37,211,102,.38);
}
.wa-float img { width: 30px; filter: brightness(0) invert(1); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .65s cubic-bezier(.16, 1, .3, 1);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

@media (max-width: 980px) {
  .page-shell { width: 100%; }
  .navbar {
    height: 74px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }
  .brand img { width: 158px; }
  .nav-cta { display: none; }
  .mobile-menu { display: grid; place-items: center; }
  .nav-links {
    display: none;
    position: fixed;
    top: 74px;
    left: 18px;
    right: 18px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(5, 8, 23, .985);
    box-shadow: var(--shadow);
  }
  body.menu-open .nav-links { display: grid; }
  .nav-link { padding: 13px 16px; text-align: left; }
  .nav-link:after { display: none; }
  .hero,
  .page-hero,
  .about-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hero,
  .page-hero,
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { padding-top: 34px; min-height: auto; }
  .hero-stage { min-height: 300px; }
  .hero-stage img { width: 112%; margin-right: 0; }
  .featured-services,
  .small-services,
  .pricing-grid,
  .stats-grid,
  .about-band,
  .workflow-row,
  .portfolio-grid,
  .portfolio-grid.extended,
  .boostra-benefits,
  .boostra-stack {
    grid-template-columns: repeat(2, 1fr);
  }
  .boostra-feature { grid-template-columns: 1fr; }
  .boostra-showcase img { width: 100%; }
  .boostra-slider { margin: 0 -24px; padding: 0 24px; }
  .boostra-slider-track {
    grid-auto-columns: minmax(520px, 86%);
    scroll-padding-inline: 24px;
  }
  .service-catalog { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .process-grid:before { display: none; }
  .client-proof { grid-template-columns: 1fr; }
  .client-proof__phone {
    width: min(220px, 34%);
    top: 18px;
    right: 18px;
    bottom: auto;
    height: 410px;
    opacity: .24;
  }
  .client-proof__media { min-height: 520px; }
  .client-proof__copy { padding: 0; }
  .small-services .service-small:last-child { width: 100%; }
  .footer { padding-left: 24px; padding-right: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .hero h1 { font-size: 40px; }
  .hero-actions .btn { width: 100%; }
  .hero-stage { min-height: 240px; }
  .hero-stage img { width: 128%; }
  .section-title { font-size: 26px; }
  .featured-services,
  .small-services,
  .pricing-grid,
  .stats-grid,
  .about-band,
  .workflow-row,
  .portfolio-grid,
  .portfolio-grid.extended,
  .service-catalog,
  .boostra-benefits,
  .boostra-stack,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .service-feature { grid-template-columns: 86px 1fr; padding: 18px; }
  .service-small { grid-template-columns: 76px 1fr; }
  .icon-box { width: 66px; height: 66px; }
  .icon-box img { width: 38px; height: 38px; }
  .process-grid { grid-template-columns: 1fr; }
  .client-proof { padding: 16px; gap: 18px; }
  .client-proof__ambient {
    opacity: .28;
  }
  .client-proof__phone {
    display: none;
  }
  .client-proof__media { min-height: 440px; }
  .client-proof__actions .btn { width: 100%; }
  .page-hero { min-height: auto; padding-top: 42px; }
  .page-hero h1 { font-size: 36px; }
  .service-orbit { min-height: 280px; }
  .orbit-chip { display: none; }
  .mockup-frame { min-height: 220px; }
  .mockup-frame > img { max-height: 260px; }
  .cta h2 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .boostra-logo { width: 210px; }
  .boostra-showcase { min-height: 240px; }
  .boostra-preview { min-height: 220px; }
  .boostra-slider-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .boostra-slider-track {
    grid-auto-columns: 88%;
    gap: 14px;
  }
  .boostra-slider:before,
  .boostra-slider:after {
    width: 28px;
  }
}
