/* ============================================================
   BIKINWEBAJA — Design System
   Dark mode + electric blue accent
   ============================================================ */

:root {
  --bg: #070b16;
  --bg-2: #0a1020;
  --bg-3: #0e1628;
  --surface: #111a30;
  --surface-2: #16203a;
  --border: rgba(148, 163, 255, 0.12);
  --border-strong: rgba(0, 213, 255, 0.35);

  --text: #e8edf9;
  --text-soft: #b7c2d9;
  --text-muted: #8b97b3;

  --accent: #00d4ff;
  --accent-2: #3b82f6;
  --accent-grad: linear-gradient(120deg, #00d4ff 0%, #3b82f6 100%);
  --accent-glow: rgba(0, 212, 255, 0.35);
  --wa: #25d366;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --shadow-card: 0 18px 50px -22px rgba(0, 0, 0, 0.75);
  --shadow-glow: 0 0 0 1px rgba(0, 212, 255, 0.12), 0 18px 60px -18px rgba(0, 212, 255, 0.28);

  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --container: 1180px;
  --nav-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

a, button, summary, .btn { touch-action: manipulation; }

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; }

::selection { background: rgba(0, 212, 255, 0.3); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Background gradient layer ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60rem 40rem at 85% -10%, rgba(59, 130, 246, 0.16), transparent 60%),
    radial-gradient(50rem 35rem at -10% 25%, rgba(0, 212, 255, 0.10), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 45%);
}

/* ---------- Utilities ---------- */
.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

.section { padding: 96px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, rgba(14, 22, 40, 0.55), rgba(7, 11, 22, 0.2)); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 14px 0 12px;
  line-height: 1.2;
}

.section-head p { color: var(--text-muted); }

.section-head--left {
  text-align: left;
  margin: 0 0 56px;
}

@media (max-width: 767px) {
  .section-head--left { margin-bottom: 40px; }
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  will-change: transform;
  white-space: nowrap;
}

.btn svg { flex-shrink: 0; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  color: #04121b;
  background: var(--accent-grad);
  box-shadow: 0 8px 28px -8px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -8px var(--accent-glow);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(0, 212, 255, 0.05);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(0, 212, 255, 0.12);
  box-shadow: 0 8px 24px -10px var(--accent-glow);
}

.btn-outline {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  color: var(--accent);
  box-shadow: 0 8px 24px -12px var(--accent-glow);
}

.btn-wa {
  color: #fff;
  background: linear-gradient(120deg, #1ebe5d, var(--wa));
  box-shadow: 0 8px 28px -8px rgba(37, 211, 102, 0.5);
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.55);
}

.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.87rem; }
.btn-block { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  background: rgba(7, 11, 22, 0.55);
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(7, 11, 22, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.8);
}

.navbar-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 0 22px -6px var(--accent-glow);
}

.brand-text b { color: var(--accent); font-weight: 800; }

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 9px 13px;
  font-size: 0.94rem;
  color: var(--text-soft);
  border-radius: 10px;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 200;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #04121b;
  font-weight: 700;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(50rem 34rem at 18% 0%, rgba(0, 212, 255, 0.13), transparent 58%),
    radial-gradient(40rem 30rem at 85% 25%, rgba(59, 130, 246, 0.16), transparent 60%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding: 40px 0 84px;
}

/* --- badge --- */
.badge-bounce {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 7px 15px;
  border-radius: 100px;
  animation: floaty 5s ease-in-out infinite;
}

.badge-bounce strong { color: var(--accent); }

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse 2s infinite;
}

.free-mark { color: #ffd863; }

/* --- copy --- */
.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  color: var(--text-soft);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 30px;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-trust svg { color: var(--accent); }

/* --- visual --- */
.hero-visual { position: relative; }

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}
.glow-a { width: 300px; height: 300px; background: rgba(0, 212, 255, 0.3); top: -80px; right: -40px; }
.glow-b { width: 260px; height: 260px; background: rgba(59, 130, 246, 0.3); bottom: -60px; left: -50px; }

.browser {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, #0c1424, #0a0f1e);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.url-bar {
  flex: 1;
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
}

.lock { color: var(--accent); font-size: 0.7rem; }

.mock-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
}

.mock-logo {
  width: 26px; height: 26px;
  border-radius: 6px;
  object-fit: cover;
  margin-right: 6px;
}

.mock-menu { width: 34px; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.08); }
.mock-cta {
  margin-left: auto;
  width: 64px; height: 22px;
  border-radius: 100px;
  background: var(--accent-grad);
  opacity: 0.9;
}

.browser-body { padding: 18px 20px 24px; }

.mock-hero .mock-chip {
  display: block;
  width: 90px; height: 16px;
  border-radius: 100px;
  background: rgba(0, 212, 255, 0.16);
  border: 1px solid rgba(0, 212, 255, 0.4);
  margin-bottom: 14px;
}

.mock-title {
  display: block;
  width: 60%; height: 15px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.16);
  margin-bottom: 8px;
}
.mock-title.short { width: 42%; margin-bottom: 14px; }

.mock-line {
  display: block;
  width: 78%; height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 6px;
}
.mock-line.short { width: 55%; margin-bottom: 16px; }

.mock-btn {
  display: block;
  width: 110px; height: 26px;
  border-radius: 100px;
  background: var(--accent-grad);
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.mock-card {
  height: 62px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

/* --- float cards --- */
.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: rgba(12, 20, 36, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-glow);
}

.float-card svg { color: var(--accent); }
.float-card strong { display: block; font-size: 0.95rem; line-height: 1.2; }
.float-card span { font-size: 0.75rem; color: var(--text-muted); }

.stat-card { top: 30px; right: -24px; animation: floaty 5.5s ease-in-out infinite; }
.wa-card { bottom: -22px; left: -18px; animation: floaty 6s ease-in-out 0.8s infinite; }
.wa-card svg { color: var(--wa); }

/* --- stats bar --- */
.hero-stats {
  position: relative;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(14, 22, 40, 0.4), rgba(7, 11, 22, 0.3));
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 0;
}

.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat span { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   LAYANAN
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(22, 32, 58, 0.75), rgba(14, 22, 40, 0.55));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}
.service-card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.09);
  border: 1px solid rgba(0, 212, 255, 0.25);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.service-card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }

.service-card:nth-child(2n) .card-icon { border-radius: 50%; }
.service-card:nth-child(3n) .card-icon { border-radius: 8px; transform: rotate(-3deg); }
.service-card:nth-child(3n):hover .card-icon { transform: scale(1.08) rotate(2deg); }

.service-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 18px; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

.card-link svg { transition: transform 0.25s ease; }
.card-link:hover svg { transform: translateX(4px); }

/* ============================================================
   HARGA
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(22, 32, 58, 0.8), rgba(14, 22, 40, 0.6));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}

.price-featured {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(165deg, rgba(0, 212, 255, 0.09), rgba(22, 32, 58, 0.75) 45%);
}

.price-ribbon {
  position: absolute;
  top: 18px; right: -32px;
  transform: rotate(45deg);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #04121b;
  background: var(--accent-grad);
  padding: 5px 38px;
}

.price-head h3 { font-size: 1.18rem; font-weight: 700; }
.price {
  margin: 12px 0 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.price-from { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.price strong { font-size: clamp(1.5rem, 2.6vw, 1.9rem); font-weight: 800; letter-spacing: -0.5px; }
.price-desc strong { font-size: 1.3rem; }

.price-feats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.price-feats li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.price-feats svg { color: var(--accent); flex-shrink: 0; }

.custom-desc { color: var(--text-soft); font-size: 0.94rem; margin: 6px 0 22px; }
.price-note {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-left: 2px solid rgba(0, 212, 255, 0.4);
  padding-left: 12px;
  margin-bottom: 22px;
}

.price-caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-top: 30px;
}

/* ============================================================
   JASA UPDATE
   ============================================================ */
.update-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 56px 46px;
  background: linear-gradient(165deg, rgba(0, 212, 255, 0.06), rgba(14, 22, 40, 0.6) 50%);
  box-shadow: var(--shadow-glow);
  text-align: center;
  overflow: hidden;
}

.update-badge {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 18px;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--border-strong);
  animation: floaty 5s ease-in-out infinite;
}

.update-wrap h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; letter-spacing: -0.5px; }
.update-intro { max-width: 560px; margin: 14px auto 34px; color: var(--text-soft); }

.update-list {
  max-width: 620px;
  margin: 0 auto 34px;
  text-align: left;
}

.update-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.update-item:last-child { border-bottom: none; }
.update-item span { color: var(--text-soft); }
.update-item strong { color: var(--accent); font-weight: 700; white-space: nowrap; }

.update-item:hover { background: rgba(0, 212, 255, 0.05); padding-left: 24px; }

.update-cta p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(22, 32, 58, 0.75), rgba(14, 22, 40, 0.6));
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}

.portfolio-thumb {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
}

.theme-a { background: linear-gradient(150deg, #0f1b31, #12233f 60%, #0b1526); }
.theme-b { background: linear-gradient(150deg, #101a33, #0f2640 60%, #0a1428); }
.theme-c { background: linear-gradient(150deg, #0c1730, #13203c 60%, #0a1226); }

.theme-a::after, .theme-b::after, .theme-c::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(20rem 12rem at 80% 0%, rgba(0, 212, 255, 0.12), transparent 60%);
  pointer-events: none;
}

/* mock mini-sites */
.mock-site { width: 100%; max-width: 300px; padding: 18px; border-radius: 12px; background: rgba(7, 11, 22, 0.75); border: 1px solid rgba(255,255,255,0.06); }
.mock-ta-top, .mock-sh-top, .mock-sc-top { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.mock-ta-top span, .mock-sh-top span, .mock-sc-top span { width: 22px; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.12); }
.mock-ta-top .pill { width: 46px; height: 12px; border-radius: 100px; background: var(--accent-grad); margin-left: auto; }
.mock-ta-title { width: 55%; height: 12px; border-radius: 4px; background: rgba(255,255,255,0.22); margin-bottom: 10px; }
.mock-ta-line { width: 80%; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.09); margin-bottom: 5px; }
.mock-ta-line.short { width: 52%; }
.mock-ta-cta { width: 80px; height: 18px; border-radius: 100px; background: var(--accent-grad); margin-top: 12px; }

.mock-sh-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.mock-sh-grid span { height: 42px; border-radius: 6px; background: rgba(255,255,255,0.07); }
.mock-sh-grid.short span:nth-child(1) { background: rgba(0,212,255,0.18); }
.mock-sh-top .cart { width: 30px; height: 10px; border-radius: 3px; background: rgba(0,212,255,0.5); margin-left: auto; }

.mock-profile { text-align: center; }
.mock-pf-av { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 12px; background: linear-gradient(140deg, rgba(0,212,255,0.5), rgba(59,130,246,0.3)); border: 1px solid var(--border-strong); }
.mock-pf-av.wide { width: 100px; height: 56px; border-radius: 12px; background: rgba(255,255,255,0.14); }
.mock-pf-name { width: 90px; height: 10px; border-radius: 4px; background: rgba(255,255,255,0.28); margin: 0 auto 7px; }
.mock-pf-role { width: 64px; height: 7px; border-radius: 3px; background: rgba(255,255,255,0.12); margin: 0 auto 12px; }
.mock-pf-pills { display: flex; gap: 6px; justify-content: center; margin-bottom: 12px; }
.mock-pf-pills span { width: 40px; height: 10px; border-radius: 100px; background: rgba(0,212,255,0.2); border: 1px solid rgba(0,212,255,0.3); }
.mock-pf-cta { width: 80px; height: 16px; border-radius: 100px; background: var(--accent-grad); margin: 0 auto; }
.mock-pf-btn-row { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.mock-pf-btn-row span { width: 70px; height: 14px; border-radius: 100px; background: rgba(255,255,255,0.12); }
.mock-pf-btn-row span.border { background: transparent; border: 1px solid rgba(0,212,255,0.4); }

.mock-school { width: 100%; max-width: 300px; padding: 18px; border-radius: 12px; background: rgba(7, 11, 22, 0.75); border: 1px solid rgba(255,255,255,0.06); }
.mock-sc-top span { width: 60px; height: 7px; margin-left: auto; }
.mock-sc-top span:first-child { width: 44px; height: 10px; background: rgba(0,212,255,0.7); margin-left: 0; border-radius: 2px; }
.mock-sc-line { width: 75%; height: 7px; border-radius: 3px; background: rgba(255,255,255,0.16); margin-bottom: 5px; }
.mock-sc-line.short { width: 50%; margin-bottom: 12px; }
.mock-sc-chips { display: flex; gap: 6px; }
.mock-sc-chips span { width: 44px; height: 14px; border-radius: 100px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12); }

.portfolio-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.portfolio-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.category { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.placeholder-tag {
  font-size: 0.68rem; font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed var(--border-strong);
  padding: 3px 9px;
  border-radius: 100px;
}
.portfolio-body h3 { font-size: 1.1rem; font-weight: 700; }
.portfolio-body p { color: var(--text-muted); font-size: 0.9rem; flex: 1; }
.portfolio-body .btn { align-self: flex-start; margin-top: 8px; }

.portfolio-cta {
  margin-top: 40px;
  text-align: center;
}
.portfolio-cta p { margin-bottom: 18px; color: var(--text-soft); }

/* ============================================================
   PROSES
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 64px 20px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(22, 32, 58, 0.75), rgba(14, 22, 40, 0.55));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}

.step-num {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  font-weight: 800;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
}

.process-step h3 { font-size: 1.06rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; margin: 0 auto; }

.process-step::before {
  content: "";
  position: absolute;
  top: 43px;
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(0, 212, 255, 0.28) 0 4px, transparent 4px 9px);
}

.process-step:last-child::before { display: none; }

/* ============================================================
   KEUNGGULAN
   ============================================================ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;
  row-gap: 0;
}

.benefit {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 6px 30px 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: none;
  transition: transform 0.25s ease;
}

.benefit:hover { transform: translateX(4px); }

.benefit-ico {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 13px;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.09);
  border: 1px solid rgba(0, 212, 255, 0.25);
}

.benefit h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; padding-top: 2px; }
.benefit p { color: var(--text-muted); font-size: 0.88rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(22, 32, 58, 0.7), rgba(14, 22, 40, 0.5));
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item[open] { border-color: var(--border-strong); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--accent); }

.faq-ico {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.faq-ico::before, .faq-ico::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 9px; height: 1.6px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}
.faq-ico::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-ico { transform: rotate(180deg); }
.faq-item[open] .faq-ico::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-item p { padding: 0 22px 20px; color: var(--text-muted); font-size: 0.92rem; }

/* ============================================================
   CTA / KONTAK
   ============================================================ */
.cta-section { padding-bottom: 60px; }

.cta-box {
  position: relative;
  text-align: center;
  padding: 70px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, rgba(0, 212, 255, 0.1), rgba(14, 22, 40, 0.85) 45%, rgba(22, 32, 58, 0.7));
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(30rem 20rem at 50% -30%, rgba(0, 212, 255, 0.22), transparent 60%),
    radial-gradient(24rem 16rem at 10% 110%, rgba(59, 130, 246, 0.2), transparent 60%);
}

.cta-box > *:not(.cta-bg) { position: relative; }

.cta-box h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 800; letter-spacing: -0.6px; margin: 14px 0 10px; }
.cta-box p { color: var(--text-soft); font-size: 1.06rem; margin-bottom: 30px; }

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-note {
  margin: 18px 0 0 !important;
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  opacity: 0.8;
}

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 34px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.contact-links a:hover { color: var(--accent); }
.contact-links svg { color: var(--accent); }
.contact-links a:nth-child(1) svg { color: var(--wa); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(10, 16, 32, 0.7), rgba(5, 8, 16, 0.9));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 60px 0 46px;
}

.footer-brand .brand { margin-bottom: 14px; }
.footer-tag { font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--accent); }
.footer-desc { color: var(--text-muted); font-size: 0.89rem; max-width: 320px; }

.footer-col h3 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-col a:hover { color: var(--accent); padding-left: 4px; }

.footer-cta p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.84rem; text-align: center; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #1ebe5d, var(--wa));
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.25s ease;
}

.wa-float:hover { transform: scale(1.08); }

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: ripple 2.4s ease-out infinite;
  pointer-events: none;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.7; }
  80%, 100% { transform: scale(1.55); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .service-grid, .price-grid, .portfolio-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 42px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::before { display: none; }
  .process-step:nth-child(4)::before { display: none; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }

  .hero-inner { grid-template-columns: 1fr; padding-bottom: 60px; }
  .hero-content { text-align: center; max-width: 640px; margin: 0 auto; }
  .hero-sub { margin: 0 auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-trust { justify-content: center; }

  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .stat-card { right: -8px; }
  .wa-card { left: -8px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 26px; }

  /* mobile nav */
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(7, 11, 22, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px 28px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-link { display: block; padding: 13px 12px; font-size: 1rem; }
  .nav-link::after { display: none; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 36px); }
  .section { padding: 58px 0; }
  .section-head { margin-bottom: 38px; }

  .badge-bounce { font-size: 0.78rem; }
  .hero { padding-top: calc(var(--nav-h) + 36px); }
  .hero-inner { padding-top: 12px; }

  .service-grid, .price-grid, .portfolio-grid, .benefit-grid, .process-grid { grid-template-columns: 1fr; }
  .process-step::before { display: none; }

  .update-wrap { padding: 40px 22px; }
  .update-item { flex-direction: column; align-items: flex-start; gap: 4px; }
  .update-item strong { font-size: 0.9rem; }

  .float-card { display: none; }

  .stats-row { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .stat { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
  .stat strong { font-size: 1.5rem; }

  .cta-box { padding: 48px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 46px 0 36px; }
  .btn-lg { padding: 14px 24px; }

  .price-ribbon { right: -34px; }
}

@media (max-width: 380px) {
  .btn { padding: 11px 16px; font-size: 0.86rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .stat-card, .wa-card { display: none; }
}

/* ============================================================
   MODAL PREVIEW PROJECT
   ============================================================ */
body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.open { opacity: 1; visibility: visible; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 14, 0.78);
  backdrop-filter: blur(8px);
}

.modal-window {
  position: relative;
  width: min(860px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: #0c1424;
  box-shadow: var(--shadow-glow);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.modal.open .modal-window { transform: translateY(0) scale(1); }

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.modal-head-info h3 { font-size: 1.15rem; font-weight: 800; margin: 4px 0 2px; }
.modal-head-info p { color: var(--text-muted); font-size: 0.88rem; max-width: 560px; }

.modal-close {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--text-soft);
  border: 1px solid var(--border);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.modal-close:hover { color: var(--accent); border-color: var(--border-strong); transform: rotate(90deg); }

.modal-frame {
  margin: 18px 24px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  background: #0a0f1e;
}

.frame-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.frame-bar .url-bar { flex: 1; margin-left: 8px; padding: 4px 12px; font-size: 0.72rem; }

.frame-body {
  max-height: 52vh;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  font-size: 13px;
}

.modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 24px 20px;
}

/* ============================================================
   PREVIEW PAGE MOCKUP (light theme "screenshot")
   ============================================================ */
.pmscreen {
  --pm-grad: linear-gradient(135deg, #dbe7ff 0%, #eef3fb 100%);
  --pm-grad2: linear-gradient(135deg, #c9d8f8 0%, #dfe9f9 100%);
  background: #f6f7fb;
  color: #1c2333;
  font-family: var(--font);
  line-height: 1.5;
  border-radius: 0;
}

.pm-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: #ffffff;
  border-bottom: 1px solid #e6e9f0;
}

.pm-logo { font-weight: 800; font-size: 15px; color: #1d4ed8; letter-spacing: -0.2px; }
.pm-links { display: flex; gap: 14px; font-size: 12.5px; color: #5b6478; margin-left: 6px; }
.pm-links span { cursor: default; }
.pm-pill {
  margin-left: auto;
  background: #2563eb;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 100px;
  white-space: nowrap;
}
.pm-pill.dark { background: #1c2333; }
.pm-cart { width: 20px; height: 16px; margin-left: auto; position: relative; }
.pm-cart::before {
  content: "";
  position: absolute;
  top: 0; left: 4px;
  width: 12px; height: 10px;
  border: 2px solid #1c2333;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}
.pm-cart::after {
  content: "";
  position: absolute;
  bottom: 0; left: 8px;
  width: 4px; height: 4px;
  background: #1c2333;
  border-radius: 50%;
  box-shadow: 7px 0 0 #1c2333;
}

.pm-hero { padding: 38px 28px; background: var(--pm-grad); }
.pm-hero.pm-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 22px; align-items: center; }
.pm-hero.pm-toggle { grid-template-columns: 0.85fr 1.15fr; }
.pm-hero.pm-center { text-align: center; }
.pm-hero.pm-tint { background: linear-gradient(135deg, #e7dcf7 0%, #f3ecfb 100%); }

.pm-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.pm-h { font-size: 24px; font-weight: 800; line-height: 1.15; margin: 8px 0 8px; letter-spacing: -0.4px; }
.pm-p { font-size: 12.5px; color: #5b6478; margin: 4px 0 16px; max-width: 420px; }
.pm-hero.pm-center .pm-p { margin-inline: auto; }

.pm-sec { padding: 24px 28px; }
.pm-sec-h { font-size: 15px; font-weight: 800; margin-bottom: 14px; }

.pm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pm-card {
  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 4px 14px -8px rgba(28, 35, 51, 0.18);
}
.pm-card b { display: block; font-size: 12.5px; margin: 8px 0 3px; }
.pm-card em { font-style: normal; font-weight: 700; color: #2563eb; font-size: 11.5px; }

.pm-rows { display: flex; flex-direction: column; gap: 8px; }
.pm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: 9px;
  padding: 11px 15px;
  font-size: 12.5px;
}
.pm-row em { font-style: normal; font-weight: 600; color: #2563eb; }

.pm-img { display: block; border-radius: 9px; }
.pm-img.big { height: 120px; }
.pm-img-1 { background: var(--pm-grad); }
.pm-img-2 { background: linear-gradient(135deg, #ffe3c4, #f6ecdd); }
.pm-img-3 { background: linear-gradient(135deg, #e7dcf7, #f5f1fb); }
.pm-img-4 { background: linear-gradient(135deg, #d9f0e0, #edf7f0); }
.pm-img-5 { background: linear-gradient(135deg, #fde7e2, #fbf1ee); }
.pm-img-6 { background: linear-gradient(135deg, #dbe7ff, #0b2a66); }

.pm-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pm-photos .pm-img { height: 66px; }

.pm-av {
  width: 62px; height: 62px;
  display: block;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #93c5fd);
  border: 4px solid #fff;
  box-shadow: 0 6px 18px -6px rgba(37, 99, 235, 0.45);
}

.pm-pills { display: flex; gap: 7px; justify-content: center; margin-bottom: 16px; }
.pm-pills span {
  font-size: 11px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
}

.pm-dark-b {
  background: #1c2333;
  color: #fff;
  text-align: center;
}
.pm-dark-b .pm-big { color: #cdd5e6; margin: 0 0 14px; font-size: 12.5px; }
.pm-dark-b .pm-pill { margin-left: auto; margin-right: auto; background: #2563eb; }

.pm-cartbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 28px;
  background: #fff;
  border-top: 1px solid #e6e9f0;
}
.pm-muted { font-size: 12.5px; color: #5b6478; }
.pm-muted b { color: #1c2333; }

.pm-mapbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 28px;
  background: #eef3fb;
  border-top: 1px solid #e6e9f0;
}

@media (max-width: 640px) {
  .modal { padding: 12px; }
  .modal-head { padding: 16px 16px; }
  .modal-frame { margin: 12px 12px 0; }
  .modal-foot { padding: 12px 16px 16px; }
  .modal-head-info p { display: none; }

  .pm-links { display: none; }
  .pm-hero { padding: 30px 20px; }
  .pm-hero.pm-split { grid-template-columns: 1fr; }
  .pm-sec { padding: 20px; }
  .pm-grid { grid-template-columns: 1fr; gap: 10px; }
  .pm-photos { grid-template-columns: repeat(2, 1fr); }
  .pm-cartbar, .pm-mapbar { flex-direction: column; align-items: flex-start; }
  .pm-cartbar .pm-pill, .pm-mapbar .pm-pill { margin-left: 0; }
}