:root {
  --primary: #ff6b00;
  --primary-dark: #cc5500;
  --primary-light: #ff8c33;
  --primary-glow: #ff9d4d;
  --bg-deep: #000000;
  --bg-dark: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --text-white: #ffffff;
  --text-light: #cccccc;
  --text-muted: #888888;
  --border: #1f1f1f;
  --border-light: #2a2a2a;

  /* ✅ Token konsisten — ubah satu tempat, berlaku ke semua section */
  --card-gap: 1.5rem;
  --card-radius: 20px;
  --card-padding: 2.5rem 2rem;
  --grid-cols: repeat(3, 1fr);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-deep);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
  padding: 0.7rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  color: var(--text-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.navbar .logo .logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

.navbar .logo .logo-dot {
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  background: var(--primary);
  color: #000 !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease !important;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.btn-nav:hover {
  background: var(--primary-light);
  box-shadow: 0 0 35px rgba(255, 107, 0, 0.5);
  transform: translateY(-2px);
}

.btn-nav::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1a0a00 0%, #000000 70%);
  scroll-snap-align: start;
}

.magic-rings-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.magic-rings-wrapper.interactive {
  pointer-events: auto;
}
.magic-rings-container {
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 30%,
    rgba(0, 0, 0, 0.7) 80%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255, 107, 0, 0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2rem;
  background: rgba(255, 107, 0, 0.05);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #ff6b00, #ff9d4d, #ff3d00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.4));
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.35);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 0 50px rgba(255, 107, 0, 0.55);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid var(--border-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounceDown 2s ease infinite;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.hero-scroll-indicator .arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: scrollPulse 2s ease infinite;
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   SECTION COMMON
   ========================================== */
.section {
  padding: 6rem 2rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

.section-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  background: rgba(255, 107, 0, 0.04);
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title .highlight {
  color: var(--primary);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 3rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.text-center {
  text-align: center;
}
.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

#why,
#how,
#features,
#testimonials,
#plans,
#contact {
  scroll-margin-top: 0;
}

/* ==========================================
   MAGIC BENTO CARD STYLES
   ========================================== */
.magic-bento-card {
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 300px;
  --glow-color: 255, 107, 0;
  position: relative;
  overflow: hidden !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.magic-bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: radial-gradient(
    var(--glow-radius) circle at var(--glow-x) var(--glow-y),
    rgba(var(--glow-color), calc(var(--glow-intensity) * 0.8)) 0%,
    rgba(var(--glow-color), calc(var(--glow-intensity) * 0.4)) 30%,
    transparent 60%
  );
  border-radius: inherit;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: calc(var(--glow-intensity) * 1);
  transition: opacity 0.3s ease;
  z-index: 5;
}

.magic-bento-card:hover::after {
  opacity: 1;
}
.magic-bento-card:hover {
  box-shadow:
    0 4px 20px rgba(255, 107, 0, 0.4),
    0 0 30px rgba(255, 107, 0, 0.3);
}

.magic-bento-particle::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: rgba(255, 107, 0, 0.2);
  border-radius: 50%;
  z-index: -1;
}

/* ==========================================
   WHY US
   ========================================== */
.why-grid {
  display: grid;
  grid-template-columns: var(--grid-cols); /* ✅ pakai token */
  gap: var(--card-gap); /* ✅ gap konsisten */
  align-items: stretch; /* ✅ semua baris sama tinggi */
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  /* ✅ Hapus height:100% — stretch pada grid sudah cukup */
  display: flex;
  flex-direction: column;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at top left,
    rgba(255, 107, 0, 0.06) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  border-radius: var(--card-radius);
}

.why-card:hover {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow:
    0 0 25px rgba(255, 107, 0, 0.5),
    0 0 50px rgba(255, 107, 0, 0.25),
    0 20px 50px rgba(0, 0, 0, 0.6);
  background: var(--bg-card-hover);
  z-index: 10;
}
.why-card:hover::before {
  opacity: 1;
}

.why-card .icon-box {
  width: 55px;
  height: 55px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 107, 0, 0.2);
  flex-shrink: 0;
}

.why-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 2;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
  line-height: 1.7;
  flex-grow: 1;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 8rem;
  display: flex;
  align-items: center;
}
.how-section .container {
  width: 100%;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap); /* ✅ gap konsisten */
  position: relative;
  align-items: stretch; /* ✅ semua step card sama tinggi */
}

.how-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 0, 0.3),
    rgba(255, 107, 0, 0.3),
    transparent
  );
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  padding: 1.8rem 1.5rem;
  border-radius: var(--card-radius);
  background: transparent;
  /* ✅ Hapus height:100% — stretch pada grid sudah cukup */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.step-card:hover {
  transform: scale(1.08);
  background: var(--bg-card);
  border: 1px solid var(--primary);
  box-shadow:
    0 0 25px rgba(255, 107, 0, 0.35),
    0 0 50px rgba(255, 107, 0, 0.15),
    0 15px 40px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary);
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.2);
  transition: all 0.3s ease;
  background: #0d0d0d;
  flex-shrink: 0;
}

.step-card:hover .step-number {
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.6);
  transform: scale(1.1);
  background: #1a1a1a;
}

.step-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  flex-grow: 1;
  width: 100%;
}

/* ==========================================
   FEATURES
   ========================================== */
.features-grid {
  display: grid;
  grid-template-columns: var(--grid-cols); /* ✅ pakai token */
  gap: var(--card-gap); /* ✅ gap konsisten */
  align-items: stretch; /* ✅ semua card sama tinggi */
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  overflow: hidden;
  /* ✅ Hapus height:100% — stretch pada grid sudah cukup */
}

.feature-card:hover {
  transform: scale(1.06);
  border-color: var(--primary);
  box-shadow:
    0 0 25px rgba(255, 107, 0, 0.4),
    0 0 50px rgba(255, 107, 0, 0.15),
    0 15px 40px rgba(0, 0, 0, 0.5);
  background: var(--bg-card-hover);
  z-index: 10;
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(255, 107, 0, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid rgba(255, 107, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.feature-card:hover .feature-icon {
  background: rgba(255, 107, 0, 0.2);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.feature-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: var(--grid-cols); /* ✅ pakai token */
  gap: var(--card-gap); /* ✅ gap konsisten */
  align-items: stretch; /* ✅ semua card sama tinggi */
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  /* ✅ Hapus height:100% — stretch pada grid sudah cukup */
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow:
    0 0 25px rgba(255, 107, 0, 0.35),
    0 0 50px rgba(255, 107, 0, 0.15),
    0 15px 40px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.testimonial-stars {
  color: #ffb800;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}
.testimonial-card .quote {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  z-index: 2;
  margin-top: auto;
}
.testimonial-author .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b00, #ff3d00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 1rem;
}
.testimonial-author .info strong {
  display: block;
  font-size: 0.9rem;
}
.testimonial-author .info span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ==========================================
   PLANS  ✅ PERBAIKAN UTAMA
   ========================================== */
.plans-grid {
  display: grid;
  grid-template-columns: var(--grid-cols);
  gap: var(--card-gap);
  align-items: stretch;
  /*
   * ✅ Hapus padding-top:20px dan margin-top:-2px
   *    yang jadi sumber misalignment vertikal.
   *    Badge "Most Popular" ditangani via padding-top
   *    pada semua card agar tinggi awal seragam.
   */
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  /*
   * ✅ Tambah padding-top ekstra di SEMUA card (bukan hanya featured)
   *    supaya posisi konten mulai dari titik yang sama persis.
   *    Badge featured memakai position:absolute jadi tidak makan layout.
   */
  padding: calc(var(--card-padding-v, 2.5rem) + 14px) 2rem 2.5rem;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  /* ✅ Hapus height:100% — stretch pada grid sudah cukup */
}

.plan-card:hover {
  transform: scale(1.04);
  border-color: var(--primary);
  box-shadow:
    0 0 30px rgba(255, 107, 0, 0.45),
    0 0 60px rgba(255, 107, 0, 0.2),
    0 20px 50px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

/* ✅ Featured card TIDAK punya scale/padding khusus — sejajar sempurna */
.plan-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.2);
  background: #0f0a05;
}

.plan-card.featured:hover {
  transform: scale(1.04); /* ✅ sama dengan card biasa */
  box-shadow:
    0 0 40px rgba(255, 107, 0, 0.6),
    0 0 80px rgba(255, 107, 0, 0.25),
    0 25px 60px rgba(0, 0, 0, 0.7);
}

/* ✅ Badge pakai position:absolute → tidak memengaruhi tinggi card */
.plan-card.featured .plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  z-index: 20;
}

.plan-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 2;
}

.plan-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--primary);
  position: relative;
  z-index: 2;
}

.plan-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.plan-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.plan-features li .check {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  min-width: 20px;
}

.plan-card .btn-primary,
.plan-card .btn-outline {
  width: 100%;
  text-align: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

/* ==========================================
   CONTACT CTA
   ========================================== */
.cta-section {
  background: radial-gradient(ellipse at center, #1a0800 0%, #000000 70%);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-section .section-title {
  font-size: 2.8rem;
}

.contact-form {
  max-width: 550px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-white);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.1);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form select {
  appearance: none;
  cursor: pointer;
}
.contact-form select option {
  background: #1a1a1a;
  color: #fff;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 500;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  color: #4caf84;
}
.form-message.error {
  display: block;
  background: rgba(255, 60, 60, 0.1);
  border: 1px solid rgba(255, 60, 60, 0.3);
  color: #e57373;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1.5rem;
  text-align: center;
  scroll-snap-align: start;
}
.footer .footer-logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.footer .footer-slogan {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.footer .footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.footer .footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer .footer-links a:hover {
  color: var(--primary);
}
.footer .copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ==========================================
   REVEAL ON SCROLL
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   LIGHT PILLAR BACKGROUND
   ========================================== */
.light-pillar-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
#why,
#how,
#features,
#testimonials,
#plans {
  position: relative;
  overflow: hidden;
}
#why .container,
#how .container,
#features .container,
#testimonials .container,
#plans .container {
  position: relative;
  z-index: 1;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  :root {
    --grid-cols: repeat(2, 1fr); /* ✅ ubah token, semua grid ikut */
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-steps::before {
    display: none;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .how-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --grid-cols: 1fr; /* ✅ ubah token, semua grid ikut */
  }

  .how-steps {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.4rem;
    letter-spacing: -1px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    border-left: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open {
    display: flex;
  }
  .mobile-toggle {
    display: flex;
  }
  .section {
    padding: 4rem 1.2rem;
  }
  .how-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .why-card:hover,
  .feature-card:hover,
  .testimonial-card:hover {
    transform: scale(1.03);
  }
  .step-card:hover {
    transform: scale(1.05);
  }
  .plan-card:hover,
  .plan-card.featured:hover {
    transform: scale(1.02);
  }
  .feature-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-scroll-indicator {
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .navbar {
    padding: 0.8rem 1rem;
  }
  .navbar.scrolled {
    padding: 0.6rem 1rem;
  }
  .plan-price {
    font-size: 2.2rem;
  }
  .how-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  .why-card:hover,
  .feature-card:hover,
  .testimonial-card:hover,
  .plan-card:hover {
    transform: scale(1.02);
  }
  .step-card:hover {
    transform: scale(1.04);
  }
  .plan-card.featured:hover {
    transform: scale(1.02);
  }
}
