/* ============================================================
   RUANG CERIA — DESIGN SYSTEM
   Warm, soft, modern. Family-friendly tapi tetap premium.
   ============================================================ */

:root {
  /* Color palette */
  --cream:        #FFF7EC;
  --cream-deep:   #FBEDD4;
  --pastel-yellow:#FFE7A8;
  --soft-orange:  #FFD27A;
  --peach:        #FFB89E;
  --mint:         #C9EBC8;
  --mint-deep:    #7FB069;
  --sky:          #B8DEF0;
  --sky-deep:     #3FA7D6;
  --coral:        #E76F51;

  --ink:          #2B2118;   /* main text */
  --ink-soft:     #5C4D40;   /* secondary text */
  --line:         #EFE3CF;   /* hairline */
  --white:        #FFFFFF;

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(43, 33, 24, 0.06);
  --shadow-md: 0 10px 30px rgba(43, 33, 24, 0.08);
  --shadow-lg: 0 24px 60px rgba(43, 33, 24, 0.12);

  /* Spacing scale */
  --space: clamp(1rem, 2vw, 1.5rem);
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 900px) {
  .container { padding: 0 40px; }
}

/* Eyebrow tag */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--cream-deep);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
.eyebrow--peach  { background: var(--peach); color: #5C2A1A; }
.eyebrow--mint   { background: var(--mint); color: #2F4A2A; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: #1d160f;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn--dark {
  background: var(--ink);
  color: var(--cream);
  border: 0;
}
.btn--dark:hover {
  background: #1d160f;
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 18px 36px; font-size: 17px; }

/* =================== NAVBAR =================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 236, 0.85);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
}

/* Logo navbar */
.site-logo {
  display: block;
  height: 42px !important;
  max-height: 42px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain;
  background: transparent;
}

/* Logo footer */
.footer-logo {
  display: block;
  height: 48px !important;
  max-height: 48px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain;
  background: transparent;
}

/* Responsive: kecilkan logo di mobile */
@media (max-width: 768px) {
  .site-logo {
    height: 34px !important;
    max-height: 34px !important;
    max-width: 150px !important;
  }
  .footer-logo {
    height: 42px !important;
    max-height: 42px !important;
    max-width: 180px !important;
  }
}
.nav__menu {
  display: none;
  align-items: center;
  gap: 32px;
  font-weight: 500;
  font-size: 15px;
}
.nav__menu a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav__menu a:hover { color: var(--coral); }
.nav__menu a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__cta .btn { display: none; }

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 22px;
  padding: 0;
}
.nav__toggle span {
  display: block;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(9.75px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-9.75px) rotate(-45deg); }

.nav__drawer {
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav__drawer a {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 0;
}
.nav__drawer .btn { width: 100%; margin-top: 8px; }

@media (min-width: 900px) {
  .nav__menu { display: flex; }
  .nav__cta .btn { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* =================== HERO =================== */
.hero {
  position: relative;
  padding: 60px 0 100px;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 210, 122, 0.35), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(184, 222, 240, 0.35), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(201, 235, 200, 0.30), transparent 50%),
    var(--cream);
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  pointer-events: none;
}
.hero__blob--1 { width: 300px; height: 300px; background: var(--soft-orange); top: -80px; left: -80px; }
.hero__blob--2 { width: 240px; height: 240px; background: var(--peach); bottom: 80px; right: -60px; }
.hero__blob--3 { width: 180px; height: 180px; background: var(--mint); top: 40%; right: 30%; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy { animation: fadeUp 0.7s ease-out both; }
.hero__title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  margin: 18px 0 20px;
  font-weight: 600;
}
.hero__title em {
  font-style: italic;
  color: var(--coral);
  font-weight: 500;
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 32px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Hero visual */
.hero__visual {
  position: relative;
  animation: fadeUp 0.9s 0.15s ease-out both;
}
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFE0B5, #FFB89E);
  border-radius: var(--r-xl);
  overflow: visible;
  box-shadow: var(--shadow-lg);
}
.hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
}
/* Fallback bg if image missing — keeps shape lovely */
.hero__photo::before {
  content: "👨‍👩‍👧";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  opacity: 0.6;
}
.hero__photo img { z-index: 1; }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  font-size: 13px;
  z-index: 2;
  animation: floaty 4s ease-in-out infinite;
}
.float-card strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 13.5px;
}
.float-card small {
  color: var(--ink-soft);
  font-size: 12px;
}
.float-card__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.float-card--1 { top: 8%; left: -8%; animation-delay: 0s; }
.float-card--2 { bottom: 12%; right: -6%; animation-delay: 1.5s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__wave {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 80px;
  display: block;
}

@media (min-width: 900px) {
  .hero { padding: 90px 0 140px; }
  .hero__inner { grid-template-columns: 1.05fr 1fr; gap: 80px; }
}

/* =================== SECTIONS =================== */
.section {
  padding: 80px 0;
}
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--soft  { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }

.section__header { max-width: 720px; margin-bottom: 56px; }
.section__header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 16px 0 16px;
}
.section__title em {
  font-style: italic;
  color: var(--coral);
  font-weight: 500;
}
.section__lede {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--ink-soft);
  margin: 0;
}

@media (min-width: 900px) {
  .section { padding: 120px 0; }
}

/* =================== PROBLEM =================== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.problem-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1.5px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--soft-orange);
}
.problem-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.problem-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
}

@media (min-width: 640px) { .problem-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .problem-grid { grid-template-columns: repeat(4, 1fr); } }

/* =================== SOLUTION =================== */
.solution {
  background: linear-gradient(135deg, #FFEFD4 0%, #FFE0B5 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.solution__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.section__title--solution { font-size: clamp(1.9rem, 4.5vw, 3rem); }
.solution__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.05rem;
}
.solution__list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.solution__list span {
  width: 28px; height: 28px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.solution__deco {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution__circle {
  width: 260px;
  height: 260px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--soft-orange);
}
.solution__big {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--coral);
}
.solution__small {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 4px;
}
.solution__sticker {
  position: absolute;
  font-size: 2.5rem;
  animation: floaty 5s ease-in-out infinite;
}
.solution__sticker--1 { top: 10%; left: 12%; }
.solution__sticker--2 { bottom: 12%; right: 14%; animation-delay: 1s; font-size: 3rem; }

@media (min-width: 900px) {
  .solution__inner { grid-template-columns: 1.1fr 1fr; gap: 80px; }
  .solution__deco { height: 420px; }
  .solution__circle { width: 320px; height: 320px; }
}

/* =================== CATEGORY =================== */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.cat-card {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 2px solid transparent;
  transition: border-color 0.3s;
  pointer-events: none;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.cat-card:hover::after { border-color: var(--card-accent); }
.cat-card__icon {
  width: 56px; height: 56px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}
.cat-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cat-card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 20px;
}
.cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  transition: gap 0.2s;
}
.cat-card:hover .cat-card__link { gap: 10px; color: var(--card-accent); }
.cat-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
}
.cat-card--feature {
  background: linear-gradient(135deg, #FFE0B5, #FFD27A);
}

@media (min-width: 640px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }

/* =================== FEATURED PRODUCTS =================== */
.prod-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.prod-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prod-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.prod-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.prod-card__img::before {
  content: "📘";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.4;
}
.prod-card__img img { position: relative; z-index: 1; }
.prod-card:hover .prod-card__img img { transform: scale(1.05); }
.prod-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--coral);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  z-index: 2;
}
.prod-card__tag--blue   { background: var(--sky-deep); }
.prod-card__tag--green  { background: var(--mint-deep); }
.prod-card__tag--orange { background: #F4A261; }
.prod-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.prod-card__cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.prod-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.prod-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0 0 20px;
  flex: 1;
}
.prod-card .btn { align-self: flex-start; }

@media (min-width: 640px) { .prod-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .prod-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

/* =================== WHY =================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.why-item { position: relative; padding-left: 0; }
.why-item__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 12px;
  font-style: italic;
}
.why-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.why-item p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}

@media (min-width: 700px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 40px 56px; } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

/* =================== NTM SECTION =================== */
.ntm {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ntm::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  background: var(--coral);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  top: -100px; right: -100px;
}
.ntm__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ntm .eyebrow {
  background: rgba(255, 210, 122, 0.15);
  color: var(--soft-orange);
}
.ntm .section__title { color: var(--cream); }
.ntm .section__title em { color: var(--soft-orange); }
.ntm .section__lede { color: rgba(255, 247, 236, 0.75); }
.ntm__list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
  color: rgba(255, 247, 236, 0.9);
}
.ntm__list li {
  padding-left: 12px;
  border-left: 2px solid var(--soft-orange);
}
.ntm .btn--dark {
  background: var(--soft-orange);
  color: var(--ink);
}
.ntm .btn--dark:hover { background: var(--cream); }

.ntm__visual {
  position: relative;
  height: 380px;
}
.ntm__card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--shadow-lg);
}
.ntm__card img { width: 100%; height: 100%; object-fit: cover; }
.ntm__card::before {
  content: "🎨";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.5;
}
.ntm__card img { position: relative; z-index: 1; }
.ntm__card--1 {
  width: 65%; height: 70%;
  top: 0; left: 0;
  transform: rotate(-3deg);
}
.ntm__card--2 {
  width: 55%; height: 60%;
  bottom: 0; right: 0;
  transform: rotate(4deg);
}
.ntm__badge {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--soft-orange);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: var(--r-pill);
  z-index: 2;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.ntm__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.ntm__badge span {
  display: block;
  font-size: 12px;
  font-weight: 500;
}

@media (min-width: 900px) {
  .ntm__inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}

/* =================== COMMUNITY =================== */
.community {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.community__bubbles {
  position: relative;
  height: 460px;
}
.bubble {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 22px 18px;
  box-shadow: var(--shadow-md);
  max-width: 280px;
  font-size: 14.5px;
}
.bubble p {
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.5;
}
.bubble small {
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 600;
}
.bubble img {
  width: 44px; height: 44px;
  border-radius: 50%;
  margin-bottom: 12px;
  background: var(--cream-deep);
  object-fit: cover;
}
.bubble::before {
  /* Fallback if avatar image missing */
  content: "🙂";
  position: absolute;
  top: 18px; left: 22px;
  width: 44px; height: 44px;
  background: var(--cream-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.bubble img { position: relative; z-index: 1; }

.bubble--1 { top: 0; left: 0; transform: rotate(-3deg); }
.bubble--2 { top: 30%; right: 0; transform: rotate(2deg); }
.bubble--3 { bottom: 0; left: 15%; transform: rotate(-1deg); }

@media (min-width: 900px) {
  .community { grid-template-columns: 1fr 1fr; gap: 80px; }
}

/* =================== FINAL CTA =================== */
.final-cta {
  padding: 100px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 210, 122, 0.4), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 222, 240, 0.4), transparent 50%),
    var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  z-index: 1;
}
.final-cta__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
  line-height: 1.1;
}
.final-cta__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  margin: 0 auto 36px;
  max-width: 580px;
}
.final-cta__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.final-cta__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.confetti {
  position: absolute;
  border-radius: 4px;
  animation: confetti-float 6s ease-in-out infinite;
}
.confetti--1 { top: 15%; left: 8%; width: 16px; height: 16px; background: var(--soft-orange); transform: rotate(20deg); }
.confetti--2 { top: 25%; right: 10%; width: 12px; height: 12px; background: var(--coral); border-radius: 50%; animation-delay: 0.5s; }
.confetti--3 { bottom: 20%; left: 12%; width: 14px; height: 14px; background: var(--mint-deep); animation-delay: 1s; }
.confetti--4 { bottom: 30%; right: 15%; width: 10px; height: 10px; background: var(--sky-deep); border-radius: 50%; animation-delay: 1.5s; }
.confetti--5 { top: 50%; left: 5%; width: 18px; height: 18px; background: var(--pastel-yellow); transform: rotate(45deg); animation-delay: 2s; }

@keyframes confetti-float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-20px) rotate(calc(var(--r, 0deg) + 15deg)); }
}

/* =================== FOOTER =================== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer__tag {
  margin-top: 14px;
  color: rgba(255, 247, 236, 0.7);
  font-size: 15px;
  max-width: 280px;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--soft-orange);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer__col a {
  display: block;
  color: rgba(255, 247, 236, 0.8);
  font-size: 15px;
  padding: 6px 0;
  transition: color 0.2s, transform 0.2s;
}
.footer__col a:hover {
  color: var(--cream);
  transform: translateX(3px);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 247, 236, 0.1);
  padding: 24px 0;
  font-size: 13.5px;
  color: rgba(255, 247, 236, 0.6);
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.footer__ntm strong { color: var(--soft-orange); }

@media (min-width: 700px) {
  .footer__inner { grid-template-columns: 1.2fr 2fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* =================== REVEAL ON SCROLL =================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   LOGO SIZE OVERRIDE — harus paling bawah agar menang cascade
   Root cause: img { max-width: 100% } di global reset membuat
   logo stretch ke lebar container jika wrapper tidak dibatasi.
   ============================================================ */
.nav__logo {
  display: inline-flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  width: auto !important;
  max-width: 180px !important;
  height: 48px !important;
  max-height: 48px !important;
  overflow: hidden !important;
}

.nav__logo img,
.site-logo {
  display: block !important;
  width: auto !important;
  height: 40px !important;
  max-width: 160px !important;
  max-height: 40px !important;
  object-fit: contain !important;
}

.footer-logo {
  display: block !important;
  width: auto !important;
  height: 48px !important;
  max-width: 190px !important;
  max-height: 48px !important;
  object-fit: contain !important;
}

.footer__brand .nav__logo {
  height: auto !important;
  max-height: none !important;
  max-width: 220px !important;
  overflow: visible !important;
}

@media (max-width: 768px) {
  .nav__logo {
    max-width: 140px !important;
    height: 38px !important;
    max-height: 38px !important;
  }

  .nav__logo img,
  .site-logo {
    height: 32px !important;
    max-height: 32px !important;
    max-width: 130px !important;
  }

  .footer-logo {
    height: 40px !important;
    max-height: 40px !important;
    max-width: 160px !important;
  }
}

/* ============================================================
   FOOTER BACKGROUND OVERRIDE
   ============================================================ */
.footer {
  background: #BDE0FE !important;
  color: #3B3B3B !important;
}

.footer__tag,
.footer__bottom,
.footer__col a {
  color: rgba(59, 59, 59, 0.75) !important;
}

.footer__col h4,
.footer__ntm strong {
  color: #E76F51 !important;
}

.footer__bottom {
  border-top: 1px solid rgba(59, 59, 59, 0.12) !important;
}

.footer__col a:hover {
  color: #2B2118 !important;
}

/* ============== Floating WhatsApp button ============== */
.wa-float{
  position:fixed; right:18px; bottom:18px; z-index:999;
  width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:#25D366; color:#fff;
  box-shadow:0 6px 20px rgba(37,211,102,.45);
  transition:transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover{ transform:scale(1.08); box-shadow:0 8px 26px rgba(37,211,102,.55); }
@media (max-width:520px){ .wa-float{ width:52px; height:52px; right:14px; bottom:14px; } }

/* ============== Seasonal announcement bar ============== */
.season-bar{
  display:flex; align-items:center; justify-content:center; gap:8px;
  background:linear-gradient(90deg,#E76F51,#F4A261);
  color:#fff; text-align:center; font-size:14px; font-weight:500;
  padding:11px 16px; text-decoration:none; line-height:1.35;
}
.season-bar b{ background:rgba(255,255,255,.22); padding:1px 8px; border-radius:999px; font-weight:800; }
.season-bar:hover{ filter:brightness(1.03); }
@media (max-width:520px){ .season-bar{ font-size:12.5px; padding:10px 12px; } }
