/* ============================================================
   PT Perintis Karya Digital — Company Profile
   Design System / Global Styles
   ============================================================ */

:root {
  --bg:        #071210;
  --bg-2:      #0b1a17;
  --surface:   rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border:    rgba(255, 255, 255, 0.08);
  --border-2:  rgba(255, 255, 255, 0.14);

  --text:      #eceef5;
  --text-2:    #a2a7bd;
  --text-3:    #6b7089;

  --brand:     #14b8a6;
  --brand-2:   #22c55e;
  --accent:    #2dd4a7;
  --accent-2:  #6ee7a8;

  --grad:      linear-gradient(120deg, #14b8a6 0%, #22c55e 52%, #84cc16 100%);
  --grad-soft: linear-gradient(120deg, rgba(20,184,166,.16), rgba(132,204,22,.16));

  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 24px 60px -20px rgba(8, 9, 20, 0.9);
  --maxw:      1180px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", var(--font);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 45% at 80% -5%, rgba(20, 184, 166, 0.22), transparent 60%),
    radial-gradient(50% 40% at 5% 10%, rgba(132, 204, 22, 0.15), transparent 55%),
    radial-gradient(60% 50% at 50% 110%, rgba(34, 197, 94, 0.16), transparent 60%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { position: relative; padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.28rem; }
p  { color: var(--text-2); }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 7px 14px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  background: var(--grad-soft);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-2);
}

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 18px 0 14px; }
.section-head p { font-size: 1.06rem; }

.lead { font-size: 1.16rem; color: var(--text-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, border-color .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(20, 184, 166, 0.55);
}
.btn-primary:hover { box-shadow: 0 18px 40px -8px rgba(20, 184, 166, 0.7); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--border-2);
  color: var(--text);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--brand); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 18, 16, 0.75);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: -0.01em; }
.logo-mark {
  width: 40px; height: 40px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(20, 184, 166, 0.45));
}
.logo small { display: block; font-family: var(--font); font-size: 0.64rem; font-weight: 500; letter-spacing: 0.16em; color: var(--text-3); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.94rem;
  color: var(--text-2);
  padding: 9px 15px;
  border-radius: 100px;
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; display: block; height: 2px; width: 60%; margin: 3px auto 0;
  background: var(--grad); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero { padding: 168px 0 90px; text-align: center; }
.hero h1 { margin: 24px auto 22px; max-width: 15ch; }
.hero p { max-width: 60ch; margin: 0 auto 34px; font-size: 1.16rem; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 80px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.stat .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
.stat .lbl { font-size: 0.9rem; color: var(--text-3); margin-top: 4px; }

/* ---------- Marquee logos ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 26px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scroll 32s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--text-3); white-space: nowrap; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Klien (pita terang) ----------
   Logo klien dipasang di pita terang, bukan di atas latar gelap: banyak logo
   klinik berteks gelap dan hilang di latar gelap, sedangkan menjadikannya
   siluet putih menghapus warna merek yang justru mereka jaga. */
.klien-band {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, .06);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: 72px 0;
}
.klien-band .section-head { margin-bottom: 40px; }
.klien-band .section-head h2 { color: #12181f; }
.klien-band .section-head p { color: #5c6672; }
.klien-band .eyebrow {
  color: #0b7d63;
  border-color: rgba(20, 184, 166, .35);
  background: linear-gradient(120deg, rgba(20, 184, 166, .12), rgba(132, 204, 22, .12));
}
.klien-band .eyebrow::before { background: #0b7d63; box-shadow: 0 0 10px rgba(11, 125, 99, .6); }

/* Flex, bukan grid: jumlah logo tidak selalu habis dibagi kolom, dan baris
   terakhir yang menggantung di kiri membuat deretannya terlihat timpang.
   Dengan flex + center, sisa berapa pun tetap rapi di tengah. */
.klien-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 34px 26px;
}
.klien-grid img {
  flex: 0 0 auto;
  width: 150px;                /* sel seragam supaya bobotnya seimbang */
  max-height: 54px;
  object-fit: contain;
  transition: transform .3s var(--ease);
}
.klien-grid img:hover { transform: scale(1.07); }
.klien-kosong { text-align: center; color: #8b93a1; font-size: .92rem; }

@media (max-width: 960px) { .klien-grid img { width: 132px; } }
@media (max-width: 640px) {
  .klien-band { padding: 56px 0; }
  .klien-grid { gap: 26px 18px; }
  .klien-grid img { width: 104px; max-height: 42px; }
}

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: transform .4s var(--ease), border-color .4s, background .4s;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .4s;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-2); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; }
.card-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-soft);
  border: 1px solid var(--border-2);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.98rem; }
.card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { font-size: 0.78rem; color: var(--text-2); padding: 5px 11px; border: 1px solid var(--border); border-radius: 100px; background: rgba(255,255,255,.02); }

/* Service card numbered */
.svc-num { font-family: var(--font-display); font-size: 0.85rem; color: var(--accent-2); letter-spacing: .1em; margin-bottom: 14px; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px;
  box-shadow: var(--shadow);
}
.checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; color: var(--text-2); }
.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px; height: 24px; margin-top: 1px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid var(--border-2);
  color: var(--accent-2);
  font-size: 0.8rem; font-weight: 700;
}

/* Mock browser window for media */
.mock {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; border-bottom: 1px solid var(--border); }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #3a3d52; display: block; }
.mock-body { padding: 22px; display: grid; gap: 12px; }
.mock-line { height: 12px; border-radius: 6px; background: var(--surface-2); }
.mock-line.g { background: var(--grad); opacity: .8; }
.mock-blocks { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 6px; }
.mock-block { height: 66px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--border); }

/* ---------- Portfolio ---------- */
.folio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.folio {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: transform .4s var(--ease), border-color .4s;
}
.folio:hover { transform: translateY(-6px); border-color: var(--border-2); }
.folio-cover { aspect-ratio: 16 / 10; position: relative; display: grid; place-items: center; overflow: hidden; }
.folio-cover .emoji { font-size: 3.4rem; filter: drop-shadow(0 8px 20px rgba(0,0,0,.4)); z-index: 1; }
.folio-cover::after { content:""; position:absolute; inset:0; opacity:.9; }
.folio:nth-child(1) .folio-cover::after { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.folio:nth-child(2) .folio-cover::after { background: linear-gradient(135deg, #22c55e, #15803d); }
.folio:nth-child(3) .folio-cover::after { background: linear-gradient(135deg, #84cc16, #4d7c0f); }
.folio:nth-child(4) .folio-cover::after { background: linear-gradient(135deg, #2dd4bf, #0e7490); }
.folio:nth-child(5) .folio-cover::after { background: linear-gradient(135deg, #4ade80, #16a34a); }
.folio:nth-child(6) .folio-cover::after { background: linear-gradient(135deg, #10b981, #047857); }
.folio:nth-child(7) .folio-cover::after { background: linear-gradient(135deg, #34d399, #0d9488); }
.folio:nth-child(8) .folio-cover::after { background: linear-gradient(135deg, #a3e635, #65a30d); }
.folio:nth-child(9) .folio-cover::after { background: linear-gradient(135deg, #5eead4, #0f766e); }
.folio-body { padding: 24px; }
.folio-body .cat { font-size: 0.78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-2); }
.folio-body h3 { margin: 8px 0 8px; }
.folio-body p { font-size: 0.95rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { padding: 28px 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); position: relative; }
.step-n { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; line-height: 1; margin-bottom: 16px; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.quote { padding: 34px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.quote p { font-size: 1.05rem; color: var(--text); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; }
.who .name { font-weight: 600; font-size: 0.96rem; }
.who .role { font-size: 0.85rem; color: var(--text-3); }

/* ---------- Edition cards ---------- */
.edition { position: relative; }
.edition .edi-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.edition .edi-emoji { width: 56px; height: 56px; flex-shrink: 0; border-radius: 15px; display: grid; place-items: center; font-size: 1.7rem; background: var(--grad-soft); border: 1px solid var(--border-2); }
.edition .edi-head h3 { margin: 0; }
.edition .edi-head .edi-for { font-size: .82rem; color: var(--text-3); }
.edition ul.feat { display: grid; gap: 9px; margin-top: 6px; }
.edition ul.feat li { display: flex; gap: 9px; font-size: .93rem; color: var(--text-2); }
.edition ul.feat li::before { content: "✓"; color: var(--accent-2); font-weight: 700; flex-shrink: 0; }

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.compare { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare th, .compare td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.compare thead th { font-family: var(--font-display); font-size: .92rem; color: var(--text); background: rgba(255,255,255,.03); }
.compare thead th:not(:first-child) { text-align: center; }
.compare tbody td:not(:first-child) { text-align: center; }
.compare td:first-child { color: var(--text-2); font-size: .94rem; }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:hover td { background: rgba(255,255,255,.02); }
.compare .yes { color: var(--accent-2); font-weight: 700; font-size: 1.05rem; }
.compare .no { color: var(--text-3); }
.compare .opt { color: var(--text-3); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }

/* Add-on / info chips row */
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.addon { display: flex; align-items: flex-start; gap: 13px; padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); }
.addon .ico { font-size: 1.3rem; }
.addon h4 { font-size: .98rem; margin-bottom: 3px; }
.addon p { font-size: .86rem; }
.addon .price-tag { font-family: var(--font-display); font-size: .84rem; color: var(--accent-2); margin-top: 5px; }

/* ---------- Tabs ---------- */
.tabs-wrap { text-align: center; margin-bottom: 40px; }
.tabs { display: inline-flex; gap: 6px; padding: 6px; border: 1px solid var(--border); border-radius: 100px; background: var(--surface); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); flex-wrap: wrap; justify-content: center; }
.tab-btn, .mode-btn { font-family: var(--font-display); font-weight: 500; font-size: .94rem; padding: 10px 22px; border-radius: 100px; border: 0; background: transparent; color: var(--text-2); cursor: pointer; transition: background .25s, color .25s; }
.tab-btn:hover, .mode-btn:hover { color: var(--text); }
.tab-btn.active, .mode-btn.active { background: var(--grad); color: #fff; box-shadow: 0 8px 20px -8px rgba(20,184,166,.6); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .45s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.price { position: relative; display: flex; flex-direction: column; padding: 34px 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.price.featured { border-color: var(--brand); background: linear-gradient(180deg, rgba(20,184,166,.12), var(--surface)); box-shadow: var(--shadow); }
.price .plan { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.price .amt { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; margin: 14px 0 4px; }
.price .amt small { font-size: .9rem; color: var(--text-3); font-weight: 400; }
.price .badge { position: absolute; }
.price ul { margin: 22px 0 26px; display: grid; gap: 11px; }
.price li { display: flex; gap: 10px; font-size: .94rem; color: var(--text-2); }
.price li::before { content: "✓"; color: var(--accent-2); font-weight: 700; }
.price .btn { margin-top: auto; justify-content: center; }
.pill { position: absolute; top: 18px; right: 18px; font-size: .72rem; padding: 5px 12px; border-radius: 100px; background: var(--grad); color:#fff; font-weight:600; letter-spacing:.06em; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 64px 48px;
  border-radius: 26px;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--border-2);
  background: linear-gradient(120deg, rgba(20,184,166,.2), rgba(132,204,22,.13));
}
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 120% at 50% 0%, rgba(139,92,246,.35), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { max-width: 54ch; margin: 0 auto 28px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
.info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.info-item .ico { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-2); font-size: 1.2rem; }
.info-item h4 { font-family: var(--font); font-size: 0.82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); font-weight: 600; margin-bottom: 3px; }
.info-item p { color: var(--text); }

.form { padding: 34px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; margin-bottom: 8px; color: var(--text-2); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-2);
  background: rgba(0,0,0,.25);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.96rem;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(20,184,166,.2);
}
.field textarea { resize: vertical; min-height: 120px; }
.form .btn { width: 100%; justify-content: center; }
.form-note { text-align: center; font-size: .85rem; color: var(--text-3); margin-top: 14px; }
.form-msg { display:none; margin-top:16px; padding:14px; border-radius:var(--radius-sm); background: var(--grad-soft); border:1px solid var(--border-2); color: var(--accent-2); font-size:.94rem; text-align:center; }

/* ---------- Page hero (inner) ---------- */
.page-hero { padding: 148px 0 40px; text-align: center; }
.page-hero h1 { margin: 20px auto 16px; max-width: 18ch; }
.page-hero p { max-width: 58ch; margin: 0 auto; font-size: 1.12rem; }
.breadcrumb { font-size: .86rem; color: var(--text-3); }
.breadcrumb a:hover { color: var(--text); }

/* ---------- Team ---------- */
/* Flex + center, bukan grid: jumlah anggota tim jarang pas habis dibagi kolom,
   dan baris yang menggantung di kiri membuat susunannya terlihat timpang. */
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.team-grid .member { flex: 0 1 230px; }
.member { text-align: center; padding: 30px 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: transform .4s var(--ease); }
.member:hover { transform: translateY(-6px); }
.member .ava { width: 78px; height: 78px; margin: 0 auto 16px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff; }
.member h4 { font-size: 1.05rem; }
.member .role { font-size: .88rem; color: var(--accent-2); margin-top: 3px; }

/* Values grid */
.value { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.value .ico { font-size: 1.8rem; margin-bottom: 14px; }
.value h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value p { font-size: .95rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 70px 0 34px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer .logo { margin-bottom: 16px; }
.footer-about p { font-size: .94rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-3); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-2); font-size: .94rem; padding: 6px 0; transition: color .25s; }
.footer-col a:hover { color: var(--text); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--border-2); display: grid; place-items: center; color: var(--text-2); transition: .3s; }
.socials a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--border); font-size: .88rem; color: var(--text-3); flex-wrap: wrap; gap: 12px; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .steps { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .folio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  section { padding: 68px 0; }
  .grid-3, .grid-2, .steps, .footer-grid { grid-template-columns: 1fr; }
  .nav-links { position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(7,18,16,.97); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 12px; transform: translateY(-140%); transition: transform .4s var(--ease); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px; border-radius: 10px; }
  .nav-links a.active::after { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 130px 0 60px; }
  .cta-band { padding: 44px 24px; }
  .container { padding: 0 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
