/* ============================================================
   Components — Poppins, brand purple, fixed padding
   ============================================================ */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.005em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t-base), background var(--t-base), border-color var(--t-base), color var(--t-base), box-shadow var(--t-base);
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--color-primary-soft); outline-offset: 2px; }

.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(71, 70, 134, 0.5);
}
.btn-secondary {
  background: #fff;
  border-color: var(--color-border);
  color: var(--color-text);
}
.btn-secondary:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--color-text);
}
.btn-ghost:hover { background: var(--color-primary-soft); color: var(--color-primary); }
.btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1fbb5a; border-color: #1fbb5a; color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(37, 211, 102, 0.45);
}
.btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-light:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }
.btn-lg { padding: 0.95rem 1.85rem; font-size: var(--fs-base); }
.btn-block { display: flex; width: 100%; }

/* App store badges */
.app-badges {
  display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.05rem;
  background: var(--color-text);
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  transition: all var(--t-base);
  position: relative;
}
.app-badge:hover {
  background: var(--color-primary-darker); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4);
}
.app-badge svg { width: 24px; height: 24px; flex-shrink: 0; }
.app-badge .label { display: flex; flex-direction: column; line-height: 1.1; }
.app-badge .label small { font-size: 0.62rem; opacity: 0.75; letter-spacing: 0.04em; }
.app-badge .label strong { font-size: 0.92rem; color: #fff; font-weight: 600; }
.app-badge .coming {
  position: absolute; top: -7px; right: -7px;
  background: var(--color-accent); color: #fff;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.18rem 0.5rem; border-radius: var(--radius-pill);
  text-transform: uppercase;
}

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base);
}
.nav.scrolled {
  border-color: var(--color-border-soft);
  background: rgba(255,255,255,0.95);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: var(--space-6);
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.nav-logo:hover { color: var(--color-text); }
.nav-logo img { height: 32px; width: auto; }
.nav-logo .logo-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 0.95rem;
}
.nav-menu {
  display: flex; align-items: center; gap: 0.15rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu > li { position: relative; }
.nav-menu a {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.55rem 0.9rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-pill);
  transition: all var(--t-fast);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--color-primary); background: var(--color-primary-soft); }
/* Shop link — slightly highlighted */
.nav-menu a.nav-shop-link {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-menu a.nav-shop-link i.hgi-stroke { font-size: 15px; }
.nav-menu a.nav-shop-link:hover { background: var(--color-primary-soft); }
.nav-cta { display: flex; align-items: center; gap: 0.5rem; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  align-items: center; justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; width: 16px; height: 2px;
  background: var(--color-text); border-radius: 2px; position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--t-base);
  list-style: none; margin: 0.5rem 0 0;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 0.7rem 0.9rem;
  border-radius: var(--radius-md); font-size: var(--fs-sm);
}
.dropdown a strong { display: block; font-weight: 600; color: var(--color-text); }
.dropdown a small {
  display: block; color: var(--color-text-faint);
  font-size: var(--fs-xs); font-weight: 400; margin-top: 0.15rem;
}

@media (max-width: 1024px) {
  .nav-menu, .nav-cta-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0; visibility: hidden;
  transition: all var(--t-base);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0;
  width: min(340px, 90vw); height: 100%;
  background: #fff; padding: var(--space-6);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-slow);
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-6);
}
.mobile-menu-close {
  width: 38px; height: 38px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.mobile-nav-list { list-style: none; padding: 0; margin: 0 0 var(--space-6); }
.mobile-nav-list a {
  display: block; padding: 0.85rem 0.5rem;
  font-weight: 500; color: var(--color-text);
  border-bottom: 1px solid var(--color-border-soft);
}
.mobile-nav-list .sub-list { list-style: none; padding-left: 0.85rem; margin: 0; }
.mobile-nav-list .sub-list a {
  font-size: var(--fs-sm); color: var(--color-text-muted);
  font-weight: 400; border: none; padding: 0.5rem;
}
.mobile-cta-stack { display: flex; flex-direction: column; gap: 0.6rem; }

/* ============================================================
   HERO — brand gradient + image placeholder
   ============================================================ */
.hero {
  position: relative;
  padding: var(--space-20) 0 var(--space-24);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.hero-bg::before,
.hero-bg::after {
  content: ""; position: absolute;
  border-radius: 50%; filter: blur(70px); opacity: 0.5;
}
.hero-bg::before {
  width: 720px; height: 720px;
  top: -260px; right: -180px;
  background: radial-gradient(circle, rgba(71, 70, 134, 0.45) 0%, transparent 70%);
}
.hero-bg::after {
  width: 580px; height: 580px;
  bottom: -240px; left: -160px;
  background: radial-gradient(circle, rgba(18, 148, 127, 0.4) 0%, transparent 70%);
}
.hero-bg .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(71, 70, 134, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 70, 134, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .pill {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 { margin-bottom: var(--space-5); }
.hero h1 .accent,
.hero h1 .serif {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.hero-lead {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 540px;
  line-height: 1.6;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
  margin-bottom: var(--space-8);
}
.hero-trust {
  display: flex; align-items: center; gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border-soft);
}
.hero-trust .avatars { display: inline-flex; }
.hero-trust .avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  border: 2px solid #fff;
  display: inline-block;
  margin-left: -10px;
}
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust-text { font-size: var(--fs-sm); color: var(--color-text-muted); }
.hero-trust-text strong {
  display: block; color: var(--color-text); font-size: var(--fs-base);
  font-weight: 700; letter-spacing: -0.01em;
}

/* Hero visual: image placeholder */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 0.95;
  border-radius: var(--radius-2xl);
  background:
    linear-gradient(135deg, var(--color-primary-soft) 0%, var(--color-secondary-soft) 100%),
    var(--color-bg-soft);
  border: 1px dashed rgba(71, 70, 134, 0.25);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(71, 70, 134, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 70, 134, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 100%);
}
.hero-image .placeholder-label {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}
.hero-image .placeholder-label .icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.6);
  display: grid; place-items: center;
  backdrop-filter: blur(10px);
  margin-bottom: 0.5rem;
}
.hero-image .placeholder-label .icon svg { width: 32px; height: 32px; opacity: 0.7; }
.hero-image .placeholder-label small {
  display: block;
  margin-top: 0.4rem;
  color: var(--color-primary-light);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  opacity: 0.85;
}
.hero-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .hero { padding: var(--space-12) 0 var(--space-16); }
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-12); text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-image { max-width: 460px; }
}

/* ============================================================
   Logo strip
   ============================================================ */
.logo-strip {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
  background: var(--color-bg-softer);
}
.logo-strip .label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-6);
}
.logo-strip-row {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: var(--space-10);
  opacity: 0.55;
}
.logo-strip-row .placeholder-logo {
  height: 28px; padding: 0 1rem;
  display: inline-flex; align-items: center;
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: -0.01em;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ============================================================
   Pillars (3-col)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.pillar {
  padding: var(--space-8);
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  transition: all var(--t-base);
}
.pillar:hover {
  border-color: var(--color-primary-soft);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pillar .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.pillar .icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: var(--fs-lg); margin-bottom: var(--space-3); font-weight: 600; }
.pillar p { font-size: var(--fs-sm); margin-bottom: 0; line-height: 1.65; }

@media (max-width: 768px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   Feature grid
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.feature-card {
  padding: var(--space-7) var(--space-6);
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  border-color: var(--color-primary-soft);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
  /* Muted, low-contrast: soft tinted bg + desaturated icon color */
  background: #f3f4f6;        /* neutral gray-100 */
  color: #6b7280;             /* gray-500 — soft, not harsh */
  border: 1px solid #e5e7eb;
}
.feature-card .icon svg { width: 22px; height: 22px; }
/* Subtle per-card tint variants — same lightness, different hue, all muted */
.icon-bg-1 { background: #eef0f7; color: #6b6da3; border-color: #e2e5f0; }   /* primary tint */
.icon-bg-2 { background: #e8f3f0; color: #5a8a7e; border-color: #d8e9e3; }   /* secondary tint */
.icon-bg-3 { background: #f5ede4; color: #a37a5b; border-color: #ebe0d2; }   /* accent tint */
.icon-bg-4 { background: #f1eef5; color: #7a6b95; border-color: #e3def0; }   /* purple-gray */
.icon-bg-5 { background: #eaf0f5; color: #6b8095; border-color: #dbe4ed; }   /* slate-blue */
.icon-bg-6 { background: #f2efe6; color: #8a7e5c; border-color: #e8e2d1; }   /* warm-sand */
.feature-card h3 { font-size: var(--fs-lg); margin-bottom: var(--space-3); font-weight: 600; }
.feature-card p { font-size: var(--fs-sm); margin-bottom: var(--space-5); flex-grow: 1; line-height: 1.65; }
.feature-card .link-more {
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--color-primary);
  display: inline-flex; align-items: center;
  gap: 0.35rem; transition: gap var(--t-fast);
}
.feature-card .link-more:hover { gap: 0.6rem; }

@media (max-width: 1024px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Segment cards — DIFFERENTIATED per industry
   ============================================================ */
.segments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.segment-card {
  position: relative;
  padding: var(--space-7);
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  background: var(--seg-bg, var(--color-bg-soft));
  color: var(--color-text);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  overflow: hidden;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.segment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -16px rgba(15, 23, 42, 0.18);
  color: var(--color-text);
}
.segment-card .seg-illu {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 140px; height: 140px;
  display: grid; place-items: center;
  color: var(--seg-color, var(--color-primary));
  opacity: 0.85;
  transition: transform var(--t-slow);
}
.segment-card:hover .seg-illu { transform: rotate(-6deg) scale(1.08); }
.segment-card .seg-illu svg { width: 100%; height: 100%; }
.segment-card .seg-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--seg-color, var(--color-primary));
  margin-bottom: var(--space-3);
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 500;
}
.segment-card .seg-tag::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: currentColor;
}
.segment-card h3 {
  font-size: var(--fs-2xl);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
  line-height: 1.15;
  font-weight: 700;
}
.segment-card .seg-sub {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}
.segment-card .seg-chips {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: auto;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
}
.segment-card .seg-chips span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.32rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.7);
  color: var(--color-text);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.segment-card .seg-arrow {
  position: relative; z-index: 1;
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--seg-color, var(--color-primary));
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap var(--t-fast);
}
.segment-card:hover .seg-arrow { gap: 0.65rem; }

.segment-card.seg-fnb { --seg-bg: var(--c-fnb-soft); --seg-color: var(--c-fnb); }
.segment-card.seg-retail { --seg-bg: var(--c-retail-soft); --seg-color: var(--c-retail); }
.segment-card.seg-jasa { --seg-bg: var(--c-jasa-soft); --seg-color: var(--c-jasa); }
.segment-card.seg-konter { --seg-bg: var(--c-konter-soft); --seg-color: var(--c-konter); }

@media (max-width: 1024px) { .segments { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .segments { grid-template-columns: 1fr; } }

/* ============================================================
   Showcase
   ============================================================ */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.showcase.reverse > :first-child { order: 2; }
.showcase-content .eyebrow-inline {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
}
.showcase-content h2 { margin-bottom: var(--space-5); }
.showcase-content p {
  font-size: var(--fs-md); margin-bottom: var(--space-6);
  line-height: 1.65; color: var(--color-text-muted);
}
.showcase-content .check-list {
  list-style: none; padding: 0; margin: 0 0 var(--space-8);
}
.showcase-content .check-list li {
  position: relative; padding-left: 2rem;
  margin-bottom: var(--space-3); font-size: var(--fs-sm); line-height: 1.6;
}
.showcase-content .check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.15rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-7.5 7.5a1 1 0 01-1.4 0L4.3 10.7a1 1 0 011.4-1.4L8.5 12 15.3 5.3a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* Showcase image placeholder */
.showcase-visual {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary-soft) 0%, var(--color-secondary-soft) 100%);
  border-radius: var(--radius-2xl);
  padding: 0;
  display: flex; justify-content: center; align-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px dashed rgba(71, 70, 134, 0.2);
}
.showcase-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(71, 70, 134, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 70, 134, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 100%);
}
.showcase-visual .placeholder-label {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.showcase-visual .placeholder-label .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.7);
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
}
.showcase-visual .placeholder-label .icon svg { width: 28px; height: 28px; opacity: 0.7; }
.showcase-visual .placeholder-label small {
  display: block;
  margin-top: 0.3rem;
  color: var(--color-primary-light);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  opacity: 0.85;
}
.showcase-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

@media (max-width: 1024px) {
  .showcase, .showcase.reverse { grid-template-columns: 1fr; gap: var(--space-10); }
  .showcase.reverse > :first-child { order: initial; }
}

/* ============================================================
   Reasons
   ============================================================ */
.reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.reason {
  display: flex; gap: var(--space-5);
  padding: var(--space-7);
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
}
.reason .num {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.04em;
}
.reason h3 { font-size: var(--fs-lg); margin-bottom: var(--space-2); font-weight: 600; }
.reason p { font-size: var(--fs-sm); margin-bottom: 0; line-height: 1.65; }

@media (max-width: 768px) { .reasons { grid-template-columns: 1fr; } }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.testimonial-card {
  padding: var(--space-7);
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  display: flex; flex-direction: column;
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--color-primary);
  opacity: 0.18;
}
.testimonial-card .stars {
  color: #f59e0b; font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
  letter-spacing: 0.1em;
}
.testimonial-card blockquote {
  font-style: normal; margin: 0 0 var(--space-5);
  color: var(--color-text); font-size: var(--fs-base);
  line-height: 1.65; flex-grow: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-soft);
}
.testimonial-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; letter-spacing: -0.01em;
}
.testimonial-author .name {
  font-weight: 600; color: var(--color-text);
  font-size: var(--fs-sm); letter-spacing: -0.01em;
}
.testimonial-author .role {
  font-size: var(--fs-xs); color: var(--color-text-faint);
}

@media (max-width: 1024px) { .testimonials { grid-template-columns: 1fr; } }

/* ============================================================
   CTA block
   ============================================================ */
.cta-block {
  padding: var(--space-16) var(--space-12);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
  color: #fff;
  border-radius: var(--radius-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 70% at 80% 0%, rgba(255,255,255,0.18) 0%, transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(18, 148, 127, 0.4) 0%, transparent 60%);
  pointer-events: none;
}
.cta-block::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 0%, transparent 90%);
  pointer-events: none;
}
.cta-block > * { position: relative; }
.cta-block h2 { color: #fff; margin-bottom: var(--space-4); max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-block h2 .serif { color: rgba(255,255,255,0.8); }
.cta-block p { color: rgba(255, 255, 255, 0.85); margin-bottom: var(--space-8); font-size: var(--fs-md); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-block .actions {
  display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center;
}

@media (max-width: 768px) {
  .cta-block { padding: var(--space-12) var(--space-6); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: all var(--t-base);
}
.faq-item[open] {
  border-color: var(--color-primary-soft);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: var(--space-5) var(--space-6);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  letter-spacing: -0.01em;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.4rem; font-weight: 400;
  color: var(--color-primary); transition: transform var(--t-fast);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: var(--space-20) 0 var(--space-8);
  font-size: var(--fs-sm);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 80%);
  pointer-events: none;
}
.footer > * { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.footer h4 {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-5);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: var(--space-2); }
.footer a { color: rgba(255, 255, 255, 0.65); font-size: var(--fs-sm); }
.footer a:hover { color: #fff; }
.footer .footer-brand {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem;
  color: #fff; letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.footer .footer-brand img { height: 32px; width: auto; }
.footer .footer-brand .logo-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 0.95rem;
}
.footer-tagline { margin-bottom: var(--space-5); max-width: 320px; line-height: 1.65; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--t-fast);
}
.footer-social a:hover { background: var(--color-primary); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-6);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-4);
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--fs-xs);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.footer-bottom-links { display: flex; gap: var(--space-5); flex-wrap: wrap; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============================================================
   WA Floating button
   ============================================================ */
.wa-float {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  z-index: 90;
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 16px 32px -8px rgba(37, 211, 102, 0.5);
  transition: all var(--t-base);
}
.wa-float:hover {
  background: #1fbb5a; color: #fff;
  transform: translateY(-2px) scale(1.06);
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float .wa-label { display: none; }

/* ============================================================
   Page Hero (subpages)
   ============================================================ */
.page-hero {
  padding: var(--space-20) 0 var(--space-12);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(50% 50% at 90% 0%, rgba(71, 70, 134, 0.10) 0%, transparent 60%),
    radial-gradient(40% 40% at 0% 0%, rgba(18, 148, 127, 0.08) 0%, transparent 60%);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(71, 70, 134, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 70, 134, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 0%, transparent 90%);
}
.page-hero .breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-5);
}
.page-hero .breadcrumb a { color: var(--color-text-muted); }
.page-hero .breadcrumb a:hover { color: var(--color-primary); }
.page-hero h1 { margin-bottom: var(--space-5); max-width: 16ch; }
.page-hero .lead {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: var(--space-7);
  line-height: 1.6;
}
.page-hero .actions {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
}

/* ============================================================
   Pain points
   ============================================================ */
.pain-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.pain-point {
  padding: var(--space-7);
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  position: relative;
}
.pain-point::before {
  content: "";
  position: absolute;
  top: var(--space-7); left: var(--space-7);
  width: 32px; height: 4px;
  background: var(--color-danger);
  border-radius: 4px;
}
.pain-point h3 {
  font-size: var(--fs-md);
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
  font-weight: 600;
}
.pain-point p { font-size: var(--fs-sm); margin: 0; line-height: 1.65; }

@media (max-width: 1024px) { .pain-points { grid-template-columns: 1fr; } }

/* ============================================================
   Steps / How it works
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: var(--space-10);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step h3 { font-size: var(--fs-md); margin-bottom: var(--space-2); font-weight: 600; }
.step p { font-size: var(--fs-sm); margin: 0; line-height: 1.65; }

@media (max-width: 1024px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   Article / prose
   ============================================================ */
.prose { max-width: 760px; }
.prose h2 { margin-top: var(--space-12); }
.prose h3 { margin-top: var(--space-8); }
.prose p, .prose ul, .prose ol { font-size: var(--fs-base); line-height: 1.75; }
.prose ul li, .prose ol li { margin-bottom: 0.5rem; }

/* ============================================================
   Image placeholder utility (reusable)
   ============================================================ */
.img-placeholder {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, var(--color-primary-soft) 0%, var(--color-secondary-soft) 100%);
  border: 1px dashed rgba(71, 70, 134, 0.25);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: grid; place-items: center;
}
.img-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(71, 70, 134, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 70, 134, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 100%);
}
.img-placeholder .placeholder-label {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 1.5rem;
}
.img-placeholder .placeholder-label .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.7);
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
}
.img-placeholder .placeholder-label .icon svg { width: 28px; height: 28px; opacity: 0.7; }
.img-placeholder .placeholder-label small {
  display: block;
  margin-top: 0.3rem;
  color: var(--color-primary-light);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  opacity: 0.85;
}
.img-placeholder img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 2;
}

/* Showcase eyebrow override (left-aligned tighter) */
.showcase-eyebrow { margin: 0 0 var(--space-5); text-align: left; }
.showcase-eyebrow .eyebrow::before { display: none; }

/* Logo image inside nav/footer */
.nav-logo .logo-img {
  height: 32px;
  width: auto;
  display: inline-block;
}
.footer-brand .logo-img {
  height: 36px;
  width: auto;
  display: inline-block;
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  max-width: 1000px;
  margin: 0 auto;
}
.contact-grid h2 { font-size: var(--fs-xl); margin-bottom: var(--space-3); }
.contact-grid h2.spaced { margin-top: var(--space-8); }
.contact-stack { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-6); }
.contact-card {
  padding: var(--space-5);
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
}
.contact-card .ck-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: 0.35rem;
}
.contact-card .ck-value {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
  display: inline-block;
}
.contact-card p {
  font-size: var(--fs-sm);
  margin: 0.4rem 0 0;
  color: var(--color-text-muted);
}
.contact-wa {
  padding: var(--space-5);
  background: #25d366;
  border-radius: var(--radius-lg);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.contact-wa:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.5);
}
.contact-wa .tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.contact-wa .name {
  font-weight: 600;
  font-size: var(--fs-md);
  letter-spacing: -0.01em;
}
.map-frame {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.social-row { display: flex; gap: 0.6rem; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.social-row a:hover { background: var(--color-primary); color: #fff; }
.social-row svg { width: 18px; height: 18px; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* FAQ section heading + prose centered */
.faq-section-h { margin-top: var(--space-10); font-size: var(--fs-xl); }
.faq-section-h:first-of-type { margin-top: var(--space-6); }
.prose-center { margin: 0 auto; }

/* ============================================================
   HERO — Full-bleed background image (post.app style)
   ============================================================ */
.hero.hero-bg-image {
  position: relative;
  padding: 0;
  min-height: 640px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero.hero-bg-image .hero-bg-photo {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(135deg, #2c2b5c 0%, #474686 60%, #12947f 100%);
}
.hero.hero-bg-image .hero-bg-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero.hero-bg-image .hero-bg-photo img { animation: none; }
}
.hero.hero-bg-image .hero-bg-photo .placeholder-fill {
  display: none;
}
.hero.hero-bg-image .hero-bg-photo.is-placeholder .placeholder-fill {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 4rem;
}
.hero.hero-bg-image .hero-bg-photo.is-placeholder .placeholder-label {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255,255,255,0.7);
  padding: 1.5rem;
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.04);
}
.hero.hero-bg-image .hero-bg-photo.is-placeholder .placeholder-label .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  display: grid; place-items: center;
}
.hero.hero-bg-image .hero-bg-photo.is-placeholder .placeholder-label .icon svg {
  width: 28px; height: 28px; opacity: 0.8;
}
.hero.hero-bg-image .hero-bg-photo.is-placeholder .placeholder-label small {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.hero.hero-bg-image .hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(44, 43, 92, 0.78) 0%, rgba(44, 43, 92, 0.45) 38%, rgba(44, 43, 92, 0.12) 68%, rgba(44, 43, 92, 0) 100%),
    linear-gradient(180deg, rgba(20, 22, 50, 0.05) 0%, rgba(20, 22, 50, 0.25) 100%);
}
.hero.hero-bg-image::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 80% at 0% 50%, rgba(71, 70, 134, 0.35) 0%, transparent 70%),
    radial-gradient(50% 60% at 100% 100%, rgba(18, 148, 127, 0.25) 0%, transparent 70%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero.hero-bg-image .hero-grid {
  display: block;
  padding: var(--space-20) 0;
}
.hero.hero-bg-image .hero-content {
  max-width: 580px;
  color: #fff;
}
.hero.hero-bg-image .hero-content > * {
  opacity: 0;
  animation: heroFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero.hero-bg-image .hero-content > *:nth-child(1) { animation-delay: 80ms; }
.hero.hero-bg-image .hero-content > *:nth-child(2) { animation-delay: 200ms; }
.hero.hero-bg-image .hero-content > *:nth-child(3) { animation-delay: 340ms; }
.hero.hero-bg-image .hero-content > *:nth-child(4) { animation-delay: 480ms; }
.hero.hero-bg-image .hero-content > *:nth-child(5) { animation-delay: 620ms; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero.hero-bg-image .hero-content > * { opacity: 1; animation: none; }
}
.hero.hero-bg-image .hero-content h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.hero.hero-bg-image .hero-content h1 .accent,
.hero.hero-bg-image .hero-content h1 .serif {
  background: none;
  -webkit-text-fill-color: initial;
  color: #ffd16b;
  font-family: var(--font-serif);
  font-style: italic;
}
.hero.hero-bg-image .hero-content .hero-lead {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-md);
  max-width: 480px;
}
.hero.hero-bg-image .hero-eyebrow {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.hero.hero-bg-image .hero-eyebrow .pill {
  background: var(--color-accent);
  color: #fff;
}
.hero.hero-bg-image .hero-trust {
  border-top-color: rgba(255,255,255,0.15);
}
.hero.hero-bg-image .hero-trust-text {
  color: rgba(255,255,255,0.75);
}
.hero.hero-bg-image .hero-trust-text strong {
  color: #fff;
}
.hero.hero-bg-image .hero-trust .avatars span {
  border-color: rgba(255,255,255,0.4);
}

@media (max-width: 1024px) {
  .hero.hero-bg-image { min-height: 560px; }
  .hero.hero-bg-image .hero-grid { padding: var(--space-16) 0; text-align: left; }
  .hero.hero-bg-image .hero-content { max-width: 100%; }
  .hero.hero-bg-image .hero-cta, .hero.hero-bg-image .hero-trust { justify-content: flex-start; }
  .hero.hero-bg-image .hero-overlay {
    background: linear-gradient(180deg, rgba(20, 22, 50, 0.7) 0%, rgba(20, 22, 50, 0.85) 100%);
  }
}

/* ============================================================
   PAGE HERO — Background image variant (used on segment pages)
   ============================================================ */
.page-hero.page-hero-image {
  padding: 0;
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero.page-hero-image::before,
.page-hero.page-hero-image::after { display: none; }
.page-hero.page-hero-image .hero-bg-photo {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(135deg, #2c2b5c 0%, #474686 60%, #12947f 100%);
}
.page-hero.page-hero-image .hero-bg-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
  animation: heroKenBurns 25s ease-in-out infinite alternate;
  will-change: transform;
}
.page-hero.page-hero-image .hero-bg-photo .placeholder-fill { display: none; }
.page-hero.page-hero-image .hero-bg-photo.is-placeholder .placeholder-fill {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 3rem;
}
.page-hero.page-hero-image .hero-bg-photo.is-placeholder .placeholder-label {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255,255,255,0.7);
  padding: 1.25rem;
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
}
.page-hero.page-hero-image .hero-bg-photo.is-placeholder .placeholder-label .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  display: grid; place-items: center;
}
.page-hero.page-hero-image .hero-bg-photo.is-placeholder .placeholder-label .icon svg { width: 24px; height: 24px; opacity: 0.8; }
.page-hero.page-hero-image .hero-bg-photo.is-placeholder .placeholder-label small {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: none; letter-spacing: 0;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.page-hero.page-hero-image .hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(44, 43, 92, 0.78) 0%, rgba(44, 43, 92, 0.45) 38%, rgba(44, 43, 92, 0.12) 68%, rgba(44, 43, 92, 0) 100%),
    linear-gradient(180deg, rgba(20, 22, 50, 0.05) 0%, rgba(20, 22, 50, 0.25) 100%);
}
.page-hero.page-hero-image .container {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  position: relative;
  z-index: 1;
}
.page-hero.page-hero-image h1,
.page-hero.page-hero-image .lead,
.page-hero.page-hero-image .actions,
.page-hero.page-hero-image .breadcrumb {
  max-width: 480px;
}
.page-hero.page-hero-image .breadcrumb,
.page-hero.page-hero-image .breadcrumb a {
  color: rgba(255,255,255,0.7);
}
.page-hero.page-hero-image .breadcrumb a:hover { color: #fff; }
.page-hero.page-hero-image h1 {
  color: #fff;
  max-width: 480px;
}
.page-hero.page-hero-image h1 .accent {
  background: linear-gradient(135deg, #ffd16b 0%, #ff8a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero.page-hero-image .lead {
  color: rgba(255,255,255,0.85);
  max-width: 480px;
}
.page-hero.page-hero-image .actions { gap: 0.65rem; }
.page-hero.page-hero-image > .container > * {
  opacity: 0;
  animation: heroFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-hero.page-hero-image > .container > *:nth-child(1) { animation-delay: 80ms; }
.page-hero.page-hero-image > .container > *:nth-child(2) { animation-delay: 200ms; }
.page-hero.page-hero-image > .container > *:nth-child(3) { animation-delay: 340ms; }
.page-hero.page-hero-image > .container > *:nth-child(4) { animation-delay: 480ms; }
@media (prefers-reduced-motion: reduce) {
  .page-hero.page-hero-image > .container > * { opacity: 1; animation: none; }
  .page-hero.page-hero-image .hero-bg-photo img { animation: none; }
}
@media (max-width: 768px) {
  .page-hero.page-hero-image { min-height: 420px; }
  .page-hero.page-hero-image .hero-overlay {
    background: linear-gradient(180deg, rgba(20, 22, 50, 0.55) 0%, rgba(20, 22, 50, 0.78) 100%);
  }
}

/* ============================================================
   Scroll-reveal — softer, more modern
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Soften card hover transitions */
.pillar, .feature-card, .testimonial-card, .reason, .pain-point, .segment-card {
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 500ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 300ms ease;
}

/* Softer button hover lift */
.btn { transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
                   background 250ms ease,
                   border-color 250ms ease,
                   color 250ms ease,
                   box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1); }

/* ============================================================
   HugeIcons (font) inside .icon containers — match SVG sizing
   ============================================================ */
.icon i.hgi-stroke {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
/* default icon (small contextual) — match prior 22-26px svg */
.pillar .icon i.hgi-stroke { font-size: 26px; }
.feature-card .icon i.hgi-stroke { font-size: 22px; }
.hero-image .placeholder-label .icon i.hgi-stroke,
.showcase-visual .placeholder-label .icon i.hgi-stroke { font-size: 32px; opacity: 0.7; }
/* page-hero placeholder + reasons + segment + general fallback */
.icon i.hgi-stroke { font-size: 22px; }

/* ============================================================
   Shop page
   ============================================================ */
.shop-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-10);
  padding: var(--space-5) var(--space-6);
  background: #f8f8fb;
  border-radius: var(--radius-xl);
  border: 1px solid #e8e8f0;
}
.shop-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}
.shop-trust-item i.hgi-stroke { font-size: 18px; color: var(--color-secondary); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-7);
  align-items: start;
}
@media (max-width: 768px) {
  .shop-grid { grid-template-columns: 1fr; }
}

.shop-card {
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-2xl);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 400ms var(--ease-spring), transform 400ms var(--ease-spring);
  position: relative;
}
.shop-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.shop-card-featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 18%, transparent);
}
.shop-card-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 2;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.shop-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: #f0f0f5;
  position: relative;
  overflow: hidden;
}
.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-spring);
}
.shop-card:hover .shop-card-img img { transform: scale(1.03); }
.shop-card-img.img-placeholder { background: linear-gradient(135deg, #eef0f7, #dde0f0); }
.shop-img-placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: rgba(71,70,134,0.25);
  letter-spacing: -0.02em;
  pointer-events: none;
}
/* hide placeholder text when real image loads */
.shop-card-img:not(.img-placeholder) .shop-img-placeholder-label { display: none; }

.shop-card-body {
  padding: var(--space-6) var(--space-7) var(--space-7);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.shop-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.shop-card-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  line-height: 1.25;
}

.shop-price-block { margin-bottom: var(--space-6); }
.shop-price-original {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: var(--space-1);
}
.shop-price-main {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.shop-price-note {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
  display: block;
}

.shop-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.shop-spec-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--color-text-soft);
}
.shop-spec-list li i.hgi-stroke {
  font-size: 17px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}
.shop-spec-list li strong { color: var(--color-text); }

.shop-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
}
.shop-order-btn i.hgi-stroke { font-size: 18px; }
.btn-block { width: 100%; text-align: center; justify-content: center; }

.shop-tokopedia-note {
  text-align: center;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  margin-bottom: 0;
}

.shop-compare-note {
  margin-top: var(--space-10);
  padding: var(--space-6) var(--space-7);
  background: #f8f8fb;
  border-radius: var(--radius-xl);
  border: 1px solid #e8e8f0;
  text-align: center;
  font-size: var(--fs-base);
  color: var(--color-text-soft);
  line-height: 1.7;
}
.shop-compare-note p { margin: 0; }
.shop-compare-note p + p { margin-top: var(--space-3); }
.link-wa {
  color: #25d366;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  text-decoration: none;
}
.link-wa:hover { opacity: 0.8; }
.link-wa i.hgi-stroke { font-size: 16px; }

/* Coming Soon badge (inline in headings) */
.badge-coming-soon, .cs-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  background: #f0f0f5;
  color: #9090b0;
  border: 1px solid #ddd;
  margin-left: 0.4em;
  vertical-align: middle;
  font-family: var(--font-mono);
  font-style: normal;
}
