:root {
  --bg: #ffffff;
  --bg2: #ffffff;
  --text: #101322;
  --muted: rgba(16, 19, 34, 0.72);
  --muted2: rgba(16, 19, 34, 0.52);
  --line: rgba(16, 19, 34, 0.12);
  --glass: rgba(255, 255, 255, 0.96);
  --glass2: rgba(16, 19, 34, 0.03);
  --shadow: 0 24px 70px rgba(10, 12, 20, 0.08);
  --shadow2: 0 12px 34px rgba(10, 12, 20, 0.06);
  --hover-line: rgba(16, 19, 34, 0.22);
  --hover-bg: rgba(16, 19, 34, 0.04);
  --btn-primary-hover: rgba(16, 19, 34, 0.92);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
  --pad: 20px;
  --primary: #3b57ff;
  --primary2: #a029ff;
  --accent: #00b894;
  --danger: #ff3f73;
  --focus: rgba(59, 87, 255, 0.25);
  --hl: rgba(255, 220, 120, 0.9);
  --blend: multiply;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  --display: "Fraunces", ui-serif, Georgia, "Times New Roman", Times, serif;
  --hand: "Kalam", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

html[data-theme="dark"] {
  --bg: #ffffff;
  --bg2: #ffffff;
  --text: #101322;
  --muted: rgba(16, 19, 34, 0.72);
  --muted2: rgba(16, 19, 34, 0.52);
  --line: rgba(16, 19, 34, 0.12);
  --glass: rgba(255, 255, 255, 0.96);
  --glass2: rgba(16, 19, 34, 0.03);
  --shadow: 0 24px 70px rgba(10, 12, 20, 0.08);
  --shadow2: 0 12px 34px rgba(10, 12, 20, 0.06);
  --hover-line: rgba(16, 19, 34, 0.18);
  --hover-bg: rgba(16, 19, 34, 0.03);
  --btn-primary-hover: rgba(16, 19, 34, 0.9);
  --primary: #101322;
  --primary2: #101322;
  --accent: #101322;
  --danger: #101322;
  --focus: rgba(16, 19, 34, 0.18);
  --hl: rgba(255, 224, 140, 0.45);
  --blend: multiply;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
}

.skip:focus {
  left: 16px;
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

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

.bg {
  display: none;
}

.aurora {
  position: absolute;
  inset: -40% -10% -20% -10%;
  display: none;
  transform: translateZ(0);
}

html[data-theme="dark"] .aurora {
  display: block;
  filter: blur(34px) saturate(160%) brightness(112%);
  opacity: 0.98;
}

.a {
  position: absolute;
  border-radius: 999px;
  width: 60vmax;
  height: 60vmax;
  mix-blend-mode: var(--blend);
  will-change: transform;
}

.a1 {
  left: -10%;
  top: -15%;
  background: rgba(136, 221, 255, 0.2);
  animation: float1 18s ease-in-out infinite;
}

.a2 {
  right: -20%;
  top: -10%;
  background: rgba(167, 132, 255, 0.2);
  animation: float2 22s ease-in-out infinite;
}

.a3 {
  left: -20%;
  bottom: -25%;
  background: rgba(37, 255, 211, 0.16);
  animation: float3 26s ease-in-out infinite;
}

.a4 {
  right: -10%;
  bottom: -35%;
  background: rgba(255, 90, 134, 0.14);
  animation: float4 28s ease-in-out infinite;
}

.grid {
  display: none;
}

.vignette {
  display: none;
}

.noise {
  display: none;
}

html[data-theme="dark"] .noise {
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

@keyframes float1 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(20%, 10%, 0) scale(1.08);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes float2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-18%, 14%, 0) scale(1.06);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes float3 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(14%, -16%, 0) scale(1.12);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes float4 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-14%, -10%, 0) scale(1.1);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .a {
    animation: none !important;
  }
}

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: unset;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--text);
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.brand__name {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 15px;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav a {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.nav a:hover {
  color: var(--text);
  border-color: var(--text);
}

.top__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--glass2);
  border: 1px solid var(--line);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: var(--hover-bg);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  opacity: 0.9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--glass2);
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--hover-line);
  background: var(--hover-bg);
}

.btn:focus,
.icon-btn:focus,
input:focus,
textarea:focus,
summary:focus {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.btn--primary {
  border-color: transparent;
  background: var(--text);
  color: var(--bg2);
}

.btn--primary:hover {
  background: var(--btn-primary-hover);
}

.btn--ghost {
  background: transparent;
}

.btn--soft {
  background: var(--glass2);
}

.hero {
  padding: 72px 0 26px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.hero__kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  font-family: var(--hand);
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.hero__highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.18em 0.08em;
}

.hero__highlight::before {
  content: "";
  position: absolute;
  inset: -0.18em -0.28em -0.22em -0.28em;
  border: 7px solid rgba(255, 201, 58, 0.95);
  border-radius: 999px;
  transform: rotate(-2.5deg);
  pointer-events: none;
}

.hero__sub {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 52ch;
  font-size: 15px;
}

.hero__cta {
  margin-top: 42px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__proof {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.proof__avatars {
  display: flex;
  align-items: center;
}

.av {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(16, 19, 34, 0.06);
  margin-left: -8px;
}

.av:first-child {
  margin-left: 0;
}

.hero__art {
  display: grid;
  place-items: center;
}

.art {
  display: block;
  width: min(500px, 100%);
  height: auto;
  image-rendering: auto;
}

.glass {
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: var(--glass);
  box-shadow: var(--shadow2);
  backdrop-filter: none;
}

html[data-theme="dark"] .glass {
  backdrop-filter: blur(10px);
}

.card {
  padding: 18px;
}

.card__title {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.mini {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.mini__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.mini__val {
  font-weight: 650;
  color: var(--text);
}

.card__note {
  margin: 12px 0 12px;
  color: var(--muted2);
  font-size: 13px;
}

.section {
  padding: 44px 0;
}

.section--layanan {
  padding-top: 96px;
}

.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.link {
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  border-bottom: 1px solid rgba(16, 19, 34, 0.5);
  padding-bottom: 2px;
}

.link:hover {
  border-bottom-color: var(--text);
}

.section__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.02em;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature {
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow2);
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.services {
  position: relative;
  width: min(980px, 100%);
  height: 1020px;
  margin: 20px auto 0;
}

.services::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 760px;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 6px solid rgba(16, 19, 34, 0.06);
}

.services__center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 440px;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
}

.services__center-ring {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 2px solid rgba(239, 190, 20, 0.9);
  background: #ffffff;
  display: grid;
  place-items: center;
  padding: 42px;
}

.services__center img {
  width: 82%;
  height: auto;
  object-fit: contain;
}

.svc {
  position: absolute;
  width: 200px;
  height: 200px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(14, 22, 42, 0.08);
  padding: 40px 16px 16px;
  text-align: center;
  display: grid;
  align-content: start;
  justify-items: center;
  overflow: hidden;
}

.svc::before {
  content: attr(data-step);
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #f1bf00;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.svc::before {
  display: none;
}

.svc__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  display: grid;
  place-items: center;
}

.svc__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--text);
  fill: none;
  stroke-width: 1.8;
  opacity: 0.9;
}

.svc h3 {
  margin: 8px 0 4px;
  font-size: 12px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 148px;
}

.svc p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  max-width: 150px;
}

.svc ul {
  display: none;
}

.services__summary {
  margin: 24px auto 0;
  width: min(860px, 100%);
  color: var(--text);
  font-size: 15px;
  text-align: center;
}

.svc:nth-of-type(1) {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.svc:nth-of-type(2) {
  right: 118px;
  top: 88px;
}

.svc:nth-of-type(3) {
  right: 0;
  top: 276px;
}

.svc:nth-of-type(4) {
  right: 18px;
  top: 478px;
}

.svc:nth-of-type(5) {
  right: 126px;
  top: 672px;
}

.svc:nth-of-type(6) {
  left: 50%;
  top: 800px;
  transform: translateX(-50%);
}

.svc:nth-of-type(7) {
  left: 126px;
  top: 672px;
}

.svc:nth-of-type(8) {
  left: 18px;
  top: 478px;
}

.svc:nth-of-type(9) {
  left: 0;
  top: 276px;
}

.svc:nth-of-type(10) {
  left: 118px;
  top: 88px;
}

@media (max-width: 1240px) {
  .services {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .services::before,
  .services__center {
    display: none;
  }
  .svc {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 0;
    border-radius: 22px;
    padding: 18px;
    text-align: left;
    justify-items: start;
    box-shadow: var(--shadow2);
    transform: none;
  }
  .svc::before {
    width: 32px;
    height: 32px;
    font-size: 14px;
    top: -12px;
  }
  .svc ul {
    display: block;
    margin: 6px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
  }
  .svc h3 {
    font-size: 16px;
    line-height: 1.25;
    max-width: none;
  }
  .svc p {
    font-size: 13px;
    line-height: 1.45;
    max-width: none;
  }
  .services__summary {
    width: 100%;
    text-align: left;
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  padding-top: 10px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 34px;
  height: 1px;
  border-top: 2px dashed rgba(16, 19, 34, 0.22);
}

.step {
  text-align: center;
  padding: 10px 10px 0;
}

.step__n {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 201, 58, 0.95);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin: 0 auto 10px;
}

.step__t {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.step__d {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.shot {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  border-radius: 18px;
}

.shot__link {
  display: block;
}

.shot__link:hover img {
  filter: contrast(1.02);
}

.shot figcaption {
  padding: 10px 2px 0;
  border-top: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.price {
  padding: 18px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.price--featured {
  box-shadow: var(--shadow);
  border-color: rgba(59, 87, 255, 0.24);
}

.ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(59, 87, 255, 0.22);
  background: rgba(59, 87, 255, 0.08);
  color: rgba(16, 19, 34, 0.92);
  font-weight: 650;
  font-size: 12px;
}

html[data-theme="dark"] .ribbon {
  border-color: rgba(136, 221, 255, 0.28);
  background: rgba(136, 221, 255, 0.1);
  color: rgba(200, 238, 255, 0.95);
}

.price__head h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.price__tag {
  margin: 6px 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.price__money {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price__amt {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price__per {
  color: var(--muted2);
  font-size: 13px;
}

.list {
  margin: 14px 0 0;
  padding: 0 0 0 18px;
  color: var(--text);
  font-size: 13px;
}

.list li {
  margin: 7px 0;
}

.list--muted {
  color: var(--muted);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

.meta__t {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 13px;
}

.meta__note {
  margin: 10px 0 0;
  color: var(--muted2);
  font-size: 12px;
}

.compare {
  margin-top: 14px;
  padding: 16px;
}

.compare h3 {
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.compare__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.compare__item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  padding: 12px;
}

.compare__k {
  font-weight: 750;
  letter-spacing: -0.02em;
}

.compare__v {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.onetime {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ot {
  padding: 16px;
  background: #ffffff;
}

.ot h3 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.ot__money {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ot__note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.ot__cta {
  margin-top: 14px;
}

.annual {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #ffffff;
}

.annual--spaced {
  margin-top: 12px;
}

.annual h3 {
  margin: 0 0 6px;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.small {
  color: var(--muted2);
  font-size: 12px;
  margin: 10px 0 0;
}

.scope {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.scope__box {
  padding: 16px;
  background: #ffffff;
}

.scope__box h3 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq__item {
  padding: 14px 16px;
  background: #ffffff;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq__item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section--cta {
  padding-bottom: 64px;
}

.cta {
  padding: 18px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  background: #ffffff;
}

.cta h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.form {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  padding: 14px;
  display: grid;
  gap: 10px;
}

label span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(16, 19, 34, 0.03);
  padding: 10px 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
}

textarea {
  resize: vertical;
  min-height: 96px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(16, 19, 34, 0.45);
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
  color: rgba(233, 237, 247, 0.45);
}

.foot {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  background: #ffffff;
}

.foot__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.foot__brand {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.foot__sub {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}

.foot__legal {
  margin-top: 8px;
  max-width: 68ch;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted2);
}

.foot__links {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.foot__links a {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 12px;
}

.foot__links a:hover {
  background: var(--glass2);
  color: var(--text);
}

.foot__copy {
  text-align: right;
  color: var(--muted2);
  font-size: 12px;
}

@media (max-width: 980px) {
  .section--layanan {
    padding-top: 72px;
  }
  .nav {
    display: none;
  }
  .brand {
    min-width: unset;
  }
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .section__head--row {
    flex-direction: column;
    align-items: flex-start;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps::before {
    display: none;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .compare__grid {
    grid-template-columns: 1fr;
  }
  .onetime {
    grid-template-columns: 1fr;
  }
  .annual {
    flex-direction: column;
    align-items: stretch;
  }
  .scope {
    grid-template-columns: 1fr;
  }
  .cta {
    grid-template-columns: 1fr;
  }
  .foot__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .foot__copy {
    text-align: center;
  }
}
