/* ============================================================
   HERRY — PARTNER DIGITAL
   Design System & Landing Page Styles
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand — ungu */
  --brand-50:  #F6F0FF;
  --brand-100: #EBDEFF;
  --brand-200: #DAC4FB;
  --brand-400: #A97BF5;
  --brand-500: #8B45E8;
  --brand-600: #7A2FD9;
  --brand-700: #5F21A8;
  --brand-900: #34125F;

  /* Accent — pink, pasangan gradient */
  --accent-400: #F472B6;
  --accent-500: #EC4899;
  --accent-600: #DB2777;

  /* Gradient utama: ungu → pink */
  --grad-brand: linear-gradient(135deg, var(--brand-600) 0%, var(--accent-500) 100%);

  /* Neutral / Ink */
  --ink-900: #0B1020;
  --ink-800: #141B2E;
  --ink-700: #1E2740;
  --ink-600: #3A4358;
  --ink-500: #5A6478;
  --ink-400: #7C8598;
  --ink-300: #AEB5C2;
  --ink-200: #D9DEE7;
  --ink-100: #EBEEF3;
  --ink-50:  #F5F7FA;
  --white:   #FFFFFF;

  /* Semantic */
  --bg:            var(--white);
  --bg-subtle:     var(--ink-50);
  --bg-inverse:    var(--ink-900);
  --text:          var(--ink-900);
  --text-muted:    var(--ink-500);
  --text-inverse:  #FFFFFF;
  --border:        var(--ink-100);
  --border-strong: var(--ink-200);
  --success:       #12A150;

  /* Typography */
  --font-sans: "Inter", "Segoe UI Variable Display", "Segoe UI", system-ui,
               -apple-system, "Helvetica Neue", Arial, sans-serif;

  --fs-display: clamp(2.5rem, 1.4rem + 4.4vw, 4.5rem);
  --fs-h1:      clamp(2rem, 1.3rem + 2.9vw, 3.25rem);
  --fs-h2:      clamp(1.65rem, 1.25rem + 1.7vw, 2.5rem);
  --fs-h3:      clamp(1.15rem, 1.02rem + 0.5vw, 1.4rem);
  --fs-lg:      clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  --fs-base:    1rem;
  --fs-sm:      0.9375rem;
  --fs-xs:      0.8125rem;
  --fs-eyebrow: 0.75rem;

  --lh-tight: 1.08;
  --lh-snug:  1.28;
  --lh-base:  1.65;

  /* Spacing (4pt scale) */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 2.5rem;   --sp-8: 3rem;
  --sp-9: 4rem;     --sp-10: 5rem;    --sp-11: 6.5rem;  --sp-12: 8rem;

  /* Radius */
  --r-sm: 8px;  --r-md: 12px;  --r-lg: 18px;  --r-xl: 26px;  --r-full: 999px;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(11, 16, 32, .06);
  --shadow-sm: 0 2px 6px rgba(11, 16, 32, .05), 0 1px 2px rgba(11, 16, 32, .04);
  --shadow-md: 0 10px 30px -12px rgba(11, 16, 32, .18), 0 2px 6px rgba(11, 16, 32, .04);
  --shadow-lg: 0 32px 60px -24px rgba(11, 16, 32, .28), 0 4px 12px rgba(11, 16, 32, .06);
  --shadow-brand: 0 14px 30px -12px rgba(122, 47, 217, .45);

  /* Layout */
  --container: 1180px;
  --container-narrow: 860px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 72px;

  --ease: cubic-bezier(.22, .68, .36, 1);
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  font-feature-settings: "kern", "liga", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: var(--lh-snug);
  color: var(--text);
}
h1 { line-height: var(--lh-tight); letter-spacing: -0.032em; }
h1, h2, h3 { text-wrap: balance; }
p  { margin: 0; }
a  { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
strong { font-weight: 650; }

:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--brand-100); color: var(--brand-900); }

/* ---------- 3. Layout Primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.5rem, 7vw, var(--sp-11)); }
.section--tight { padding-block: clamp(3rem, 5vw, var(--sp-9)); }
.section--subtle { background: var(--bg-subtle); }
.section--inverse { background: var(--bg-inverse); color: var(--text-inverse); }
.section--inverse h2, .section--inverse h3 { color: var(--text-inverse); }

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  background: var(--ink-900); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--r-md) var(--r-md); z-index: 999; font-size: var(--fs-sm);
}
.skip-link:focus { transform: translate(-50%, 0); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- 4. Typography Utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-eyebrow); font-weight: 650;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-600);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500));
}
.section--inverse .eyebrow { color: var(--brand-200); }

.section-head { max-width: 880px; margin-bottom: clamp(2.25rem, 4vw, var(--sp-8)); }
/* Judul di section-head tengah diberi ruang lebih lebar agar tetap satu baris */
.section-head--center { max-width: 860px; margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--fs-h2); margin-top: var(--sp-4); }
.section-head p {
  margin-top: var(--sp-4); font-size: var(--fs-lg); color: var(--text-muted);
  max-width: 62ch;
}
.section-head--center p { margin-inline: auto; }
.section--inverse .section-head p { color: var(--ink-300); }

.lead { font-size: var(--fs-lg); color: var(--text-muted); line-height: 1.7; }

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: var(--brand-600);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 0.875rem 1.5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: var(--r-full);
  font: inherit; font-size: var(--fs-sm); font-weight: 620; letter-spacing: -0.01em;
  cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--grad-brand); box-shadow: var(--shadow-brand); }
/* jangan ganti background-nya saat hover — gradientnya ikut hilang */
.btn--primary:hover { filter: brightness(1.08); }

.btn--wa { --btn-bg: #1FA855; box-shadow: 0 14px 30px -12px rgba(31, 168, 85, .55); }
.btn--wa:hover { --btn-bg: #23BC5F; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink-800);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--ink-400); background: var(--ink-50); }

.btn--light { --btn-bg: #fff; --btn-fg: var(--ink-900); }
.btn--outline-light {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn--outline-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

.btn--sm { padding: 0.625rem 1.125rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-sm); font-weight: 620; color: var(--brand-600);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 6. Icon System ---------- */
.icon { width: 24px; height: 24px; flex: none; }

.icon-box {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--brand-50); color: var(--brand-600);
  border: 1px solid var(--brand-100);
}
.icon-box .icon { width: 22px; height: 22px; }
.icon-box--accent {
  background: #FDF2F8; color: var(--accent-600); border-color: #FBCFE8;
}
.icon-box--ink { background: var(--ink-50); color: var(--ink-700); border-color: var(--border); }
.icon-box--lg {
  width: 56px; height: 56px; border-radius: var(--r-lg);
  background: var(--grad-brand);
  border-color: transparent; color: #fff;
  box-shadow: var(--shadow-brand);
}
.icon-box--lg .icon { width: 26px; height: 26px; }

/* ---------- 7. Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--border); box-shadow: var(--shadow-xs); }

.header__inner { display: flex; align-items: center; gap: var(--sp-5); width: 100%; }

.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad-brand);
  color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 1.0625rem; letter-spacing: -0.02em;
  box-shadow: var(--shadow-brand);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-weight: 750; font-size: 0.9375rem;
  text-transform: uppercase; letter-spacing: .02em;
}
.brand__role {
  font-size: 0.6875rem; font-weight: 550; letter-spacing: .02em;
  color: var(--text-muted);
}
/* "Panel Konten" di admin tetap bergaya label kapital */
.admin .brand__role { font-size: 0.625rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: var(--sp-5); }
.nav a {
  font-size: var(--fs-sm); font-weight: 550; color: var(--ink-600);
  transition: color .2s var(--ease);
}
.nav a:hover { color: var(--ink-900); }

.header__cta { display: flex; align-items: center; gap: var(--sp-3); }

.nav-toggle {
  display: none; width: 42px; height: 42px; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--border-strong);
  border-radius: var(--r-md); cursor: pointer; color: var(--ink-800);
}

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: var(--sp-3) var(--gutter) var(--sp-5);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: var(--sp-3) 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .nav-toggle { display: inline-flex; }
  .header__cta .btn--ghost { display: none; }
}
@media (max-width: 560px) {
  .header__cta .btn span { display: none; }
  .header__cta .btn { padding: 0.75rem; }
}

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(56rem 32rem at 70% -8%, #E9DAFF 0%, transparent 66%),
    radial-gradient(40rem 28rem at 100% 56%, #FBDCEF 0%, transparent 64%),
    radial-gradient(30rem 20rem at -6% 14%, #F3E8FF 0%, transparent 56%),
    linear-gradient(180deg, #F8F3FF 0%, #FDFBFF 100%);
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(11,16,32,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,16,32,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 100%);
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 100%);
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero h1 { font-size: var(--fs-display); margin-top: var(--sp-5); }
.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__desc { margin-top: var(--sp-5); max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }

.hero__note {
  display: flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-4); font-size: var(--fs-xs); color: var(--text-muted);
}
.hero__note svg { width: 15px; height: 15px; color: var(--success); }

.pills { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-7); }
.pill {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 0.5rem 0.875rem;
  background: rgba(255,255,255,.7); border: 1px solid var(--border-strong);
  border-radius: var(--r-full);
  font-size: var(--fs-xs); font-weight: 600; color: var(--ink-700);
  backdrop-filter: blur(6px);
}
.pill svg { width: 15px; height: 15px; color: var(--brand-600); }

/* Hero visual */
.hero__visual { position: relative; }

/* Cahaya ambient di belakang ilustrasi, senada dengan warna asetnya */
.hero__visual::before {
  content: ""; position: absolute; inset: 4% -8% 8% -4%; z-index: 0;
  background:
    radial-gradient(closest-side, rgba(122, 47, 217, .28), rgba(236, 72, 153, .18) 55%, transparent 78%);
  filter: blur(26px);
}

.hero__visual picture { position: relative; z-index: 1; display: block; }
.hero__visual img {
  width: 100%; height: auto;
  filter: drop-shadow(0 34px 46px rgba(52, 18, 95, .24));
  animation: float 9s ease-in-out infinite;
}
.hero .float-card { z-index: 2; }

.float-card {
  position: absolute; display: flex; align-items: center; gap: var(--sp-3);
  padding: 0.75rem 1rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
/* Label duduk di atas nilainya — tanpa ini keduanya sebaris karena span inline */
.float-card > span:not(.icon-box) { display: flex; flex-direction: column; gap: 2px; }
.float-card__label { font-size: 0.625rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.float-card__value { font-size: var(--fs-sm); font-weight: 700; letter-spacing: -0.02em; }
.float-card--a { top: -2%; left: -7%; }
.float-card--b { bottom: 4%; right: -5%; animation-delay: -3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 560px; margin-inline: auto; }
  .float-card--a { left: 0; }
  .float-card--b { right: 0; }
}
@media (max-width: 760px) {
  /* Di layar kecil, teks tetap yang pertama dibaca */
  .hero__visual { order: 0; margin-top: var(--sp-7); }
}
@media (max-width: 560px) { .float-card { display: none; } }

/* ---------- 9. Cards ---------- */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card h3 { font-size: var(--fs-h3); margin-top: var(--sp-4); }
.card p { margin-top: var(--sp-3); color: var(--text-muted); font-size: var(--fs-sm); line-height: 1.7; }

.grid { display: grid; gap: var(--sp-4); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .grid--2, .grid--4 { grid-template-columns: 1fr; } }

/* Problem card accent */
.problem-card::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  background: linear-gradient(90deg, var(--accent-500), var(--accent-400));
  opacity: 0; transition: opacity .3s var(--ease);
}
.problem-card:hover::after { opacity: 1; }

.callout {
  display: flex; align-items: center; gap: var(--sp-4);
  margin-top: var(--sp-6); padding: var(--sp-5) clamp(1.25rem, 3vw, 2rem);
  background: linear-gradient(120deg, var(--brand-900), var(--ink-900) 70%);
  color: #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.callout svg { width: 26px; height: 26px; color: var(--accent-400); flex: none; }
.callout p { font-size: var(--fs-lg); font-weight: 600; letter-spacing: -0.015em; }

/* ---------- 10. Services ---------- */
.service {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(1.75rem, 5vw, 4.5rem); align-items: center;
  padding-block: clamp(2.25rem, 5vw, 3.75rem);
  border-top: 1px solid var(--border);
}
.service:first-of-type { border-top: 0; }
.service:nth-of-type(even) .service__media { order: -1; }

.service__head { display: flex; align-items: center; gap: var(--sp-4); }
.service__media { display: grid; gap: var(--sp-4); align-content: start; }

/* Ilustrasi ringkas per layanan */
.service__art {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.service__num {
  display: inline-flex; align-items: baseline; gap: var(--sp-2);
  font-size: 0.75rem; font-weight: 700; letter-spacing: .18em;
  color: var(--brand-600); text-transform: uppercase;
}
.service__num b {
  font-size: 2.25rem; font-weight: 800; letter-spacing: -0.04em;
  line-height: 1; color: var(--brand-200);
}
.service h3 { font-size: var(--fs-h1); margin-top: var(--sp-3); }
.service__desc { margin-top: var(--sp-4); }

.tag {
  display: inline-flex; align-items: flex-start; gap: var(--sp-3);
  margin-top: var(--sp-5); padding: var(--sp-4);
  background: var(--bg-subtle); border-left: 3px solid var(--brand-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--fs-sm); color: var(--ink-700);
}
.tag svg { width: 18px; height: 18px; color: var(--brand-600); flex: none; margin-top: 2px; }
.tag b {
  display: block; font-size: var(--fs-xs); letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px;
}

.deliverables {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-md);
}
.deliverables > b {
  display: block; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted);
  padding-bottom: var(--sp-4); border-bottom: 1px solid var(--border);
}
.checklist { display: grid; gap: var(--sp-1); margin-top: var(--sp-3); }
.checklist li {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-3) 0; font-size: var(--fs-sm); color: var(--ink-700);
  border-bottom: 1px dashed var(--border);
}
.checklist li:last-child { border-bottom: 0; }
.checklist svg {
  width: 20px; height: 20px; flex: none; color: var(--brand-600);
  margin-top: 1px;
}
.service__link { margin-top: var(--sp-5); display: inline-flex; }

@media (max-width: 900px) {
  .service { grid-template-columns: 1fr; }
  .service:nth-of-type(even) .service__media { order: 0; }
}

/* ---------- 11. Why / Value ---------- */
.why-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.why-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.24); transform: translateY(-4px); }
.why-card .icon-box {
  background: rgba(139,69,232,.20); border-color: rgba(169,123,245,.38); color: #D9BEFF;
}
.why-card h3 { font-size: var(--fs-h3); margin-top: var(--sp-5); }
.why-card p { margin-top: var(--sp-3); color: var(--ink-300); font-size: var(--fs-sm); line-height: 1.75; }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4); margin-top: var(--sp-6);
}
.stat {
  padding: var(--sp-5); border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03);
}
.stat b {
  display: block; font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem); font-weight: 800;
  letter-spacing: -0.03em; color: #fff;
}
.stat span { font-size: var(--fs-xs); color: var(--ink-300); }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; } }

/* ---------- 12. Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); position: relative; }
.step { position: relative; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: clamp(1.25rem, 2.5vw, 1.75rem); box-shadow: var(--shadow-sm); }
.step__num {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: var(--r-full); background: var(--ink-900); color: #fff;
  font-size: var(--fs-sm); font-weight: 700; letter-spacing: -0.01em;
}
.step h3 { font-size: 1.0625rem; margin-top: var(--sp-4); }
.step p { margin-top: var(--sp-2); font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.7; }
.step::after {
  content: ""; position: absolute; top: 40px; right: -14px; width: 12px; height: 2px;
  background: var(--border-strong);
}
.step:last-child::after { display: none; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } .step::after { display: none; } }
@media (max-width: 600px)  { .steps { grid-template-columns: 1fr; } }

.note {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-3);
  margin-top: var(--sp-6); padding: var(--sp-4) var(--sp-5);
  background: var(--white); border: 1px dashed var(--border-strong);
  border-radius: var(--r-full); font-size: var(--fs-sm); color: var(--ink-700);
  text-align: center;
}
.note svg { width: 18px; height: 18px; color: var(--brand-600); flex: none; }

/* ---------- 13. Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); align-items: start; }
@media (max-width: 860px) { .pricing { grid-template-columns: 1fr; } }

.plan {
  position: relative; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.plan--featured {
  background: linear-gradient(165deg, var(--ink-900), #2C1250 85%);
  border-color: transparent; color: #fff; box-shadow: var(--shadow-lg);
}
.plan--featured h3 { color: #fff; }
.plan--featured .plan__slot { color: var(--brand-200); }
.plan--featured .plan__price { color: #fff; }
.plan--featured .plan__period { color: var(--ink-300); }
.plan--featured .checklist li { color: #E6E9F2; border-bottom-color: rgba(255,255,255,.12); }
.plan--featured .checklist svg { color: var(--accent-400); }
.plan--featured .plan__divider { background: rgba(255,255,255,.14); }

.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--r-full);
  background: var(--grad-brand);
  color: #FFFFFF; font-size: 0.6875rem; font-weight: 750;
  letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 8px 18px -8px rgba(236,72,153,.7);
}
.plan__badge svg { width: 13px; height: 13px; }

.plan__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-3); }
.plan h3 { font-size: 1.375rem; }
.plan__slot {
  font-size: var(--fs-xs); font-weight: 650; color: var(--brand-600);
  background: var(--brand-50); padding: 5px 11px; border-radius: var(--r-full);
  white-space: nowrap;
}
.plan--featured .plan__slot { background: rgba(109,134,245,.2); }

.plan__price {
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
  margin-top: var(--sp-4);
  font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.375rem); font-weight: 800;
  letter-spacing: -0.035em;
}
.plan__price small { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
.plan__period { font-size: var(--fs-sm); font-weight: 550; color: var(--text-muted); letter-spacing: -0.01em; }
.plan__divider { height: 1px; background: var(--border); margin-block: var(--sp-5); }
.plan .btn { margin-top: var(--sp-6); }

.pricing-notes { margin-top: var(--sp-6); display: grid; gap: var(--sp-3); }
.pricing-notes li {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: var(--fs-sm); color: var(--text-muted);
}
.pricing-notes svg { width: 17px; height: 17px; color: var(--ink-400); flex: none; margin-top: 3px; }

/* ---------- 14. Kata Klien ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
@media (max-width: 980px) { .quotes { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; } }

.quote {
  position: relative;
  display: flex; flex-direction: column; gap: var(--sp-4);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: clamp(1.5rem, 2.8vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }

/* Tanda kutip tetap di dalam alur — kalau diposisikan absolute,
   teks kutipan menabraknya begitu barisnya memanjang. */
.quote__mark { width: 28px; height: 21px; flex: none; color: var(--brand-200); }
.quote blockquote {
  margin: 0; font-size: var(--fs-lg); line-height: 1.7; color: var(--ink-800);
  letter-spacing: -0.012em; text-wrap: pretty;
}

.quote__by {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-top: auto; padding-top: var(--sp-5); border-top: 1px solid var(--border);
}
/* :not(.avatar) — tanpa ini, avatar ikut jadi flex-column dan inisialnya nempel ke atas */
.quote__by > span:not(.avatar) { display: flex; flex-direction: column; line-height: 1.35; }
.quote__by b { font-size: var(--fs-sm); font-weight: 650; letter-spacing: -0.01em; }
.quote__by > span:not(.avatar) span { font-size: var(--fs-xs); color: var(--text-muted); }

.avatar {
  display: grid; place-items: center; width: 42px; height: 42px; flex: none;
  border-radius: var(--r-full);
  background: var(--grad-brand);
  color: #fff; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .04em;
}

/* ---------- 15. Contact / CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(48rem 26rem at 82% 12%, rgba(122,47,217,.38) 0%, transparent 62%),
    radial-gradient(38rem 22rem at 8% 92%, rgba(236,72,153,.20) 0%, transparent 60%),
    var(--ink-900);
  color: #fff;
}
.cta__inner {
  position: relative; display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.cta h2 { font-size: var(--fs-h2); margin-top: var(--sp-4); color: #fff; }
.cta p { margin-top: var(--sp-4); color: var(--ink-300); font-size: var(--fs-lg); max-width: 52ch; line-height: 1.7; }

.contact-list { display: grid; gap: var(--sp-3); }
.contact-card {
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-5); border-radius: var(--r-lg);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.contact-card:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.3); transform: translateX(4px); }
.contact-card .icon-box { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.16); color: #fff; }
/* Label di atas nilainya — span pembungkus perlu jadi kolom */
.contact-card > span:not(.icon-box) { display: flex; flex-direction: column; gap: 3px; }
.contact-card__label {
  font-size: 0.625rem; font-weight: 650; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-300);
}
.contact-card__value { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.02em; margin-top: 2px; }
.contact-card__arrow { margin-left: auto; width: 18px; height: 18px; color: var(--ink-400); }

@media (max-width: 860px) { .cta__inner { grid-template-columns: 1fr; } }

/* ---------- 16. Footer ---------- */
.footer { background: var(--ink-900); color: var(--ink-400); border-top: 1px solid rgba(255,255,255,.09); }
.footer__inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4);
  padding-block: var(--sp-6); font-size: var(--fs-xs);
}
.footer .brand__name { color: #fff; }
.footer .brand__role { color: var(--ink-400); }
.footer__meta { margin-left: auto; display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.footer__meta a:hover { color: #fff; }

/* ---------- 17. Motion ---------- */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 18. Print ---------- */
@media print {
  .header, .hero__grid, .float-card, .nav-toggle { display: none !important; }
  body { color: #000; }
  .section { padding-block: 1.5rem; }
}
