/* Kaliwang.co — Brand tokens & utilities (static HTML version) */
:root {
  --background: oklch(0.16 0.02 160);
  --foreground: oklch(0.98 0.01 150);
  --card: oklch(0.2 0.025 165);
  --card-foreground: oklch(0.98 0.01 150);
  --primary: oklch(0.78 0.21 152);
  --primary-foreground: oklch(0.14 0.02 160);
  --primary-glow: oklch(0.86 0.2 150);
  --muted: oklch(0.24 0.02 165);
  --muted-foreground: oklch(0.72 0.02 160);
  --border: oklch(1 0 0 / 10%);
  --gradient-primary: linear-gradient(135deg, oklch(0.78 0.21 152), oklch(0.86 0.2 150));
  --gradient-hero: radial-gradient(at 30% 20%, oklch(0.78 0.21 152 / 0.25), transparent 55%), radial-gradient(at 80% 80%, oklch(0.55 0.18 155 / 0.2), transparent 60%), linear-gradient(180deg, oklch(0.14 0.02 160), oklch(0.18 0.02 165));
  --shadow-glow: 0 20px 60px -20px oklch(0.78 0.21 152 / 0.55);
  --shadow-card: 0 10px 40px -10px oklch(0 0 0 / 0.5);
}

* {
  box-sizing: border-box;
  border-color: var(--border);
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  min-width: 0;
}
/* Global overflow guard */
* {
  box-sizing: border-box;
}
img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}
/* float-card, fab, badge-pop are position:absolute — no max-width cap */
.float-card,
.fab,
.pkg .badge-pop {
  max-width: none;
  width: auto;
}
.hero-visual,
.hero-visual .frame,
.hero-visual .glow,
.hero-visual .center {
  max-width: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

/* Layout helpers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 480px) {
  .container {
    padding: 0 1.75rem;
  }
}
@media (min-width: 640px) {
  .container {
    padding: 0 2.25rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}
.container-sm {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 480px) {
  .container-sm {
    padding: 0 1.75rem;
  }
}
@media (min-width: 640px) {
  .container-sm {
    padding: 0 2.25rem;
  }
}
.container-md {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 480px) {
  .container-md {
    padding: 0 1.75rem;
  }
}
@media (min-width: 640px) {
  .container-md {
    padding: 0 2.25rem;
  }
}

/* Backgrounds & effects */
.bg-hero {
  background: var(--gradient-hero);
}
.bg-gradient-primary {
  background: var(--gradient-primary);
}
.text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.shadow-glow {
  box-shadow: var(--shadow-glow);
}
.shadow-card {
  box-shadow: var(--shadow-card);
}
.glass {
  background: oklch(1 0 0 / 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid oklch(1 0 0 / 0.08);
}
.text-primary {
  color: var(--primary);
}
.text-muted {
  color: var(--muted-foreground);
}
.bg-card {
  background: var(--card);
}
.bg-card-40 {
  background: color-mix(in oklab, var(--card) 40%, transparent);
}
.bg-card-30 {
  background: color-mix(in oklab, var(--card) 30%, transparent);
}
.border-soft {
  border: 1px solid var(--border);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 80%, transparent);
  backdrop-filter: blur(16px);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}
.logo .name {
  font-family: 'Space Grotesk';
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.1;
}
.logo .tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  text-transform: uppercase;
}
.nav {
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.nav a:hover {
  color: var(--primary);
}
/* hamburger hidden on desktop, visible only on mobile */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .hamburger {
    display: inline-flex;
  }
}
@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: scale(1.05);
}
.btn-outline {
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 40%, transparent);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: color-mix(in oklab, var(--primary) 60%, transparent);
  color: var(--primary);
}
.btn-ghost-primary {
  border: 1px solid color-mix(in oklab, var(--primary) 40%, transparent);
  color: var(--primary);
}
.btn-ghost-primary:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-lg {
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
}
@media (min-width: 480px) {
  .btn-lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.875rem;
  }
}
.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1rem;
  flex-direction: column;
  gap: 0.85rem;
}
.mobile-nav.open {
  display: flex;
}
@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.hero .bg-img {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-size: cover;
  background-position: center;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, color-mix(in oklab, var(--background) 40%, transparent), color-mix(in oklab, var(--background) 60%, transparent), var(--background));
}
.hero .inner {
  position: relative;
  padding-top: 0rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .hero .inner {
    padding-top: 0rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .hero .inner {
    padding-top: 0rem;
    padding-bottom: 7rem;
  }
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--primary);
}
h1.title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.05;
  margin-top: 1rem;
  word-break: break-word;
}
@media (min-width: 480px) {
  h1.title {
    font-size: 2.4rem;
  }
}
@media (min-width: 640px) {
  h1.title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  h1.title {
    font-size: 3.75rem;
  }
}
.lead {
  margin-top: 1.25rem;
  max-width: 100%;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  word-break: break-word;
}
@media (min-width: 640px) {
  .lead {
    font-size: 1rem;
    max-width: 36rem;
  }
}
@media (min-width: 1024px) {
  .lead {
    font-size: 1.125rem;
  }
}
.cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  max-width: 100%;
}
.stat {
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}
.stat .v {
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}
.stat .l {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.hero-visual {
  display: none;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero-visual {
    display: block;
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
}
.hero-visual .frame {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 26rem;
  margin: 0 auto;
}
.hero-visual .glow {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--primary) 20%, transparent);
  filter: blur(48px);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.9;
  }
}
.hero-visual .center {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  padding: 3rem;
}
.float-card {
  position: absolute;
  background: var(--card);
  padding: 1rem;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.float-card .icon-box {
  background: color-mix(in oklab, var(--primary) 15%, transparent);
  padding: 0.5rem;
  border-radius: 10px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-card .ftitle {
  font-size: 0.875rem;
  font-weight: 600;
}
.float-card .fsub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.float-card.tl {
  top: -2rem;
  right: -1.5rem;
}
.float-card.bl {
  bottom: -2rem;
  left: -1.5rem;
}
/* Hide floating cards on mobile to prevent overflow */
@media (max-width: 767px) {
  .float-card {
    display: none;
  }
}

/* Sections */
section {
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 640px) {
  section {
    padding: 7rem 0;
  }
}
.section-card {
  border-top: 1px solid color-mix(in oklab, var(--border) 40%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 40%, transparent);
  background: color-mix(in oklab, var(--card) 30%, transparent);
}
.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
}
.section-head {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
h2.section-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 640px) {
  h2.section-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  h2.section-title {
    font-size: 3rem;
  }
}

/* Grids */
.grid-2 {
  display: grid;
  gap: 1.5rem;
}
.grid-2 > *,
.grid-3 > *,
.grid-4 > * {
  min-width: 0;
}
.grid-3 {
  display: grid;
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.feature {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
  min-width: 0;
  overflow: hidden;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--primary) 60%, transparent);
  box-shadow: var(--shadow-glow);
}
.feature .icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--primary) 15%, transparent);
  color: var(--primary);
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.feature:hover .icon {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
}
.feature h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.25rem;
}
.feature p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.svc {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 1rem;
  text-align: center;
  transition:
    border-color 0.2s,
    background 0.2s;
  min-width: 0;
  overflow: hidden;
}
.svc:hover {
  border-color: color-mix(in oklab, var(--primary) 60%, transparent);
  background: color-mix(in oklab, var(--primary) 5%, transparent);
}
.svc .icon {
  margin: 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--primary) 15%, transparent);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.svc:hover .icon {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
}
.svc .label {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Packages */
.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  transition:
    transform 0.2s,
    border-color 0.2s;
  min-width: 0;
}
@media (min-width: 640px) {
  .pkg {
    padding: 2rem;
  }
}
.pkg:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--primary) 40%, transparent);
}
.pkg.popular {
  border-color: color-mix(in oklab, var(--primary) 60%, transparent);
  background: linear-gradient(to bottom, color-mix(in oklab, var(--primary) 10%, transparent), var(--card));
  box-shadow: var(--shadow-glow);
}
.pkg .badge-pop {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pkg h3 {
  font-family: 'Space Grotesk';
  font-size: 1.25rem;
  font-weight: 700;
}
.pkg .tagline {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.pkg .price {
  margin-top: 1.25rem;
  font-family: 'Space Grotesk';
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
}
.pkg .renewal {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.pkg ul.features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.pkg ul.features li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  align-items: flex-start;
}
.pkg ul.features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  background: var(--primary);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")
    center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")
    center/contain no-repeat;
}
.pkg .more-head {
  margin-top: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: color-mix(in oklab, var(--primary) 80%, transparent);
}
.pkg .more {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pkg .more li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  align-items: flex-start;
}
.pkg .more li::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  background: color-mix(in oklab, var(--primary) 70%, transparent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")
    center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")
    center/contain no-repeat;
}
.pkg .cta {
  margin-top: 2rem;
}

/* Portfolio */
.portfolio {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .portfolio {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .portfolio {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pf {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--background);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Foto porto */
.pf img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Lapisan gelap di atas foto */
.pf .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 15, 8, 0.25) 0%, rgba(0, 15, 8, 0.82) 100%);
  z-index: 1;
}

/* Teks harus di atas lapisan */
.pf .body {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 1.5rem;
}
.pf .num {
  font-family: 'Space Grotesk';
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--primary) 30%, transparent);
  transition:
    transform 0.3s,
    color 0.3s;
}
.pf:hover .num {
  transform: scale(1.1);
  color: color-mix(in oklab, var(--primary) 60%, transparent);
}
.pf .pname {
  margin-top: 0.75rem;
  font-family: 'Space Grotesk';
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.pf .pcat {
  margin-top: 0.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

/* Testimonials */
.testi {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  transition: border-color 0.2s;
  min-width: 0;
  overflow: hidden;
}
.testi:hover {
  border-color: color-mix(in oklab, var(--primary) 40%, transparent);
}
.stars {
  display: flex;
  gap: 0.15rem;
  color: var(--primary);
}
.testi p {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: color-mix(in oklab, var(--foreground) 90%, transparent);
}
.who {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.who .av {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk';
  font-weight: 700;
}
.who .n {
  font-size: 0.875rem;
  font-weight: 600;
}
.who .r {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 3rem;
}
details.qa {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 1.25rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
details.qa[open] {
  border-color: color-mix(in oklab, var(--primary) 60%, transparent);
  box-shadow: var(--shadow-glow);
}
details.qa summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  list-style: none;
}
details.qa summary::-webkit-details-marker {
  display: none;
}
details.qa summary .pl {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--primary) 15%, transparent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s;
}
details.qa[open] summary .pl {
  transform: rotate(45deg);
}
details.qa p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* CTA box */
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid color-mix(in oklab, var(--primary) 40%, transparent);
  background: linear-gradient(135deg, color-mix(in oklab, var(--primary) 15%, transparent), var(--card), var(--card));
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
@media (min-width: 640px) {
  .cta-box {
    padding: 4rem;
  }
}
.cta-box .blur {
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 16rem;
  height: 16rem;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--primary) 30%, transparent);
  filter: blur(48px);
}
.cta-box h2 {
  position: relative;
  font-family: 'Space Grotesk';
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 640px) {
  .cta-box h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .cta-box h2 {
    font-size: 3rem;
  }
}
.cta-box p {
  position: relative;
  margin: 1rem auto 0;
  max-width: 36rem;
  color: var(--muted-foreground);
}
.cta-box .row {
  position: relative;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 40%, transparent);
  padding: 3rem 0;
}
.fgrid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .fgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.fhead {
  font-family: 'Space Grotesk';
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
}
.flist {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.copy {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Floating WA */
.fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: var(--gradient-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  color: var(--primary-foreground);
  transition: transform 0.2s;
}
.fab:hover {
  transform: scale(1.1);
}
.fab::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--primary) 60%, transparent);
  z-index: -1;
  animation: ping 1.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  80%,
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Trusted strip */
.trusted {
  border-top: 1px solid color-mix(in oklab, var(--border) 50%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 50%, transparent);
  padding: 2.5rem 0;
}
.trusted .strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.5rem;
  margin-top: 1.5rem;
}
.trusted .strip span {
  font-family: 'Space Grotesk';
  font-weight: 600;
  color: color-mix(in oklab, var(--muted-foreground) 80%, transparent);
  transition: color 0.2s;
}
.trusted .strip span:hover {
  color: var(--primary);
}
.trusted p.kicker {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

/* Paket Lainnya preview */
.other-pkg {
  margin-top: 3.5rem;
  border-radius: 24px;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: color-mix(in oklab, var(--card) 40%, transparent);
  padding: 2rem;
}
@media (min-width: 640px) {
  .other-pkg {
    padding: 2.5rem;
  }
}
.other-pkg .wrap {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .other-pkg .wrap {
    grid-template-columns: 1fr auto;
  }
}
.other-pkg h3 {
  margin-top: 0.5rem;
  font-family: 'Space Grotesk';
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 640px) {
  .other-pkg h3 {
    font-size: 1.875rem;
  }
}
.other-pkg .preview {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .other-pkg .preview {
    grid-template-columns: 1fr 1fr;
  }
}
.other-pkg .item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: color-mix(in oklab, var(--background) 60%, transparent);
}
.other-pkg .item .icon {
  padding: 0.5rem;
  border-radius: 10px;
  background: color-mix(in oklab, var(--primary) 15%, transparent);
  color: var(--primary);
  flex-shrink: 0;
}
.other-pkg .item .n {
  font-size: 0.875rem;
  font-weight: 600;
}
.other-pkg .item .d {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* Paket page hero */
.paket-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 40%, transparent);
}
.paket-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, color-mix(in oklab, var(--primary) 10%, transparent), color-mix(in oklab, var(--background) 40%, transparent), var(--background));
}
.paket-hero .inner {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 640px) {
  .paket-hero .inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.back-link:hover {
  color: var(--primary);
}

/* Utilities */
.text-center {
  text-align: center;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.icon-sm {
  width: 16px;
  height: 16px;
}
.icon-md {
  width: 20px;
  height: 20px;
}
.icon-lg {
  width: 24px;
  height: 24px;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.hidden-mobile {
  display: none;
}
@media (min-width: 768px) {
  .hidden-mobile {
    display: inline-flex;
  }
}
