* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #FFFFFF;
  --vanilla: #FEEFB6;
  --vanilla-soft: #FFF8E0;
  --pale-sky: #C3DAE8;
  --pale-sky-soft: #EAF3F8;
  --mocha: #432F2E;
  --mocha-70: rgba(67, 47, 46, 0.7);
  --mocha-45: rgba(67, 47, 46, 0.45);
}

html { scroll-behavior: smooth; }
::selection { background: var(--vanilla); color: var(--mocha); }

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--mocha);
  background: var(--white);
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Bagel Fat One', cursive;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== Header / Nav ===================== */
.site-header {
  position: sticky;
  top: 0;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 60%, rgba(255,255,255,0.85));
  z-index: 30;
  transition: padding 0.3s ease, background 0.4s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled { padding: 10px 0; }


.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav { margin-left: auto; }

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, padding 0.3s ease;
}
.logo-img { height: 60px; width: auto; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.logo-link:hover { transform: rotate(-3deg) scale(1.05); }

.nav-sparkle {
  position: absolute;
  top: -6px; left: 40px;
  color: var(--vanilla);
  font-size: 1rem;
  animation: float 3.5s ease-in-out infinite;
  pointer-events: none;
}

/* ===== Floating pill nav ===== */
.main-nav { display: flex; align-items: center; gap: 14px; }

.nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--white);
  border: 2px dashed var(--pale-sky);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 6px 18px rgba(67, 47, 46, 0.06);
  transition: box-shadow 0.3s ease;
}
.nav-pill:hover { box-shadow: 0 8px 22px rgba(67, 47, 46, 0.1); }


.nav-pill a {
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: var(--mocha-70);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: 999px;
  transition: color 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-pill a::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pale-sky);
  opacity: 0.55;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-pill a:nth-of-type(even)::before { background: var(--vanilla); }
.nav-pill a:hover::before,
.nav-pill a:focus-visible::before { opacity: 1; transform: scale(1.5) translateY(-1px); }

/* garis bawah tumbuh dari tengah, bukan lurus dari kiri */
.nav-pill a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 3px;
  width: 0;
  height: 2.5px;
  background: var(--vanilla);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-pill a:hover::after,
.nav-pill a:focus-visible::after { width: calc(100% - 16px); }

.nav-pill a:hover,
.nav-pill a:focus-visible { color: var(--mocha); }

.nav-cta {
  gap: 7px;
  flex-shrink: 0;
  line-height: 1;
}

.wa-icon {
  width: 15px;
  height: 15px;
  display: block;
  flex-shrink: 0;
}

/* rule ini yang memastikan display flex-nya menang, tidak ketiban .btn-outline */
.nav-cta.btn-outline {
  display: inline-flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 31;
}
.menu-toggle span {
  width: 24px; height: 2.5px;
  background: var(--mocha);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    padding: 24px;
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 29;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }

  .nav-pill {
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 22px;
    width: 100%;
    align-items: center;
  }
    .nav-pill a { font-size: 1.3rem; padding: 4px 0; }

  .main-nav.open .nav-pill a,
  .main-nav.open .nav-cta {
    opacity: 0;
    animation: navItemIn 0.4s ease forwards;
  }
  .main-nav.open .nav-pill a:nth-child(2) { animation-delay: 0.08s; }
  .main-nav.open .nav-pill a:nth-child(3) { animation-delay: 0.14s; }
  .main-nav.open .nav-pill a:nth-child(4) { animation-delay: 0.2s; }
  .main-nav.open .nav-pill a:nth-child(5) { animation-delay: 0.26s; }
  .main-nav.open .nav-pill a:nth-child(6) { animation-delay: 0.32s; }
  .main-nav.open .nav-cta { animation-delay: 0.4s; margin-top: 10px; }

  .nav-cta { margin-left: 0; }
  .menu-toggle { display: flex; }
}

@keyframes navItemIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== Buttons ===================== */
.btn-outline {
  border: 2px solid var(--mocha);
  color: var(--mocha);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}
.btn-outline:hover {
  background: var(--mocha);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(67, 47, 46, 0.18);
}
.btn-outline:active { transform: translateY(0); }

.btn-solid {
  display: inline-block;
  text-align: center;
  background: var(--mocha);
  color: var(--white);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(67, 47, 46, 0.15);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-solid:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 26px rgba(67, 47, 46, 0.25);
}
.btn-solid:active { transform: translateY(-1px) scale(0.99); }
.btn-solid.big { padding: 16px 40px; font-size: 1rem; }

.btn-ghost {
  color: var(--mocha);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 8px;
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn-ghost:hover { transform: translateX(4px); opacity: 0.7; }

/* ===================== Shared section bits ===================== */
.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mocha-70);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.eyebrow.center { text-align: center; }

.section-title { font-size: clamp(1.7rem, 3.6vw, 2.2rem); text-align: center; margin-bottom: 12px; }
.section-title.left { text-align: left; }

.section-sub {
  text-align: center;
  color: var(--mocha-70);
  font-weight: 500;
  max-width: 480px;
  margin: 0 auto;
}
.section-sub.left { text-align: left; margin: 0 0 28px; max-width: 420px; }

/* ===================== Hero ===================== */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.cloud-shape {
  position: absolute;
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 0;
}
.cloud-back {
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 900px; max-width: 160vw; height: 480px;
  background: var(--vanilla-soft);
  opacity: 0.6;
  animation: drift 10s ease-in-out infinite;
}
.cloud-front {
  top: -60px; left: 55%;
  transform: translateX(-50%);
  width: 700px; max-width: 140vw; height: 400px;
  background: var(--pale-sky-soft);
  animation: drift 8s ease-in-out infinite reverse;
}
@keyframes drift {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-14px); }
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-text > * { opacity: 0; animation: fadeUp 0.8s ease forwards; }
.hero-text .eyebrow { animation-delay: 0.1s; }
.hero-text h1 { animation-delay: 0.25s; }
.hero-text .hero-sub { animation-delay: 0.4s; }
.hero-text .hero-actions { animation-delay: 0.55s; }
.hero-text .hero-stats { animation-delay: 0.7s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); line-height: 1.32; margin-bottom: 20px; }
.hero-sub { color: var(--mocha-70); font-size: 1.05rem; font-weight: 500; max-width: 420px; margin-bottom: 30px; }

.hero-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: 'Bagel Fat One', cursive; font-size: 1.5rem; }
.stat span { font-size: 0.78rem; color: var(--mocha-70); font-weight: 600; }

/* --- Hero illustration: logo transparan mengambang di atas glow lembut --- */
.hero-visual { display: flex; justify-content: center; }

.logo-scene {
  position: relative;
  width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatScene 5s ease-in-out infinite;
}
@keyframes floatScene {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.logo-hero-img {
  position: relative;
  z-index: 1;
  width: 460px;
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 20px 32px rgba(67, 47, 46, 0.22));
}

/* decorative sparkles / dots / heart (hero) */
.sparkle, .heart { position: absolute; z-index: 0; animation: float 3.5s ease-in-out infinite; }
.sparkle { color: var(--vanilla); font-size: 1.4rem; }
.sparkle-1 { top: 130px; left: 6%; font-size: 1.1rem; }
.sparkle-2 { top: 90px; right: 8%; font-size: 1.7rem; color: var(--pale-sky); animation-delay: 0.6s; }
.sparkle-3 { bottom: 60px; left: 12%; font-size: 1rem; animation-delay: 1.2s; }
.sparkle-4 { top: 220px; right: 30%; font-size: 1.2rem; color: var(--pale-sky); animation-delay: 1.8s; }
.heart { color: var(--pale-sky); font-size: 1.4rem; }
.heart-1 { top: 200px; right: 12%; animation-delay: 0.3s; animation-duration: 4s; }
.heart-2 { bottom: 120px; right: 4%; animation-delay: 1s; animation-duration: 4.5s; font-size: 1rem; color: var(--vanilla); }

.dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--mocha); opacity: 0.25; z-index: 0; }
.dot-1 { top: 160px; right: 20%; }
.dot-2 { bottom: 90px; right: 36%; background: var(--pale-sky); opacity: 0.7; width: 10px; height: 10px; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 30px; }
}

/* ===================== Scroll reveal ===================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== How it works ===================== */
.how-it-works {
  position: relative;
  padding: 100px 0 40px;
  background: var(--pale-sky-soft);
}

.steps { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 50px; }

.step {
  position: relative;
  text-align: center;
  padding: 34px 22px;
  background: var(--vanilla-soft);
  border-radius: 20px;
  border: 2px dashed var(--pale-sky);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 14px 28px rgba(67, 47, 46, 0.1); }

.step-no {
  position: absolute; top: 14px; right: 18px;
  font-family: 'Bagel Fat One', cursive;
  font-size: 0.9rem;
  color: var(--pale-sky);
}
.step-icon { font-size: 2.2rem; margin-bottom: 14px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--mocha-70); font-weight: 500; font-size: 0.9rem; }

/* ===================== Catalog ===================== */
.catalog-head { text-align: center; padding: 60px 0 10px; }

.catalog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; padding: 50px 0 100px; }

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-6px); }

/* --- kartu tema bergaya amplop (envelope) --- */
.envelope-card-wrap {
  perspective: 900px;
  margin-bottom: 18px;
  max-width: 240px;
}

.envelope-card {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, var(--vanilla-soft) 0%, var(--white) 55%, var(--pale-sky-soft) 100%);
  border: 2px dashed var(--pale-sky);
  border-radius: 18px;
  padding: 34px 10px 10px;
  box-shadow:
    0 10px 24px rgba(67, 47, 46, 0.12),
    inset 0 0 0 6px var(--white);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  transform-style: preserve-3d;
  overflow: hidden;
}

.envelope-card::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.65), transparent);
  transform: skewX(-20deg);
  z-index: 5;
  pointer-events: none;
  transition: left 0.7s ease;
}
.card:hover .envelope-card::before,
.spotlight-card:hover .envelope-card::before {
  left: 130%;
}

.card:hover .envelope-card,
.spotlight-card:hover .envelope-card {
  box-shadow: 0 22px 40px rgba(67, 47, 46, 0.22);
  transform: translateY(-8px) rotateX(4deg) rotateY(-4deg);
}

/* flap segitiga di atas, seperti amplop terbuka */
.envelope-card-flap {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(160deg, var(--vanilla) 0%, #fbe08a 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  border-radius: 18px 18px 0 0;
  z-index: 2;
  filter: drop-shadow(0 4px 6px rgba(67,47,46,0.12));
  transition: transform 0.35s ease;
}
.card:hover .envelope-card-flap,
.spotlight-card:hover .envelope-card-flap {
  transform: translateY(-3px);
}
/* "kertas foto" yang mengintip dari dalam amplop */
.envelope-card-photo {
  position: relative;
  width: 100%; height: 100%;
  background: var(--white);
  border: 3px solid var(--white);
  outline: 2px solid var(--pale-sky);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(67, 47, 46, 0.15);
}

.envelope-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.card:hover .envelope-card-photo img,
.spotlight-card:hover .envelope-card-photo img { transform: scale(1.08); }

/* wax seal di tengah bawah flap */
.envelope-card-seal {
  position: absolute;
  top: 42px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px;
  background: radial-gradient(circle at 35% 30%, #6b4a48, var(--mocha) 70%);
  color: var(--vanilla);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  box-shadow:
    0 4px 10px rgba(67,47,46,0.4),
    inset 0 -3px 4px rgba(0,0,0,0.35),
    inset 0 2px 3px rgba(255,255,255,0.25);
  z-index: 3;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.card:hover .envelope-card-seal,
.spotlight-card:hover .envelope-card-seal {
  transform: translateX(-50%) scale(1.12) rotate(-6deg);
}

.card-image-link {
  display: block;
  position: relative;
  max-width: 240px;
  margin: 0 auto;
  text-decoration: none;
  cursor: pointer;
}

.card-preview-icon {
  position: absolute;
  top: 10px; right: 12px;
  z-index: 6;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--white);
  color: var(--mocha);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(67, 47, 46, 0.2);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, color 0.25s ease;
  pointer-events: none;
}
.card-preview-icon svg { width: 15px; height: 15px; }

.card:hover .card-preview-icon,
.spotlight-card:hover .card-preview-icon {
  transform: scale(1.12);
  background: var(--mocha);
  color: var(--vanilla);
}

.card-tag {
  position: absolute; top: 10px; left: 12px; z-index: 4;
  background: var(--mocha); color: var(--vanilla);
  font-size: 0.65rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.02em;
}

.card h3 { font-size: 1.25rem; text-align: center; margin-bottom: 4px; }

.card-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  margin-bottom: 0;
  border-top: 2px dashed var(--pale-sky-soft);
  flex-wrap: wrap;
}

.card-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--mocha-70);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.card-meta-dot {
  color: var(--pale-sky);
  font-size: 0.6rem;
}

.card-price {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--vanilla);
  color: var(--mocha);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(67, 47, 46, 0.12);
}
.card-price::before {
  content: "mulai";
  opacity: 0.6;
  font-weight: 600;
}

.spotlight-info .card-meta {
  justify-content: flex-start;
  border-top: 2px dashed var(--pale-sky-soft);
}

.card p {
  color: var(--mocha-70);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 16px;
  text-align: center;
  flex-grow: 1;
}
.card .btn-solid {
  margin: auto auto 0;
  display: block;
  width: fit-content;
}

/* --- filter chips --- */
.filter-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 0 10px;
}

.chip {
  background: var(--white);
  border: 2px solid var(--pale-sky-soft);
  color: var(--mocha-70);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chip:hover { border-color: var(--pale-sky); color: var(--mocha); }
.chip.active { background: var(--mocha); border-color: var(--mocha); color: var(--white); }

/* --- tombol show more --- */
.show-more-wrap { text-align: center; margin-top: -50px; padding-bottom: 100px; }

/* ===================== Spotlight ===================== */
.spotlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.spotlight-inner { flex: 1; max-width: 560px; }

.spotlight-card {
  display: flex;
  align-items: stretch;
  gap: 32px;
  background: var(--vanilla-soft);
  border: 2px dashed var(--pale-sky);
  border-radius: 24px;
  padding: 28px;
}
.spotlight-card .envelope-card-wrap { margin: 0; flex-shrink: 0; width: 160px; }
.spotlight-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.spotlight-info h3 { font-size: 1.4rem; margin-bottom: 4px; }
.spotlight-info .card-category { text-align: left; }
.spotlight-info p {
  text-align: left;
  margin-bottom: 20px;
}
.spotlight-info .btn-solid {
  margin-top: auto;
  width: fit-content;
}

.spotlight-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--pale-sky-soft);
  background: var(--white);
  color: var(--mocha);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.spotlight-arrow svg { width: 18px; height: 18px; }
.spotlight-arrow:hover { border-color: var(--mocha); transform: scale(1.06); }

.spotlight-thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 10px;
  flex-wrap: wrap;
}
.spotlight-thumb {
  width: 46px; height: 46px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--pale-sky-soft);
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.spotlight-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spotlight-thumb:hover { transform: translateY(-2px); }
.spotlight-thumb.active { border-color: var(--mocha); }

@media (max-width: 700px) {
  .spotlight-card { flex-direction: column; text-align: center; }
  .spotlight-info { text-align: center; align-items: center; }
  .spotlight-info .card-category, .spotlight-info p { text-align: center; }
}

/* ===================== Divider "atau jelajahi semua tema" ===================== */
.all-themes-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--mocha-70);
  font-size: 0.82rem;
  font-weight: 700;
  margin: 44px 0 26px;
}
.all-themes-divider::before,
.all-themes-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--pale-sky-soft);
}
.all-themes-divider span { padding: 0 16px; white-space: nowrap; }

/* ===================== Preview / phone mockup ===================== */
.preview {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--vanilla-soft) 0%, var(--pale-sky-soft) 100%);
  overflow: hidden;
}
.preview::before,
.preview::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}
.preview::before {
  width: 260px; height: 260px;
  background: var(--vanilla);
  opacity: 0.5;
  top: -80px; left: -80px;
}
.preview::after {
  width: 320px; height: 320px;
  background: var(--pale-sky);
  opacity: 0.45;
  bottom: -100px; right: -100px;
}
.preview-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.preview-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 30px;
}
.preview-badge {
  background: var(--white);
  border: 2px solid var(--pale-sky-soft);
  color: var(--mocha);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(67, 47, 46, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.preview-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(67, 47, 46, 0.15);
}

@media (max-width: 900px) {
  .preview-inner { grid-template-columns: 1fr; }
  .phone-mockup { order: -1; }
}

.phone-mockup { display: flex; justify-content: center; }

.phone-mockup { position: relative; }

.preview-deco {
  position: absolute;
  z-index: 0;
  animation: float 3.5s ease-in-out infinite;
  pointer-events: none;
}
.preview-deco-1 { top: 10px; left: -10px; font-size: 1.6rem; color: var(--pale-sky); }
.preview-deco-2 { bottom: 40px; right: -6px; font-size: 1.3rem; color: var(--vanilla); animation-delay: 0.8s; }
.preview-deco-3 { top: 50%; right: -30px; font-size: 1.8rem; animation-delay: 1.4s; }

@media (max-width: 500px) {
  .preview-deco { display: none; }
}

.phone-frame {
  width: 280px;
  background: var(--mocha);
  border-radius: 36px;
  padding: 14px 12px;
  box-shadow:
    0 30px 60px rgba(67, 47, 46, 0.28),
    0 0 0 10px rgba(254, 239, 182, 0.25);
  position: relative;
  z-index: 1;
  animation: floatScene 6s ease-in-out infinite;
}

.phone-notch {
  width: 90px; height: 18px;
  background: var(--mocha);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
  position: relative;
}

.chat-header {
  display: flex; align-items: center; gap: 10px;
  background: var(--pale-sky-soft);
  padding: 10px 12px;
  border-radius: 14px 14px 0 0;
}
.chat-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--vanilla);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.chat-header strong { display: block; font-size: 0.85rem; }
.chat-header span { font-size: 0.68rem; color: var(--mocha-70); }

.chat-body {
  background: var(--white);
  padding: 16px 12px;
  border-radius: 0 0 14px 14px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 260px;
}

.chat-bubble {
  max-width: 80%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 500;
}
.chat-bubble.incoming { background: var(--pale-sky-soft); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-bubble.outgoing { background: var(--vanilla-soft); align-self: flex-end; border-bottom-right-radius: 4px; }

.chat-card {
  align-self: flex-start;
  width: 85%;
  background: var(--pale-sky-soft);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--pale-sky);
}
.chat-card-media {
  height: 100px;
  background: linear-gradient(135deg, var(--vanilla) 0%, var(--pale-sky) 100%);
}
.chat-card-info { padding: 8px 10px; }
.chat-card-info strong { display: block; font-size: 0.8rem; }
.chat-card-info span { font-size: 0.68rem; color: var(--mocha-70); }

/* ===================== Pricing ===================== */
/* ===================== Feature highlight (wax seal) ===================== */
.feature-highlight { padding: 40px 0 100px; overflow: hidden; }

.feature-inner {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  align-items: center;
  gap: 20px;
}

.feature-card {
  position: relative;
  background: var(--vanilla-soft);
  border: 2px dashed var(--pale-sky);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.feature-badge {
  display: inline-block;
  background: var(--white);
  color: var(--mocha-70);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: 0 4px 12px rgba(67, 47, 46, 0.06);
}

.feature-title {
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  line-height: 1.35;
  margin-bottom: 18px;
}

.feature-title em {
  font-style: normal;
  position: relative;
  color: var(--mocha);
  z-index: 1;
}
.feature-title em::after {
  content: "";
  position: absolute;
  left: -3px; right: -3px; bottom: 3px;
  height: 40%;
  background: var(--vanilla);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.85;
}

.feature-desc {
  color: var(--mocha-70);
  font-weight: 500;
  font-size: 0.98rem;
  max-width: 460px;
  margin: 0 auto 28px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.feature-list-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0 auto 32px;
  flex-wrap: wrap;
}

.feature-cta {
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .feature-list-row {
    flex-direction: column;
    gap: 24px;
  }
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--mocha);
}

.feature-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pale-sky);
  color: var(--mocha);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
}
.feature-list li:nth-child(2) .feature-check { background: var(--vanilla); }
.feature-list li:nth-child(3) .feature-check { background: var(--pale-sky); }

/* ilustrasi amplop kecil di kiri & kanan kartu */
.feature-deco {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-envelope {
  position: absolute;
  width: 110px;
  aspect-ratio: 4 / 3;
  background: var(--pale-sky-soft);
  border: 2px solid var(--white);
  border-radius: 10px;
  box-shadow: 0 14px 26px rgba(67, 47, 46, 0.14);
  transition: transform 0.35s ease;
}

.mini-flap {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: var(--vanilla);
  clip-path: polygon(0 0, 100% 0, 50% 80%);
  border-radius: 10px 10px 0 0;
}

.mini-seal {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 26px;
  background: var(--mocha);
  color: var(--vanilla);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 4px 8px rgba(67,47,46,0.3);
  z-index: 2;
}

.deco-1 { top: 10px; left: 20px; transform: rotate(-12deg); }
.deco-2 { bottom: 20px; left: 55px; transform: rotate(8deg); background: var(--vanilla-soft); }
.deco-3 { top: 10px; right: 20px; transform: rotate(12deg); }
.deco-4 { bottom: 20px; right: 55px; transform: rotate(-8deg); background: var(--vanilla-soft); }

.feature-deco:hover .mini-envelope { transform: scale(1.04) rotate(0deg); }

@media (max-width: 1000px) {
  .feature-inner { grid-template-columns: 1fr; }
  .feature-deco { display: none; }
  .feature-card { padding: 44px 26px; }
}

.pricing {
  position: relative;
  padding: 100px 0;
  background: var(--vanilla-soft);
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: var(--pale-sky-soft);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 0;
}
.pricing::after {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(var(--white), transparent);
  z-index: 0;
  pointer-events: none;
}
.pricing .wrap { position: relative; z-index: 1; }

.pricing-blob-bottom {
  position: absolute;
  bottom: -110px; left: -90px;
  width: 340px; height: 340px;
  background: var(--pale-sky-soft);
  border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
  z-index: 0;
}
.pricing-fade-bottom {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(var(--white), transparent);
  transform: rotate(180deg);
  z-index: 0;
  pointer-events: none;
}

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; margin-top: 50px; }

.price-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  border: 2px dashed var(--pale-sky-soft);
  box-shadow: 0 10px 24px rgba(67, 47, 46, 0.06);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 38px rgba(67, 47, 46, 0.14);
  border-color: var(--pale-sky);
}

.price-card.featured {
  border: 2px solid var(--vanilla);
  background: linear-gradient(160deg, var(--vanilla-soft) 0%, var(--white) 60%);
  box-shadow: 0 16px 34px rgba(67, 47, 46, 0.14);
  transform: scale(1.05);
}
.price-card.featured:hover { transform: scale(1.05) translateY(-8px); }

.price-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--pale-sky-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: inset 0 2px 4px rgba(67, 47, 46, 0.06);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.price-card:hover .price-icon { transform: scale(1.1) rotate(-6deg); }
.price-card.featured .price-icon { background: var(--vanilla); }

.badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--mocha); color: var(--vanilla);
  font-size: 0.75rem; font-weight: 700;
  padding: 6px 18px; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(67, 47, 46, 0.25);
  white-space: nowrap;
}

.price-card h3 { font-size: 1.35rem; margin-bottom: 14px; }

.price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}
.price-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mocha-70);
  letter-spacing: 0.03em;
}
.price-tag {
  font-family: 'Bagel Fat One', cursive;
  font-size: 1.9rem;
  color: var(--mocha);
}

.price-card ul { list-style: none; margin-bottom: 30px; text-align: left; display: flex; flex-direction: column; gap: 4px; }
.price-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--mocha-70);
  padding: 6px 0;
}
.price-card li::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--pale-sky-soft);
  color: var(--mocha);
  font-weight: 900;
  font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center;
}
.price-card.featured li::before { background: var(--vanilla); }

.price-card .btn-solid,
.price-card .btn-outline { width: 100%; }

@media (max-width: 700px) {
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-8px); }
}

/* ===================== Testimonials ===================== */
.testimonials {
  padding: 90px 0 100px;
  background: var(--white);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--vanilla-soft);
  border-radius: 20px;
  padding: 38px 26px 26px;
  border: none;
  box-shadow: 0 8px 22px rgba(67, 47, 46, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  overflow: hidden;
}
.testi-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--vanilla);
}
.testi-card:nth-child(2) { background: var(--pale-sky-soft); }
.testi-card:nth-child(2)::before { background: var(--pale-sky); }
.testi-card:nth-child(3) { background: #FCE8EE; }
.testi-card:nth-child(3)::before { background: #F0AFC4; }

.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 38px rgba(67, 47, 46, 0.16);
}

.testi-quote {
  position: absolute;
  top: 6px; right: 18px;
  font-family: 'Bagel Fat One', cursive;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(67, 47, 46, 0.08);
  z-index: 0;
  user-select: none;
}

.testi-stars {
  position: relative;
  z-index: 1;
  color: #E8A93C;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 14px;
  text-shadow: 0 1px 2px rgba(67, 47, 46, 0.12);
}

.testi-card p {
  position: relative;
  z-index: 1;
  font-size: 0.94rem;
  color: var(--mocha);
  margin-bottom: 22px;
  font-weight: 600;
  line-height: 1.55;
}

.testi-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 2px dashed rgba(67, 47, 46, 0.14);
}

.testi-avatar {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--vanilla);
  color: var(--mocha);
  font-family: 'Bagel Fat One', cursive;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(67, 47, 46, 0.18);
}

.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span { font-size: 0.75rem; color: var(--mocha-70); font-weight: 600; }

.testi-card:nth-child(2) .testi-avatar { background: var(--pale-sky); }
.testi-card:nth-child(3) .testi-avatar { background: #F0AFC4; }

.testi-slider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
}

.testi-viewport { flex: 1; overflow: hidden; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.testi-arrow {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--pale-sky-soft);
  background: var(--white);
  color: var(--mocha);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(67, 47, 46, 0.08);
}
.testi-arrow svg { width: 18px; height: 18px; }
.testi-arrow:hover:not(:disabled) { border-color: var(--mocha); transform: scale(1.06); }
.testi-arrow:disabled { opacity: 0.35; cursor: not-allowed; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.testi-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--pale-sky-soft);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.testi-dot.active { background: var(--mocha); width: 22px; border-radius: 999px; }

@media (max-width: 860px) {
  .testi-slider { gap: 8px; }
  .testi-arrow { width: 38px; height: 38px; }
  .testi-arrow svg { width: 15px; height: 15px; }
}

/* ===================== FAQ ===================== */
.faq { position: relative; padding: 100px 0 110px; background: var(--vanilla-soft); overflow: hidden; }

.faq-blob-1 {
  position: absolute;
  top: -100px; right: -90px;
  width: 320px; height: 320px;
  background: var(--pale-sky-soft);
  border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
  z-index: 0;
}
.faq-blob-2 {
  position: absolute;
  bottom: -110px; left: -80px;
  width: 280px; height: 280px;
  background: var(--pale-sky-soft);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 0;
}
.faq-fade-top {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(var(--white), transparent);
  z-index: 0;
  pointer-events: none;
}
.faq-fade-bottom {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(var(--white), transparent);
  transform: rotate(180deg);
  z-index: 0;
  pointer-events: none;
}

.faq::before {
  content: "☁️";
  position: absolute;
  top: 40px; right: 6%;
  font-size: 3rem;
  opacity: 0.3;
  filter: blur(0.4px);
  z-index: 1;
}
.faq::after {
  content: "✦";
  position: absolute;
  bottom: 60px; left: 8%;
  font-size: 1.4rem;
  color: var(--pale-sky);
  opacity: 0.7;
  z-index: 1;
}
.faq .wrap { position: relative; z-index: 2; }

.faq-list { max-width: 680px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 16px; }

.faq-item {
  background: var(--white);
  border: none;
  border-left: 5px solid var(--vanilla);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(67, 47, 46, 0.08);
  transition: box-shadow 0.3s ease, transform 0.25s ease, border-left-color 0.3s ease;
}
.faq-item:nth-child(even) { border-left-color: var(--pale-sky); }

.faq-item:hover {
  transform: translateY(-3px) translateX(2px);
  box-shadow: 0 14px 28px rgba(67, 47, 46, 0.14);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 22px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--mocha);
  cursor: pointer;
  text-align: left;
}

.faq-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--vanilla);
  color: var(--mocha);
  font-family: 'Bagel Fat One', cursive;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -3px 4px rgba(67, 47, 46, 0.12), inset 0 2px 3px rgba(255,255,255,0.4);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item:nth-child(even) .faq-num { background: var(--pale-sky); }

.faq-question-text { flex: 1; }

.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--pale-sky-soft);
  color: var(--mocha);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, color 0.3s ease;
}

/* --- state terbuka --- */
.faq-item.open {
  border-color: var(--vanilla);
  box-shadow: 0 14px 28px rgba(67, 47, 46, 0.12);
}
.faq-item.open .faq-num {
  background: var(--mocha);
  color: var(--vanilla);
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(67, 47, 46, 0.3);
}
.faq-item.open .faq-icon {
  background: var(--mocha);
  color: var(--vanilla);
  transform: rotate(45deg);
}

/* animasi buka/tutup pakai grid-template-rows, otomatis ngikutin tinggi konten asli */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  background: var(--pale-sky-soft);
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-answer-inner p {
  padding: 4px 22px 20px 72px;
  font-size: 0.9rem;
  color: var(--mocha-70);
  font-weight: 500;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.faq-item.open .faq-answer-inner p {
  opacity: 1;
  transform: translateY(0);
}

.faq-item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ===================== Final CTA (white base, subtle depth) ===================== */
.final-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background:
    radial-gradient(circle at 15% 10%, rgba(254, 239, 182, 0.28) 0%, transparent 40%),
    radial-gradient(circle at 88% 15%, rgba(195, 218, 232, 0.25) 0%, transparent 38%),
    radial-gradient(circle at 10% 90%, rgba(195, 218, 232, 0.18) 0%, transparent 36%),
    radial-gradient(circle at 90% 92%, rgba(254, 239, 182, 0.2) 0%, transparent 38%),
    #FFFFFF;
  color: var(--mocha);
  overflow: hidden;
}

/* dua blob blur besar tapi sangat samar, cuma nongol di pojok, nggak nyampur ke tengah */
.final-cta::before {
  content: "";
  position: absolute;
  top: -180px; left: -140px;
  width: 420px; height: 420px;
  background: var(--vanilla);
  opacity: 0.22;
  filter: blur(100px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.final-cta::after {
  content: "";
  position: absolute;
  bottom: -180px; right: -140px;
  width: 420px; height: 420px;
  background: var(--pale-sky);
  opacity: 0.25;
  filter: blur(100px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.final-cta-fade-top {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(var(--white), transparent);
  z-index: 0;
  pointer-events: none;
}


.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(254, 239, 182, 0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.final-cta .wrap { position: relative; z-index: 1; }

.cta-eyebrow { color: var(--mocha-70); text-align: center; }

.final-cta .section-title {
  color: var(--mocha);
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(254, 239, 182, 0.5);
}

.cta-sub {
  color: var(--mocha-70);
  font-weight: 500;
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto 38px;
}

.final-cta .sparkle-5 { top: 20px; left: 20%; color: var(--pale-sky); font-size: 1.6rem; z-index: 1; }

.cta-deco {
  position: absolute;
  z-index: 1;
  opacity: 0.5;
  animation: float 4s ease-in-out infinite;
  pointer-events: none;
}
.cta-deco-1 { top: 50px; right: 12%; font-size: 2.4rem; opacity: 0.22; animation-delay: 0.3s; color: var(--mocha-45); }
.cta-deco-2 { bottom: 60px; left: 10%; font-size: 1.6rem; animation-delay: 1s; color: var(--pale-sky); }
.cta-deco-3 { bottom: 40px; right: 16%; font-size: 1.1rem; color: var(--pale-sky); animation-delay: 1.6s; }
.cta-deco-4 { top: 80px; left: 14%; font-size: 1.3rem; color: var(--mocha-45); animation-delay: 0.7s; }

@media (max-width: 600px) {
  .cta-deco-1, .cta-deco-2 { display: none; }
}

.final-cta .btn-solid.big {
  position: relative;
  background: var(--mocha);
  color: var(--vanilla);
  box-shadow: 0 14px 34px rgba(67, 47, 46, 0.3);
  overflow: hidden;
}
.final-cta .btn-solid.big::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.final-cta .btn-solid.big:hover::before { left: 130%; }
.final-cta .btn-solid.big:hover {
  box-shadow: 0 20px 42px rgba(67, 47, 46, 0.4);
  transform: translateY(-4px) scale(1.03);
}
/* ===================== Footer ===================== */
.site-footer {
  position: relative;
  padding: 80px 0 32px;
  background: var(--mocha);
  color: var(--vanilla-soft);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: -140px; left: 50%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(254, 239, 182, 0.14) 0%, transparent 70%);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.footer-deco {
  position: absolute;
  z-index: 0;
  opacity: 0.25;
  animation: float 4s ease-in-out infinite;
  pointer-events: none;
}
.footer-deco-1 { top: 30px; right: 8%; font-size: 2.2rem; }
.footer-deco-2 { bottom: 90px; left: 6%; font-size: 1.3rem; color: var(--pale-sky); animation-delay: 1s; }

.footer-inner { position: relative; z-index: 1; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
}

.footer-brand { max-width: 320px; }
.footer-logo { height: 52px; opacity: 0.95; margin-bottom: 16px; }
.footer-tagline {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.footer-social { display: flex; gap: 12px; }
.footer-social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(254, 239, 182, 0.3);
  color: var(--vanilla);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social-link svg { width: 18px; height: 18px; }
.footer-social-link:hover {
  background: var(--vanilla);
  color: var(--mocha);
  border-color: var(--vanilla);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(254, 239, 182, 0.25);
}

.footer-links h4 {
  font-family: 'Bagel Fat One', cursive;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--vanilla);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 0.2s ease, transform 0.2s ease;
  width: fit-content;
}
.footer-links a:hover {
  color: var(--vanilla);
  transform: translateX(4px);
}

.footer-divider {
  height: 1px;
  background: rgba(254, 239, 182, 0.18);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 0.78rem;
}

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-brand { max-width: none; margin: 0 auto; }
  .footer-social { justify-content: center; }
  .footer-links { align-items: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-deco { display: none; }
}

/* ===================== Floating WhatsApp button ===================== */
.float-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: var(--mocha);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(67, 47, 46, 0.3);
  text-decoration: none;
  z-index: 40;
  animation: pulse 2.5s ease-in-out infinite;
  transition: transform 0.25s ease;
}
.float-wa svg { width: 26px; height: 26px; }
.float-wa:hover { transform: scale(1.1); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(67, 47, 46, 0.3); }
  50% { box-shadow: 0 8px 28px rgba(67, 47, 46, 0.45), 0 0 0 8px rgba(67, 47, 46, 0.08); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* --- tab besar Invitation / Letter --- */
.main-category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.main-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--pale-sky-soft);
  color: var(--mocha-70);
  font-family: 'Bagel Fat One', cursive;
  font-weight: 400;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-tab-icon { font-size: 1.2rem; }
.main-tab-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.3; }
.main-tab-desc {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--mocha-70);
  letter-spacing: 0.02em;
}

.main-tab:hover { border-color: var(--pale-sky); transform: translateY(-2px); }

.main-tab.active {
  background: var(--mocha);
  border-color: var(--mocha);
  color: var(--vanilla);
  box-shadow: 0 12px 26px rgba(67, 47, 46, 0.22);
}
.main-tab.active .main-tab-desc { color: var(--pale-sky); }

@media (max-width: 560px) {
  .main-tab { flex: 1; justify-content: center; padding: 12px 14px; }
}

/* ===================== Full Invitation Preview (media only) ===================== */
.invite-back {
  position: fixed;
  top: 20px; left: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  color: var(--mocha);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(67,47,46,0.15);
  transition: transform 0.2s ease, background 0.2s ease;
}
.invite-back svg { width: 16px; height: 16px; }
.invite-back:hover { transform: translateX(-3px); background: var(--white); }

.invite-float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: var(--mocha);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(67, 47, 46, 0.3);
  z-index: 50;
  animation: pulse 2.5s ease-in-out infinite;
  transition: transform 0.25s ease;
}
.invite-float-wa svg { width: 26px; height: 26px; }
.invite-float-wa:hover { transform: scale(1.1); }

.invite-media {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: var(--mocha);
}

.invite-media-image {
  width: 100%;
  height: auto;
  display: block;
}

.invite-media-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.invite-empty { text-align: center; padding: 140px 24px; }
.invite-empty h2 { margin-bottom: 12px; }
.invite-empty p { color: var(--mocha-70); margin-bottom: 26px; }