/* ============================================================
   KAMARPIXEL — LANDING PAGE STYLESHEET
   Design System: Framer / Stripe typography & spacing discipline,
   Airbnb/Pinterest layout warmth, Notion-level restraint.
   Brand: #22B7E5 (primary) | #F5C877 (accent) | #0F1B2D (ink)
   Font: Inter — OpenType features enabled, 8px spacing grid.
   ============================================================ */

/* ---------------- RESET ---------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }
svg { display: block; }

/* ---------------- DESIGN TOKENS ---------------- */
:root {
  /* Brand */
  --brand: #22B7E5;
  --brand-dark: #1697BC;
  --brand-light: #E8F7FC;
  --accent: #F5C877;
  --accent-dark: #E0AE52;

  /* Neutral canvas */
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-ink: #0B1220;
  --bg-ink-alt: #101a2c;

  /* Text */
  --ink: #0f172a;
  --ink-soft: #334155;
  --text-muted: #64748b;
  --text-faint: #94a3b8;
  --text-on-ink: #f1f5f9;
  --text-on-ink-muted: rgba(241, 245, 249, 0.62);

  /* Hairline borders + soft elevation (replaces heavy drop shadows) */
  --border: #e2e8f0;
  --border-soft: #edf1f5;
  --border-on-ink: rgba(255, 255, 255, 0.1);
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 8px 28px rgba(15, 23, 42, 0.07);

  /* Star rating */
  --star: #f59e0b;

  /* WhatsApp */
  --wa: #25D366;
  --wa-dark: #1DA851;

  /* 8px spacing grid */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-12: 96px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-w: 1200px;
}

/* ---------------- BASE ---------------- */
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv05", "cv11", "ss03", "tnum";
  font-variant-numeric: tabular-nums;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}

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

.section-padding { padding: var(--sp-12) 0; }

.section-header { max-width: 640px; margin: 0 auto var(--sp-6); text-align: center; }
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-dark);
  background: var(--brand-light);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-2);
}
.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-2);
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------------- ICONS ---------------- */
.icon-svg { width: 20px; height: 20px; flex-shrink: 0; }
.icon-svg-sm { width: 16px; height: 16px; }
.icon-svg-lg { width: 28px; height: 28px; }
.icon-svg-xl { width: 36px; height: 36px; }

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--brand-dark); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--ink); background: var(--bg-alt); }

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-wa:hover { background: var(--wa-dark); }

.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.875rem; }

/* ---------------- NAVBAR ---------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-xs);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 34px; width: 34px; object-fit: cover; border-radius: var(--r-sm); }
.nav-brand-text { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; }
.logo-pixel { color: var(--ink); }
.logo-accent { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: var(--sp-4); margin: 0 auto; }
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover { color: var(--brand); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  height: 24px;
  justify-content: center;
}
.hamburger .bar {
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: max-height 0.3s ease, border-color 0.3s ease;
}
.mobile-menu.open { max-height: 480px; border-bottom-color: var(--border); }
.mobile-menu nav { display: flex; flex-direction: column; padding: var(--sp-2) var(--sp-3) var(--sp-3); gap: 4px; }
.mobile-link { padding: 12px 4px; font-weight: 500; color: var(--ink-soft); border-bottom: 1px solid var(--border-soft); }
.mobile-cta { margin-top: var(--sp-2); justify-content: center; }

/* ---------------- HERO ---------------- */
.hero-section {
  position: relative;
  padding: var(--sp-8) 0 var(--sp-6);
  background: var(--bg);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-8);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-3);
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }

.hero-headline {
  font-size: clamp(2.25rem, 4.4vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: var(--sp-3);
}
.headline-accent { font-style: normal; color: var(--brand); }

.hero-subhead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: var(--sp-4);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-6); }

.hero-social-proof { display: flex; align-items: center; gap: var(--sp-3); }
.proof-item { display: flex; flex-direction: column; }
.proof-number { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.proof-label { font-size: 0.75rem; color: var(--text-muted); line-height: 1.3; margin-top: 2px; }
.proof-divider { width: 1px; height: 32px; background: var(--border); }

.hero-visual { position: relative; }
.hero-image-wrap {
  position: relative;
  background: var(--bg-alt);
}
.hero-img {
  width: 100%;
  aspect-ratio: 4/3.2;
  object-fit: cover;
  display: block;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--r-pill);
  padding: 10px 16px 10px 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
}
.hero-float-badge .icon-svg { width: 18px; height: 18px; color: var(--brand); background: var(--brand-light); border-radius: 50%; padding: 4px; box-sizing: content-box; }
.badge-top { top: 20px; left: -14px; }
.badge-bottom { bottom: 20px; right: -14px; }

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: var(--sp-8);
  color: var(--text-faint);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px;
  height: 24px;
  background: linear-gradient(var(--border), transparent);
}

/* ---------------- CLIENTS MARQUEE ---------------- */
.clients-section { padding: var(--sp-6) 0; background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.clients-caption { text-align: center; font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.02em; margin-bottom: var(--sp-3); }
.marquee-wrapper { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; gap: var(--sp-6); width: max-content; animation: marquee 32s linear infinite; }
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.client-logo-item { display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0.6; transition: opacity 0.2s ease; flex-shrink: 0; }
.client-logo-item:hover { opacity: 1; }
.client-logo-icon { height: 36px; width: 110px; display: flex; align-items: flex-end; justify-content: center; }
.client-logo-img { max-height: 36px; max-width: 100%; width: auto; height: auto; object-fit: contain; filter: grayscale(1); display: block; }
.client-logo-name { font-size: 0.6875rem; font-weight: 600; color: var(--text-faint); white-space: nowrap; }

/* ---------------- ABOUT ---------------- */
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--sp-8); align-items: start; }
.about-visual { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); margin-top: 44px; /* menyamai tinggi pill "Who We Are" + margin, biar sejajar dgn judul */ }
.about-stat-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-xs);
}
.about-stat-card.card-accent { background: var(--brand); border-color: var(--brand); }
.about-stat-card.card-accent .stat-num,
.about-stat-card.card-accent .stat-label { color: #fff; }
.stat-num { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.stat-label { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }
.about-brand-badge {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 800;
  padding: var(--sp-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.about-content .about-text { color: var(--ink-soft); margin-bottom: var(--sp-2); line-height: 1.7; }
.about-content .btn { margin-top: var(--sp-2); }

/* ---------------- SERVICES ---------------- */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card-accent { background: linear-gradient(180deg, var(--brand-light), #fff 45%); border-color: var(--brand); }
.service-card-dark {
  background: linear-gradient(180deg, #FBF3E1, #fff 45%);
  border-color: var(--accent-dark);
}

.service-icon-wrap {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-2);
}
.service-icon-blue { background: var(--brand-light); color: var(--brand-dark); }
.service-icon-yellow { background: #FBF3E1; color: var(--accent-dark); }

.service-name { font-size: 1.25rem; margin-bottom: var(--sp-1); letter-spacing: -0.01em; }
.service-desc { color: var(--ink-soft); margin-bottom: var(--sp-3); line-height: 1.65; }

.service-uses strong { display: block; font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 8px; }
.use-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--sp-3); }
.use-tag { font-size: 0.75rem; font-weight: 600; padding: 5px 12px; border-radius: var(--r-pill); background: var(--bg-alt); border: 1px solid var(--border); color: var(--ink-soft); }

.service-pricing-hint { font-size: 0.9375rem; color: var(--ink-soft); margin-bottom: var(--sp-2); }
.service-pricing-hint strong { color: var(--brand-dark); }
.service-link { font-weight: 600; font-size: 0.9375rem; color: var(--brand-dark); }
.service-link:hover { text-decoration: underline; }

.services-note { text-align: center; margin-top: var(--sp-4); color: var(--text-muted); font-size: 0.9375rem; }

/* ---------------- PORTFOLIO (Pinterest-style masonry) ---------------- */
.portfolio-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: var(--sp-4); }
.filter-btn {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  background: var(--bg);
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: var(--brand); color: var(--brand-dark); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.portfolio-grid {
  columns: 4 220px;
  column-gap: var(--sp-2);
}
.portfolio-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: var(--sp-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s ease;
}
.portfolio-item.visible { opacity: 1; transform: translateY(0); }
.portfolio-item:hover { box-shadow: var(--shadow-md); }
.portfolio-img { width: 100%; height: auto; display: block; }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 18, 32, 0.82) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  display: flex; align-items: flex-end; padding: var(--sp-2);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-content { color: #fff; }
.portfolio-cat-badge {
  display: inline-block;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  background: var(--brand); color: #fff; padding: 3px 10px; border-radius: var(--r-pill);
  margin-bottom: 6px;
}
.portfolio-caption { font-size: 0.875rem; font-weight: 600; line-height: 1.3; }
.portfolio-client { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 2px; }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(11, 18, 32, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-3);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 900px; width: 100%; }
.lightbox-img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--r-md); }
.lightbox-caption { color: #fff; text-align: center; margin-top: var(--sp-2); font-size: 0.9375rem; }
.lightbox-close {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff; font-size: 1.125rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ---------------- TESTIMONIALS (carousel) ---------------- */
.testimonials-carousel { display: flex; align-items: center; gap: var(--sp-2); }
.testimonials-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-xs);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.testimonials-arrow:hover { border-color: var(--brand); color: var(--brand-dark); }
.testimonials-arrow:disabled { opacity: 0.35; cursor: not-allowed; }

.testimonials-wrapper { overflow: hidden; flex: 1; cursor: grab; }
.testimonials-wrapper.dragging { cursor: grabbing; }
.testimonials-track {
  display: flex;
  gap: var(--sp-3);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 2 * var(--sp-3)) / 3);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.testimonial-screenshot {
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: var(--sp-2);
}
.testimonial-screenshot img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-author-block { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testimonial-photo { width: 100%; height: 100%; object-fit: cover; }
.testimonial-photo-placeholder {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--brand-light); color: var(--brand-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9375rem;
}
.testimonial-author-info { min-width: 0; }
.testimonial-name { font-weight: 700; font-size: 0.9375rem; color: var(--ink); text-transform: capitalize; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.testimonial-role { font-size: 0.75rem; color: var(--text-muted); }

.testimonial-stars { color: var(--star); letter-spacing: 2px; margin-bottom: 8px; font-size: 0.9375rem; }
.testimonial-quote { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

.testimonials-nav { display: flex; justify-content: center; align-items: center; margin-top: var(--sp-4); }
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  margin: 0 3px;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease, border-radius 0.2s ease;
}
.t-dot.active {
  width: 16px; height: 6px;
  border-radius: 9999px;
  background: var(--brand);
}

/* Testimonial lightbox */
.testimonial-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(11, 18, 32, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-3);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease;
}
.testimonial-lightbox.open { opacity: 1; visibility: visible; }
.testimonial-lightbox-content {
  background: #fff;
  border-radius: var(--r-xl);
  max-width: 420px; width: 100%;
  overflow: hidden;
  max-height: 92vh;
  overflow-y: auto;
}
.testimonial-lightbox-screenshot {
  width: min(100%, 300px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-lightbox-screenshot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-lightbox-info { padding: var(--sp-3) var(--sp-3) var(--sp-2); }
.testimonial-lightbox-author { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.testimonial-lightbox-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-lightbox-name { font-weight: 700; text-transform: capitalize; }
.testimonial-lightbox-role { font-size: 0.8125rem; color: var(--text-muted); }
.testimonial-lightbox-stars { color: var(--star); margin-bottom: 8px; letter-spacing: 2px; }
.testimonial-lightbox-quote { color: var(--ink-soft); line-height: 1.55; font-size: 0.9375rem; }
.testimonial-lightbox-close {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff; font-size: 1.125rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 2;
}

/* ---------------- PRICING ---------------- */
.pricing-tables { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.pricing-table-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.pricing-table-header {
  display: flex; align-items: center; gap: 10px;
  padding: var(--sp-3);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--brand-dark);
}
.pricing-table-header h3 { font-size: 1.0625rem; color: var(--ink); letter-spacing: -0.01em; }
.pricing-table-responsive { overflow-x: auto; }
.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.pricing-table th {
  text-align: left; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--text-muted); padding: 10px var(--sp-3); border-bottom: 1px solid var(--border);
}
.pricing-table td { padding: 14px var(--sp-3); border-bottom: 1px solid var(--border-soft); color: var(--ink-soft); }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.price-row-highlight { background: #f0f7ff; }
.price-cell { font-weight: 700; color: var(--ink); font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; }
.size-badge { display: inline-block; font-weight: 700; font-size: 0.8125rem; color: var(--ink); }
.size-popular { color: var(--brand-dark); position: relative; padding: 3px 10px; background: var(--brand-light); border-radius: var(--r-pill); }
.size-xl { color: var(--accent-dark); }

.pricing-note { text-align: center; max-width: 560px; margin: 0 auto; }
.pricing-note-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: left;
}
.pricing-note-row { display: flex; align-items: center; gap: 12px; }
.pricing-note-row p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.55; }
.pricing-note-row p strong { color: var(--ink); font-weight: 700; }
.pricing-note-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: var(--brand-light);
  color: var(--brand-dark);
}
.pricing-note .btn { margin-top: var(--sp-3); }

/* ---------------- WHY ---------------- */
.why-section { background: var(--bg-alt); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-3); box-shadow: var(--shadow-xs); }
.why-icon-wrap {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--brand-light); color: var(--brand-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-2);
}
.why-title { font-size: 1.0625rem; margin-bottom: 6px; letter-spacing: -0.01em; }
.why-desc { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; }

/* ---------------- ORDER STEPS ---------------- */
.order-steps { display: flex; align-items: flex-start; gap: var(--sp-2); }
.order-step { flex: 1; display: flex; align-items: flex-start; gap: var(--sp-2); }
.step-number {
  font-size: 1.5rem; font-weight: 800; color: var(--brand);
  font-feature-settings: "tnum";
  flex-shrink: 0;
}
.step-content { flex: 1; }
.step-title { font-size: 1.0625rem; margin-bottom: 4px; letter-spacing: -0.01em; }
.step-desc { color: var(--text-muted); font-size: 0.875rem; line-height: 1.55; }
.step-arrow { color: var(--border); font-size: 1.25rem; margin-top: 4px; flex-shrink: 0; }
.order-cta { text-align: center; margin-top: var(--sp-6); }

/* ---------------- FAQ ---------------- */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-1); }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; background: #fff; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-2) var(--sp-3); font-weight: 600; font-size: 0.9375rem; text-align: left;
  color: var(--ink);
}
.faq-icon { font-size: 1.25rem; color: var(--brand); transition: transform 0.2s ease; flex-shrink: 0; margin-left: var(--sp-2); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65;
  padding: 0 var(--sp-3);
}
.faq-item.open .faq-answer { max-height: 320px; padding: 0 var(--sp-3) var(--sp-3); }

/* ---------------- FOOTER ---------------- */
.site-footer { background: var(--bg-ink); color: var(--text-on-ink); padding: var(--sp-8) 0 var(--sp-3); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--sp-4); padding-bottom: var(--sp-6); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: var(--sp-2); }
.footer-logo-img { height: 32px; width: 32px; object-fit: cover; border-radius: var(--r-sm); }
.footer-logo-text { font-size: 1.125rem; font-weight: 800; }
.footer-logo-text .logo-pixel { color: #fff; }
.footer-desc { color: var(--text-on-ink-muted); font-size: 0.9375rem; line-height: 1.6; margin-bottom: var(--sp-3); max-width: 320px; }
.footer-cta { margin-bottom: var(--sp-4); }
.footer-cta .btn-wa { width: 75%; } /* dikurangi 25% dari lebar container */

.footer-payment { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.payment-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.payment-icons { display: flex; gap: 8px; align-items: center; width: 100%; }

/* --- PAYPAL PILL BUTTON (selebar tombol WhatsApp, permanen khusus PayPal) --- */
.payment-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  border-radius: var(--r-pill); /* 9999px — pill sempurna */
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  min-height: 48px; /* sejajar dengan tombol WhatsApp */
  width: 75%; /* dikurangi 25% dari lebar tombol WA */
  box-sizing: border-box;
}
.payment-icons a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: #f8fafc;
}
.payment-icons img {
  object-fit: contain;
  max-height: 34px;
  width: auto;
  height: auto;
  display: block;
}
.payment-label-inline {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.footer-col-title { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: var(--sp-2); }
.footer-col-links li, .footer-col-contact li { margin-bottom: 12px; }
.footer-col-links a { color: var(--text-on-ink-muted); font-size: 0.9375rem; transition: color 0.15s ease; }
.footer-col-links a:hover { color: #fff; }
.footer-col-contact li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-on-ink-muted); font-size: 0.9375rem; }
.footer-col-contact .icon-svg { color: var(--brand); margin-top: 2px; }
.footer-col-contact a { color: var(--text-on-ink-muted); }
.footer-col-contact a:hover { color: #fff; }
.footer-address span { line-height: 1.5; }

.footer-social { display: flex; flex-direction: column; gap: 12px; }
.footer-social a { display: flex; align-items: center; gap: 10px; color: var(--text-on-ink-muted); font-size: 0.9375rem; transition: color 0.15s ease; }
.footer-social a:hover { color: #fff; }
.footer-social svg { width: 20px; height: 20px; }

.footer-bottom { border-top: 1px solid var(--border-on-ink); padding-top: var(--sp-3); text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8125rem; }

/* ---------------- FLOATING WHATSAPP ---------------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease, background 0.2s ease;
}
.wa-float:hover { background: var(--wa-dark); transform: scale(1.06); }
.wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--bg-ink); color: #fff; font-size: 0.8125rem; font-weight: 600;
  padding: 8px 14px; border-radius: var(--r-md);
  white-space: nowrap; opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease;
}
.wa-float:hover .wa-tooltip { opacity: 1; visibility: visible; }

/* ---------------- REVEAL ON SCROLL ---------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible { transition-delay: 0.08s; }
.reveal-delay-2.visible { transition-delay: 0.16s; }
.reveal-delay-3.visible { transition-delay: 0.24s; }

/* ================================================================
   RESPONSIVE — 1200 / 1024 / 768 breakpoints
   ================================================================ */

@media (max-width: 1200px) {
  .portfolio-grid { columns: 3 200px; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex: 0 0 calc((100% - 1 * var(--sp-3)) / 2); }
  .portfolio-grid { columns: 2 200px; }
}

@media (max-width: 768px) {
  :root { --sp-8: 40px; --sp-12: 56px; }
  .nav-links { display: none; }
  .nav-inner > .btn-wa { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .section-padding { padding: var(--sp-8) 0; }
  .hero-headline { font-size: clamp(2rem, 7vw, 2.75rem); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-social-proof { flex-wrap: wrap; row-gap: var(--sp-2); }

  .services-grid { grid-template-columns: 1fr; }
  .pricing-tables { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .order-steps { flex-direction: column; gap: var(--sp-3); }
  .step-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .about-visual { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex: 0 0 100%; }
  .portfolio-grid { columns: 2 160px; }
  .badge-top, .badge-bottom { left: 12px; right: 12px; }
  .badge-top { top: 12px; }
  .badge-bottom { bottom: 12px; left: auto; }
}

@media (max-width: 480px) {
  .portfolio-grid { columns: 1; }
  .about-visual { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 var(--sp-2); }
}