:root {
  --color-primary: #1f6f43;
  --color-primary-dark: #154c31;
  --color-accent: #d89b32;
  --color-bg: #fbfaf5;
  --color-surface: #ffffff;
  --color-text: #1f2a24;
  --color-muted: #66736b;
  --color-border: #e3dfd2;
  --shadow-soft: 0 12px 30px rgba(31, 42, 36, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}


.sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(227, 223, 210, 0.72);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.navbar {
  width: min(1360px, calc(100% - 64px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 190px;
  min-width: 190px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
}


.brand span {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0;
  text-shadow: 0 2px 0 #ffffff, 0 0 1px #ffffff;
}

.brand small {
  margin-left: 50px;
  margin-top: 6px;
  color: #2f1712;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  list-style: none;
}

.nav-menu a {
  display: block;
  padding: 10px 8px;
  border-radius: 0;
  color: #2f1712;
  font-size: 0.98rem;
  font-weight: 800;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: transparent;
  color: #b60012;
}

.nav-menu a.active::after {
  content: "";
  height: 3px;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  border-radius: 999px;
  background: #d6a02f;
}

.nav-cta {
  min-height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #b60012;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(182, 0, 18, 0.22);
}

.nav-cta:hover {
  background: #8f0010;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-surface);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--color-primary-dark);
}

.home-shell {
  flex: 1;
  display: flex;
}

.hero-slider {
  --hero-width: min(100vw, calc((100vh - 148px) * 1.5));
  --hero-height: calc(var(--hero-width) / 1.5);
  width: 100%;
  min-height: calc(100vh - 148px);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: #f7f1e4;
}


.hero-background,
.hero-slides {
  width: 100%;
  height: 100%;
  max-width: none;
  position: absolute;
  inset: 0;
}

.hero-background {
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-family-stage {
  width: 43%;
  position: absolute;
  left: 45%;
  top: 3%;
  z-index: auto;
  pointer-events: none;
  user-select: none;
}

.hero-family-model {
  width: 100%;
  height: auto;
  position: relative;
  left: auto;
  top: auto;
  z-index: 2;
  display: block;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 24px 20px rgba(79, 45, 20, 0.24)) drop-shadow(0 5px 7px rgba(60, 32, 15, 0.14));
}

.hero-slides {
  z-index: 8;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  cursor: default;
  pointer-events: none;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-copy {
  display: none;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 92px;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-nav {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(21, 76, 49, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-primary-dark);
  font: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(31, 42, 36, 0.12);
}

.hero-nav:hover {
  background: var(--color-primary-dark);
  color: var(--color-surface);
}

.hero-nav-prev {
  left: max(18px, calc((100vw - var(--hero-width)) / 2 + 18px));
}

.hero-nav-next {
  right: max(18px, calc((100vw - var(--hero-width)) / 2 + 18px));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 1.04;
}

p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.hero-food-wrap,
.hero-pack-wrap {
  position: absolute;
  max-width: none;
  pointer-events: auto;
  cursor: pointer;
}
.hero-contact-shadow,
.hero-pack-shadow {
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(74, 43, 18, 0.34) 0%, rgba(74, 43, 18, 0.18) 38%, rgba(74, 43, 18, 0) 72%);
  filter: blur(8px);
  transform: translateX(-50%);
  mix-blend-mode: multiply;
}

.hero-contact-shadow {
  width: 82%;
  height: 19%;
  left: 51%;
  bottom: 1.5%;
}

.hero-pack-shadow {
  width: 76%;
  height: 13%;
  left: 52%;
  bottom: -1%;
  opacity: 0.72;
  filter: blur(6px);
}

.hero-slide[data-slide="original"] .hero-contact-shadow {
  width: 86%;
  bottom: 2%;
}

.hero-slide[data-slide="nyemek-rempah"] .hero-contact-shadow,
.hero-slide[data-slide="yamin-pedas"] .hero-contact-shadow {
  width: 80%;
}

.hero-food-wrap {
  left: 49.7%;
  top: 63.2%;
  width: 21.7%;
  z-index: 9;
  transform: scale(1.2);
  transform-origin: center bottom;
}

.hero-pack-wrap {
  left: 68.6%;
  top: 53.2%;
  width: 12.4%;
  z-index: 10;
}

.hero-steam {
  width: 16%;
  height: 40%;
  position: absolute;
  left: 38%;
  top: 0;
  z-index: 10;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse at 50% 16%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.4) 42%, rgba(255, 255, 255, 0) 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0));
  filter: blur(6px);
  transform: translate(-50%, 18%) scale(0.55) rotate(-12deg);
  animation: steam-rise 3.2s ease-in-out infinite;
}

.hero-steam-2 {
  left: 50%;
  top: -4%;
  width: 18%;
  height: 46%;
  animation-delay: 0.75s;
  animation-duration: 3.7s;
}

.hero-steam-3 {
  left: 62%;
  top: 1%;
  width: 14%;
  height: 38%;
  animation-delay: 1.45s;
  animation-duration: 4.1s;
}
.hero-food-wrap::before,
.hero-food-wrap::after {
  content: "";
  width: 18%;
  height: 42%;
  position: absolute;
  left: 45%;
  top: 2%;
  z-index: 7;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.38) 38%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0));
  filter: blur(7px);
  transform: translate(-50%, 18%) scale(0.65) rotate(-8deg);
  animation: steam-rise 3.8s ease-in-out infinite;
}

.hero-food-wrap::after {
  left: 58%;
  width: 15%;
  height: 36%;
  filter: blur(7px);
  transform: translate(-50%, 22%) scale(0.56) rotate(10deg);
  animation-delay: 1.35s;
  animation-duration: 4.4s;
}

.hero-slide[data-slide="nyemek-rempah"] .hero-food-wrap::before {
  left: 48%;
}

.hero-slide[data-slide="nyemek-rempah"] .hero-food-wrap::after {
  left: 61%;
}

.hero-slide[data-slide="yamin-pedas"] .hero-food-wrap::before {
  left: 47%;
}

.hero-slide[data-slide="yamin-pedas"] .hero-food-wrap::after {
  left: 60%;
}

@keyframes steam-rise {
  0% {
    opacity: 0;
    transform: translate(-50%, 18%) scale(0.58) rotate(-8deg);
  }

  18% {
    opacity: 0.82;
  }

  58% {
    opacity: 0.52;
  }

  100% {
    opacity: 0;
    transform: translate(-58%, -46%) scale(1.24) rotate(9deg);
  }
}
.hero-food-wrap img,
.hero-pack-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 20px rgba(70, 40, 18, 0.25)) drop-shadow(0 6px 7px rgba(70, 40, 18, 0.16));
}


.hero-control {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  color: transparent;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(47, 23, 18, 0.18);
}

.hero-control.is-active {
  border-color: #b60012;
  background: #b60012;
}

.hero-branding {
  width: min(430px, 32vw);
  position: absolute;
  left: max(54px, 4.8vw);
  top: 52px;
  z-index: 7;
  color: #2f1712;
}

.hero-kicker {
  margin: 0 0 14px;
  color: #b60012;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-branding h1 {
  margin: 0;
  color: #b60012;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(4.4rem, 7.4vw, 7.2rem);
  font-weight: 700;
  line-height: 0.86;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.64);
}

.hero-official-logo {
  width: clamp(92px, 7.6vw, 132px);
  height: auto;
  display: block;
  margin: 0 0 12px;
  filter: drop-shadow(0 8px 8px rgba(79, 45, 20, 0.12));
}

.hero-headline-art {
  width: min(100%, 430px);
  height: auto;
  display: block;
}
.hero-subtitle {
  max-width: 360px;
  margin: 18px 0 0;
  color: #2f1712;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-subtitle::before {
  content: "";
  width: 210px;
  height: 4px;
  display: block;
  margin: 0 0 14px;
  border-radius: 999px;
  background: #d6a02f;
}

.hero-quality-list {
  width: min(270px, 20vw);
  position: absolute;
  left: max(54px, 4.8vw);
  bottom: 154px;
  z-index: 7;
  display: grid;
  gap: 12px;
}

.quality-card {
  min-height: 72px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(47, 23, 18, 0.12);
  backdrop-filter: blur(10px);
}

.quality-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #b60012;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 900;
}

.quality-card h2,
.hero-product-card h2 {
  margin: 0;
  color: #2f1712;
  font-size: 1rem;
  line-height: 1.15;
}

.quality-card p,
.hero-product-card p,
.hero-benefits p {
  margin: 4px 0 0;
  color: #3f2a22;
  font-size: 0.92rem;
  line-height: 1.24;
}

.hero-product-card {
  width: min(430px, 31vw);
  min-height: 208px;
  padding: 24px 30px 26px;
  position: absolute;
  left: 29.4vw;
  bottom: 144px;
  z-index: 7;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(47, 23, 18, 0.16);
  backdrop-filter: blur(12px);
}

.hero-product-card-image {
  display: none;
}

.product-badge {
  width: fit-content;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 7px;
  background: #b60012;
  color: #ffffff !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-product-card h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
}

.hero-product-card p:not(.product-badge) {
  max-width: 320px;
  margin-top: 10px;
  font-size: 1.08rem;
}

.product-cta {
  min-width: 164px;
  overflow: hidden;
  position: relative;
  min-height: 50px;
  margin-top: 22px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #d6a02f;
  color: #2f1712;
  font-weight: 900;
  text-transform: uppercase;
}

.product-cta:hover {
  background: #f0bf45;
}


.hero-card-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-card-actions .product-cta {
  margin-top: 0;
}

.product-secondary-cta,
.reseller-secondary-cta {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(182, 0, 18, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.52);
  color: #641c15;
  font-weight: 900;
  text-decoration: none;
}

.product-pack-marquee {
  width: 100%;
  height: 46px;
  margin-top: 16px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.product-pack-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: pack-slide 16s linear infinite;
}

.product-pack-mini {
  width: 34px;
  max-height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: 0.74;
  filter: drop-shadow(0 8px 8px rgba(70, 40, 18, 0.16));
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-pack-mini.is-active {
  opacity: 1;
  transform: translateY(-3px) scale(1.08);
}

.home-reseller-cta {
  min-height: 390px;
  padding: 54px max(42px, 6vw);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 48px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 82% 20%, rgba(214, 160, 47, 0.24), transparent 34%),
    linear-gradient(135deg, #fff8e8 0%, #fffdf7 54%, #ffe8b8 100%);
}

.home-reseller-cta::before,
.home-reseller-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.5);
}

.home-reseller-cta::before {
  width: 240px;
  height: 240px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
}

.home-reseller-cta::after {
  width: 100%;
  height: 1px;
  left: 0;
  top: 0;
}

.reseller-cta-copy {
  position: relative;
  z-index: 2;
}

.section-eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 7px;
  background: #b60012;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reseller-cta-copy h2 {
  max-width: 560px;
  margin: 0;
  color: #2f1712;
  font-size: clamp(2rem, 4.2vw, 4.3rem);
  line-height: 0.98;
}

.reseller-cta-copy > p:not(.section-eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: #4c3024;
  font-size: 1.12rem;
  line-height: 1.55;
}

.reseller-cta-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reseller-primary-cta {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  position: relative;
  background: #b60012;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(182, 0, 18, 0.2);
}

.reseller-primary-cta::after,
.product-cta::after {
  content: "";
  width: 44px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -60px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  animation: cta-shine 3.4s ease-in-out infinite;
}

.reseller-cta-visual {
  min-height: 320px;
  position: relative;
  z-index: 2;
}

.reseller-glow {
  width: min(420px, 64vw);
  height: min(420px, 64vw);
  position: absolute;
  right: 4%;
  bottom: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 85, 0.42), rgba(255, 209, 85, 0) 68%);
  animation: reseller-pulse 4.8s ease-in-out infinite;
}

.reseller-model {
  width: min(510px, 54vw);
  position: absolute;
  right: 6%;
  bottom: -24%;
  filter: drop-shadow(0 28px 22px rgba(70, 40, 18, 0.22));
  animation: reseller-float 4.8s ease-in-out infinite;
}

.reseller-pack {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(70, 40, 18, 0.2));
}

.reseller-pack-one {
  width: min(132px, 18vw);
  right: 6%;
  bottom: 10%;
  animation: reseller-pack-one 4.4s ease-in-out infinite;
}

.reseller-pack-two {
  width: min(116px, 16vw);
  right: 27%;
  bottom: 1%;
  animation: reseller-pack-two 5.1s ease-in-out infinite;
}

.reseller-badge {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  color: #2f1712;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(47, 23, 18, 0.12);
  backdrop-filter: blur(10px);
}

.reseller-badge-one {
  right: 38%;
  top: 14%;
  animation: reseller-badge 3.8s ease-in-out infinite;
}

.reseller-badge-two {
  right: 2%;
  top: 38%;
  animation: reseller-badge 4.2s ease-in-out infinite reverse;
}

@keyframes pack-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes cta-shine {
  0%, 42% { left: -60px; }
  70%, 100% { left: calc(100% + 60px); }
}

@keyframes reseller-float {
  0%, 100% { transform: translateY(0) rotate(-0.4deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

@keyframes reseller-pulse {
  0%, 100% { opacity: 0.65; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes reseller-pack-one {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes reseller-pack-two {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes reseller-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.hero-benefits {
  width: min(1280px, calc(100% - 112px));
  min-height: 86px;
  padding: 14px 30px;
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 3;
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(47, 23, 18, 0.15);
  transform: translateX(-50%);
}

.hero-benefits article {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
}

.hero-benefits article + article::before {
  content: "";
  width: 1px;
  height: 54px;
  position: absolute;
  left: -9px;
  background: rgba(214, 160, 47, 0.75);
}

.hero-benefits span {
  color: #b60012;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.hero-benefits strong {
  display: block;
  color: #2f1712;
  font-size: 1.02rem;
}
.page-shell {
  width: min(1120px, calc(100% - 32px));
  flex: 1;
  margin: 0 auto;
  padding: 72px 0;
  display: flex;
  align-items: center;
}

.page-intro {
  width: 100%;
  padding: 48px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.coming-soon {
  color: var(--color-text);
  font-size: 1.15rem;
  font-weight: 700;
}

.site-footer {
  padding: 24px 16px;
  background: var(--color-primary-dark);
  color: var(--color-surface);
  text-align: center;
}

.site-footer p {
  max-width: none;
  margin: 0;
  color: inherit;
  font-size: 0.95rem;
}














































/* Reseller join card */
.home-reseller-cta {
  min-height: auto;
  padding: 48px max(32px, 5vw) 56px;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fffaf1 0%, #fff2d5 100%);
}

.reseller-join-card {
  width: min(1120px, 100%);
  min-height: 330px;
  margin: 0 auto;
  padding: 34px 40px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(300px, 1.08fr);
  align-items: center;
  gap: 30px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 75% 20%, rgba(214, 160, 47, 0.26), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 246, 222, 0.76));
  box-shadow: 0 22px 54px rgba(47, 23, 18, 0.14);
  backdrop-filter: blur(12px);
}

.reseller-join-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background:
    linear-gradient(120deg, rgba(182, 0, 18, 0.1), transparent 34%, rgba(214, 160, 47, 0.18)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.7), transparent 26%);
  animation: reseller-bg-shift 9s ease-in-out infinite;
}

.reseller-landmarks {
  position: absolute;
  inset: auto 0 0;
  height: 118px;
  opacity: 0.22;
  display: flex;
  align-items: end;
  justify-content: space-around;
  pointer-events: none;
}

.reseller-landmarks span {
  width: 54px;
  height: 78px;
  position: relative;
  border-radius: 14px 14px 0 0;
  background: #b60012;
  transform-origin: center bottom;
  animation: landmark-wave 7.5s ease-in-out infinite;
}

.reseller-landmarks span::before,
.reseller-landmarks span::after {
  content: "";
  position: absolute;
  background: inherit;
}

.reseller-landmarks span::before {
  width: 72px;
  height: 20px;
  left: -9px;
  bottom: 0;
  border-radius: 10px 10px 0 0;
}

.reseller-landmarks span::after {
  width: 20px;
  height: 34px;
  left: 17px;
  top: -28px;
  border-radius: 999px 999px 0 0;
}

.reseller-landmarks span:nth-child(2) {
  height: 96px;
  background: #d6a02f;
  animation-delay: -1.2s;
}

.reseller-landmarks span:nth-child(3) {
  width: 38px;
  height: 110px;
  background: #0d5a3a;
  animation-delay: -2.4s;
}

.reseller-landmarks span:nth-child(4) {
  height: 84px;
  background: #b60012;
  animation-delay: -3.6s;
}

.reseller-landmarks span:nth-child(5) {
  width: 68px;
  height: 70px;
  background: #d6a02f;
  animation-delay: -4.8s;
}

.reseller-card-copy,
.reseller-card-visual {
  position: relative;
  z-index: 2;
}

.reseller-card-copy h2 {
  max-width: 520px;
  margin: 0;
  color: #2f1712;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.reseller-card-copy > p:not(.section-eyebrow) {
  max-width: 490px;
  margin: 16px 0 0;
  color: #4c3024;
  font-size: 1.08rem;
  line-height: 1.48;
}

.reseller-join-marquee {
  width: min(430px, 100%);
  height: 42px;
  margin-top: 18px;
  border-radius: 999px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: rgba(182, 0, 18, 0.09);
  color: #b60012;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.reseller-join-marquee span {
  min-width: 100%;
  padding: 0 26px;
  animation: reseller-text-slide 9s linear infinite;
}

.reseller-card-visual {
  min-height: 270px;
}

.reseller-money-glow {
  width: min(340px, 54vw);
  height: min(340px, 54vw);
  position: absolute;
  right: 7%;
  bottom: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 85, 0.44), rgba(255, 209, 85, 0) 70%);
  animation: reseller-pulse 4.8s ease-in-out infinite;
}

.reseller-money-image {
  width: min(390px, 42vw);
  max-height: 330px;
  object-fit: contain;
  position: absolute;
  right: 6%;
  bottom: -32px;
  filter: drop-shadow(0 28px 24px rgba(70, 40, 18, 0.22));
  animation: reseller-float 4.8s ease-in-out infinite;
}

@keyframes reseller-bg-shift {
  0%, 100% { filter: hue-rotate(0deg); transform: scale(1); }
  50% { filter: hue-rotate(18deg); transform: scale(1.03); }
}

@keyframes landmark-wave {
  0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.82; }
  50% { transform: translateY(-9px) scaleY(1.12); opacity: 1; }
}

@keyframes reseller-text-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.mobile-why-section {
  display: none;
}











/* Hero reseller card lock */
.hero-slider > .home-reseller-cta {
  width: min(430px, 31vw);
  min-height: 208px;
  padding: 0;
  position: absolute;
  left: 29.4vw;
  bottom: 370px;
  z-index: 7;
  display: block;
  overflow: visible;
  background: transparent;
}

.hero-slider > .home-reseller-cta::before,
.hero-slider > .home-reseller-cta::after {
  content: none;
}

.hero-slider .reseller-join-card {
  width: 100%;
  min-height: 208px;
  margin: 0;
  padding: 24px 30px 26px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34%;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 25%, rgba(255, 219, 112, 0.42), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 246, 222, 0.7));
  box-shadow: 0 18px 42px rgba(47, 23, 18, 0.16);
  backdrop-filter: blur(12px);
}

.hero-slider .reseller-join-card::before {
  opacity: 0.24;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.82), transparent 24%),
    linear-gradient(120deg, rgba(182, 0, 18, 0.1), transparent 36%, rgba(214, 160, 47, 0.18));
  animation: reseller-bg-shift 8s ease-in-out infinite;
}

.hero-slider .reseller-landmarks,
.hero-slider .reseller-join-marquee {
  display: none;
}

.hero-slider .reseller-money-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-slider .reseller-money-rain span {
  min-width: 60px;
  height: 25px;
  padding: 3px 8px;
  position: absolute;
  top: -42px;
  left: var(--money-left, 10%);
  border: 1px solid rgba(154, 20, 28, 0.18);
  border-radius: 5px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 183, 191, 0.92), rgba(255, 232, 217, 0.84));
  color: rgba(154, 20, 28, 0.72);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0.68;
  transform: rotate(var(--money-rotate, -10deg));
  animation: money-fall var(--money-speed, 6.8s) linear infinite;
  animation-delay: var(--money-delay, 0s);
}

.hero-slider .reseller-money-rain span:nth-child(1) { --money-left: 8%; --money-rotate: -14deg; --money-speed: 6.8s; --money-delay: -0.4s; }
.hero-slider .reseller-money-rain span:nth-child(2) { --money-left: 24%; --money-rotate: 9deg; --money-speed: 7.4s; --money-delay: -2.1s; }
.hero-slider .reseller-money-rain span:nth-child(3) { --money-left: 42%; --money-rotate: -4deg; --money-speed: 6.1s; --money-delay: -3.2s; }
.hero-slider .reseller-money-rain span:nth-child(4) { --money-left: 61%; --money-rotate: 13deg; --money-speed: 7.8s; --money-delay: -1.2s; }
.hero-slider .reseller-money-rain span:nth-child(5) { --money-left: 77%; --money-rotate: -8deg; --money-speed: 6.5s; --money-delay: -4.1s; }
.hero-slider .reseller-money-rain span:nth-child(6) { --money-left: 92%; --money-rotate: 10deg; --money-speed: 8.2s; --money-delay: -2.8s; }
.hero-slider .reseller-money-rain span:nth-child(7) { --money-left: 34%; --money-rotate: 16deg; --money-speed: 7s; --money-delay: -5.3s; }
.hero-slider .reseller-money-rain span:nth-child(8) { --money-left: 70%; --money-rotate: -16deg; --money-speed: 6.4s; --money-delay: -5.9s; }

.hero-slider .reseller-card-copy,
.hero-slider .reseller-card-visual {
  position: relative;
  z-index: 2;
}

.hero-slider .reseller-card-copy h2 {
  max-width: 260px;
  margin: 0;
  color: #2f1712;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.05;
}

.hero-slider .reseller-card-copy > p:not(.section-eyebrow) {
  max-width: 250px;
  margin: 10px 0 0;
  color: #3f2a22;
  font-size: 0.98rem;
  line-height: 1.3;
}

.hero-slider .reseller-cta-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-slider .reseller-primary-cta {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.86rem;
  box-shadow: 0 12px 22px rgba(182, 0, 18, 0.18);
}

.hero-slider .reseller-secondary-cta {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.84rem;
}

.hero-slider .reseller-card-visual {
  min-height: 150px;
  align-self: stretch;
}

.hero-slider .reseller-money-glow {
  width: 170px;
  height: 170px;
  right: -38px;
  bottom: -42px;
  opacity: 0.78;
  animation: none;
}

.hero-slider .reseller-money-image {
  width: min(180px, 12vw);
  max-height: 178px;
  right: -18px;
  bottom: -18px;
  filter: drop-shadow(0 20px 18px rgba(70, 40, 18, 0.2));
  animation: none;
}

@keyframes money-fall {
  0% { opacity: 0; transform: translate3d(0, -44px, 0) rotate(var(--money-rotate, -10deg)); }
  12% { opacity: 0.72; }
  82% { opacity: 0.62; }
  100% { opacity: 0; transform: translate3d(18px, 262px, 0) rotate(calc(var(--money-rotate, -10deg) + 34deg)); }
}

@media (min-width: 721px) {
  .hero-slider > .home-reseller-cta {
    bottom: clamp(400px, 55vh, 520px);
  }

  .hero-slider .reseller-join-card {
    min-height: 208px;
    padding: 20px 26px 22px;
  }

  .hero-slider .reseller-card-copy h2 {
    font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  }

  .hero-slider .reseller-card-copy > p:not(.section-eyebrow) {
    max-width: 235px;
    margin-top: 8px;
    font-size: 0.9rem;
  }

  .hero-slider .reseller-secondary-cta {
    display: none;
  }

  .hero-slider .reseller-primary-cta {
    min-height: 44px;
    padding: 0 17px;
  }

  .hero-slider .reseller-card-visual {
    min-height: 118px;
  }

  .hero-slider .reseller-money-image {
    width: min(150px, 11vw);
  }
}

@media (min-width: 721px) {
  .hero-slider .reseller-card-copy > p:not(.section-eyebrow) {
    display: none;
  }

  .hero-slider .reseller-cta-actions {
    margin-top: 14px;
  }

  .hero-slider .reseller-card-visual {
    min-height: 92px;
  }
}

@media (min-width: 721px) {
  .hero-slider > .home-reseller-cta {
    bottom: clamp(435px, 60vh, 560px);
  }
}

/* Reseller model invite motion */
.hero-slider .reseller-money-rain {
  display: none !important;
}

.hero-slider .reseller-money-glow {
  animation: reseller-invite-glow 3.8s ease-in-out infinite !important;
}

.hero-slider .reseller-money-image {
  transform-origin: 58% 88%;
  animation: reseller-invite-wave 2.9s ease-in-out infinite !important;
  will-change: transform;
}

@keyframes reseller-invite-wave {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  18% {
    transform: translate3d(-2px, -4px, 0) rotate(-1.8deg) scale(1.012);
  }
  36% {
    transform: translate3d(2px, -2px, 0) rotate(2.2deg) scale(1.018);
  }
  54% {
    transform: translate3d(-1px, -5px, 0) rotate(-1.2deg) scale(1.012);
  }
  72% {
    transform: translate3d(1px, -1px, 0) rotate(1deg) scale(1.006);
  }
}

@keyframes reseller-invite-glow {
  0%, 100% {
    opacity: 0.55;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.04);
  }
}

/* Desktop reseller text restore */
@media (min-width: 721px) {
  .hero-slider .reseller-card-copy > p:not(.section-eyebrow) {
    display: block;
    max-width: 238px;
    margin-top: 8px;
    font-size: 0.88rem;
    line-height: 1.24;
  }

  .hero-slider .reseller-join-card {
    min-height: 224px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero-slider .reseller-card-visual {
    min-height: 116px;
  }
}

/* Comic watercolor story concept */
body {
  background:
    radial-gradient(circle at 12% 10%, rgba(225, 177, 78, 0.08), transparent 24%),
    radial-gradient(circle at 88% 28%, rgba(181, 37, 25, 0.06), transparent 22%),
    #fff8ea;
}

.hero-comic-bubbles {
  position: absolute;
  inset: 0;
  z-index: 13;
  pointer-events: none;
}

.comic-bubble {
  max-width: 230px;
  margin: 0;
  padding: 14px 18px 16px;
  position: relative;
  border: 2px solid rgba(45, 28, 16, 0.82);
  border-radius: 54% 46% 48% 52% / 48% 52% 48% 52%;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.86), transparent 30%),
    rgba(255, 251, 239, 0.9);
  color: #2f1712;
  font-family: "Comic Sans MS", "Segoe Print", "Trebuchet MS", cursive;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
  filter: drop-shadow(0 10px 12px rgba(79, 45, 20, 0.12));
}

.comic-bubble::before {
  content: "";
  width: 28px;
  height: 30px;
  position: absolute;
  right: 28px;
  bottom: -20px;
  border-right: 2px solid rgba(45, 28, 16, 0.82);
  border-bottom: 2px solid rgba(45, 28, 16, 0.82);
  border-radius: 0 0 24px 0;
  background: rgba(255, 251, 239, 0.9);
  transform: rotate(32deg) skewY(18deg);
}

.comic-bubble span {
  color: #c70018;
}

.hero-bubble {
  position: absolute;
  opacity: 0;
  transform: translateY(12px) scale(0.9) rotate(-1deg);
  animation: comicBubbleIn 520ms ease forwards;
}

.hero-bubble-one {
  left: 48.2%;
  top: 12.4%;
  animation-delay: 650ms;
}

.hero-bubble-two {
  left: 61.6%;
  top: 10.2%;
  animation-delay: 1350ms;
}

.hero-bubble-three {
  right: 5.4%;
  top: 33.5%;
  animation-delay: 2200ms;
}

.hero-slider:hover .hero-bubble,
.hero-family-model:hover ~ .hero-comic-bubbles .hero-bubble {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

.comic-journey {
  padding: 72px max(24px, 5vw) 44px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 6%, rgba(214, 160, 47, 0.18), transparent 26%),
    radial-gradient(circle at 92% 42%, rgba(182, 0, 18, 0.08), transparent 24%),
    linear-gradient(180deg, #fff8ea 0%, #fff4df 100%);
  isolation: isolate;
}

.comic-journey::before,
.comic-journey::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
}

.comic-journey::before {
  width: 420px;
  height: 420px;
  left: -160px;
  top: 140px;
  background: radial-gradient(circle, rgba(115, 138, 57, 0.2), transparent 64%);
  filter: blur(3px);
}

.comic-journey::after {
  inset: 0;
  background-image:
    radial-gradient(rgba(87, 55, 32, 0.08) 0.7px, transparent 0.7px),
    linear-gradient(98deg, rgba(255,255,255,0.22), transparent 32%, rgba(214,160,47,0.05));
  background-size: 9px 9px, 100% 100%;
  mix-blend-mode: multiply;
}

.comic-section-heading {
  width: min(920px, 100%);
  margin: 0 auto 34px;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.comic-section-heading.is-visible,
.comic-trust-strip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.comic-kicker {
  width: fit-content;
  margin: 0 auto 10px;
  color: #b60012;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comic-section-heading h2 {
  margin: 0;
  color: #3d2417;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.comic-section-heading h2 span {
  color: #b60012;
}

.comic-section-heading > p:not(.comic-kicker) {
  max-width: 720px;
  margin: 16px auto 0;
  color: #4b3024;
  font-size: 1.15rem;
  font-weight: 700;
}

.comic-panels {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.comic-panel {
  min-height: 560px;
  padding: 16px 16px 24px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(202, 124, 23, 0.64);
  border-radius: 26px 22px 28px 20px;
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.86), transparent 30%),
    linear-gradient(180deg, rgba(255, 251, 239, 0.9), rgba(255, 243, 215, 0.8));
  box-shadow: 0 18px 38px rgba(75, 42, 18, 0.12);
  opacity: 0;
  transform: translateY(38px) rotate(-0.6deg);
  transition: opacity 560ms ease, transform 560ms ease, box-shadow 220ms ease;
}

.comic-panel:nth-child(2) {
  border-color: rgba(87, 128, 48, 0.62);
  transform: translateY(38px) rotate(0.5deg);
}

.comic-panel:nth-child(3) {
  border-color: rgba(201, 55, 45, 0.62);
  transform: translateY(38px) rotate(-0.3deg);
}

.comic-panel::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(84, 47, 24, 0.22);
  border-radius: 22px 18px 24px 17px;
  pointer-events: none;
}

.comic-panel.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.comic-panel:hover,
.comic-panel:focus-visible {
  box-shadow: 0 24px 48px rgba(75, 42, 18, 0.16);
}

.comic-ink-splash {
  width: 138px;
  height: 118px;
  position: absolute;
  left: -24px;
  top: -18px;
  opacity: 0.32;
  background:
    radial-gradient(circle at 35% 45%, rgba(214, 160, 47, 0.55), transparent 18%),
    radial-gradient(circle at 60% 28%, rgba(214, 160, 47, 0.36), transparent 20%),
    radial-gradient(circle at 72% 68%, rgba(115, 138, 57, 0.32), transparent 16%);
  filter: blur(0.4px);
}

.comic-panel-bubble {
  position: absolute;
  left: 50%;
  top: 22px;
  z-index: 3;
  opacity: 0;
  transform: translate(-50%, 14px) scale(0.88) rotate(-2deg);
  transition: opacity 420ms ease, transform 420ms ease;
}

.comic-panel.is-speaking .comic-panel-bubble,
.comic-panel:hover .comic-panel-bubble,
.comic-panel:focus-visible .comic-panel-bubble {
  opacity: 1;
  transform: translate(-50%, 0) scale(1) rotate(0deg);
}

.comic-artboard {
  height: 292px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 68% 30%, rgba(255,255,255,0.72), transparent 28%),
    radial-gradient(circle at 32% 72%, rgba(214,160,47,0.2), transparent 28%),
    linear-gradient(135deg, rgba(255,247,225,0.9), rgba(249,225,180,0.62));
}

.comic-artboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(77, 45, 24, 0.1) 0.8px, transparent 0.8px);
  background-size: 8px 8px;
  opacity: 0.42;
  mix-blend-mode: multiply;
}

.comic-placeholder {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 190px;
  height: 238px;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 16px rgba(80, 43, 17, 0.18));
}

.comic-placeholder::before,
.comic-placeholder::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.comic-placeholder::before {
  width: 72px;
  height: 72px;
  top: 18px;
  border-radius: 50%;
  background: #d9a071;
  box-shadow: inset 0 -8px 0 rgba(131, 65, 34, 0.12);
}

.comic-placeholder::after {
  width: 152px;
  height: 148px;
  bottom: 0;
  border-radius: 52% 48% 12px 12px;
  background: linear-gradient(160deg, #d27a2b, #f5c85e);
}

.character-partner::after {
  background: linear-gradient(160deg, #5d8d36, #d7c178);
}

.character-buyer::after {
  background: linear-gradient(160deg, #cb4537, #f1a35d);
}

.comic-product-set,
.comic-box-stack,
.comic-map-pin {
  position: absolute;
  z-index: 2;
}

.comic-product-set {
  left: 42px;
  right: 42px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.comic-product-set span,
.comic-box-stack span {
  display: block;
  border-radius: 9px 9px 5px 5px;
  background: linear-gradient(160deg, #b60012, #e2a239);
  box-shadow: 0 10px 14px rgba(80, 43, 17, 0.14);
}

.comic-product-set span:nth-child(1) { width: 52px; height: 78px; background: linear-gradient(160deg, #1f6f43, #d89b32); }
.comic-product-set span:nth-child(2) { width: 58px; height: 92px; }
.comic-product-set span:nth-child(3) { width: 50px; height: 74px; background: linear-gradient(160deg, #7a2b20, #f1c86c); }

.comic-box-stack {
  right: 30px;
  bottom: 26px;
  width: 112px;
  height: 108px;
}

.comic-box-stack span {
  position: absolute;
  width: 76px;
  height: 44px;
  background: linear-gradient(160deg, #c99b55, #f2d28b);
}

.comic-box-stack span:nth-child(1) { left: 4px; bottom: 0; }
.comic-box-stack span:nth-child(2) { right: 2px; bottom: 34px; }
.comic-box-stack span:nth-child(3) { left: 20px; bottom: 68px; }

.comic-map-pin {
  right: 46px;
  top: 76px;
  width: 72px;
  height: 72px;
  border-radius: 50% 50% 50% 0;
  background: #d9463d;
  transform: rotate(-45deg);
  box-shadow: 0 12px 16px rgba(80, 43, 17, 0.16);
}

.comic-map-pin::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: #fff6df;
}

.comic-panel-copy {
  position: relative;
  z-index: 2;
  padding: 0 16px;
  text-align: center;
}

.comic-panel-icon {
  width: 76px;
  height: 76px;
  margin: -58px auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d98b18;
  color: #ffffff;
  font-size: 2rem;
  box-shadow: 0 12px 24px rgba(80, 43, 17, 0.16);
}

.comic-panel-icon.red { background: #d9463d; }
.comic-panel-partner .comic-panel-icon { background: #4f7e2f; }

.comic-panel h3 {
  margin: 0;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  color: #c26c09;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 1.12;
}

.comic-panel-partner h3 { color: #4f7e2f; }
.comic-panel-nearby h3 { color: #c90018; }

.comic-panel-copy p {
  max-width: 300px;
  margin: 12px auto 0;
  color: #3f2a22;
  font-size: 1rem;
  line-height: 1.45;
}

.comic-panel-cta {
  min-height: 50px;
  margin-top: 22px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #df8c12;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(171, 96, 11, 0.18);
}

.comic-panel-cta.green { background: #4f7e2f; }
.comic-panel-cta.red { background: #d9463d; }

.comic-trust-strip {
  width: min(1120px, 100%);
  margin: 36px auto 0;
  padding: 18px 24px;
  border: 1px solid rgba(214, 160, 47, 0.42);
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  background: rgba(255, 251, 239, 0.76);
  box-shadow: 0 14px 28px rgba(75, 42, 18, 0.08);
  color: #3f2a22;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

@keyframes comicBubbleIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

/* Comic speech bubble refinement */
.comic-bubble {
  padding: 13px 20px 15px;
  border: 2.4px solid rgba(31, 22, 17, 0.92);
  border-radius: 50% 48% 52% 47% / 46% 52% 45% 54%;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.96), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 235, 0.94));
  box-shadow:
    0 8px 0 rgba(255, 255, 255, 0.3) inset,
    0 10px 16px rgba(65, 38, 20, 0.13);
  outline: 1px solid rgba(31, 22, 17, 0.18);
  outline-offset: -6px;
}

.comic-bubble::before,
.comic-bubble::after {
  content: "";
  position: absolute;
  background: inherit;
  pointer-events: none;
}

.comic-bubble::before {
  width: 30px;
  height: 24px;
  right: 30px;
  bottom: -15px;
  border-right: 2.4px solid rgba(31, 22, 17, 0.92);
  border-bottom: 2.4px solid rgba(31, 22, 17, 0.92);
  border-radius: 0 0 28px 0;
  transform: rotate(38deg) skewY(18deg);
  box-shadow: none;
}

.comic-bubble::after {
  width: 11px;
  height: 11px;
  right: 18px;
  bottom: -31px;
  border: 2.2px solid rgba(31, 22, 17, 0.9);
  border-radius: 50%;
  background: rgba(255, 250, 235, 0.95);
}

.hero-bubble-one {
  border-radius: 48% 54% 50% 46% / 50% 44% 56% 48%;
}

.hero-bubble-two {
  border-radius: 54% 46% 49% 53% / 43% 53% 47% 55%;
}

.hero-bubble-three,
.comic-panel-bubble {
  border-radius: 52% 47% 54% 45% / 45% 55% 44% 56%;
}

.hero-bubble-three::before {
  left: 34px;
  right: auto;
  transform: rotate(-20deg) skewY(-14deg);
  border-right: 0;
  border-left: 2.4px solid rgba(31, 22, 17, 0.92);
}

.hero-bubble-three::after {
  left: 18px;
  right: auto;
}

.comic-panel-bubble::before {
  left: 50%;
  right: auto;
  transform: translateX(-30%) rotate(38deg) skewY(16deg);
}

.comic-panel-bubble::after {
  left: calc(50% + 28px);
  right: auto;
}

.comic-bubble span {
  margin-left: 4px;
  color: #c90018;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Integrated comic bubble tails */
.comic-bubble {
  overflow: visible;
  border-radius: 999px 940px 980px 920px / 760px 840px 780px 860px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 239, 0.98));
  isolation: isolate;
}

.comic-bubble::before {
  width: 34px;
  height: 30px;
  right: 34px;
  bottom: -13px;
  z-index: -1;
  border: 2.4px solid rgba(31, 22, 17, 0.92);
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 26px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 239, 0.98));
  transform: rotate(38deg) skewY(10deg);
  box-shadow: 4px 6px 10px rgba(65, 38, 20, 0.08);
}

.comic-bubble::after {
  width: 34px;
  height: 18px;
  right: 36px;
  bottom: -2px;
  z-index: 1;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 239, 0.98));
}

.hero-bubble-three::before {
  left: 34px;
  right: auto;
  border-right: 0;
  border-left: 2.4px solid rgba(31, 22, 17, 0.92);
  border-radius: 0 0 0 26px;
  transform: rotate(-38deg) skewY(-10deg);
}

.hero-bubble-three::after {
  left: 36px;
  right: auto;
}

.comic-panel-bubble::before {
  left: 50%;
  right: auto;
  bottom: -13px;
  transform: translateX(-42%) rotate(38deg) skewY(10deg);
}

.comic-panel-bubble::after {
  left: calc(50% - 12px);
  right: auto;
  bottom: -2px;
}

.hero-bubble-one::before,
.hero-bubble-two::before {
  right: 30px;
}

.hero-bubble-one::after,
.hero-bubble-two::after {
  right: 32px;
}

/* Moving text inside comic bubbles */
.comic-bubble .bubble-line {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  animation: comicBubbleTextWalk 2.8s ease-in-out infinite;
  will-change: transform;
}

.hero-bubble-two .bubble-line,
.comic-panel:nth-child(2) .bubble-line {
  animation-delay: -0.7s;
}

.hero-bubble-three .bubble-line,
.comic-panel:nth-child(3) .bubble-line {
  animation-delay: -1.3s;
}

@keyframes comicBubbleTextWalk {
  0%, 100% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
}

/* Marquee text inside comic bubbles */
.comic-bubble .bubble-line {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 2;
  animation: none !important;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.comic-bubble .bubble-text-track {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  animation: comicBubbleTextMarquee 7s linear infinite;
  will-change: transform;
}

.hero-bubble-two .bubble-text-track,
.comic-panel:nth-child(2) .bubble-text-track {
  animation-delay: -1.6s;
}

.hero-bubble-three .bubble-text-track,
.comic-panel:nth-child(3) .bubble-text-track {
  animation-delay: -3.1s;
}

.comic-bubble .bubble-text-track > span {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@keyframes comicBubbleTextMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 15px));
  }
}

/* Comic panel image assets */
.comic-panel .comic-artboard {
  background: rgba(255, 248, 231, 0.74);
}

.comic-panel-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: relative;
  z-index: 1;
  filter: saturate(1.04) contrast(1.02);
}

.comic-panel .comic-placeholder,
.comic-panel .comic-product-set,
.comic-panel .comic-box-stack,
.comic-panel .comic-map-pin {
  display: none;
}

.comic-panel-food .comic-panel-image,
.comic-panel-partner .comic-panel-image,
.comic-panel-nearby .comic-panel-image {
  object-position: center center;
}

/* Comic card bubble refinement */
.comic-panel {
  overflow: visible;
}

.comic-panel::before {
  z-index: 0;
}

.comic-panel .comic-artboard,
.comic-panel .comic-panel-copy {
  position: relative;
  z-index: 1;
}

.comic-panel-bubble {
  top: -36px;
  left: 50%;
  width: clamp(188px, 18vw, 260px);
  max-width: min(78%, 260px);
  padding: 14px 20px 16px;
  z-index: 8;
  border: 2.5px solid rgba(42, 27, 18, 0.96);
  border-radius: 55% 45% 53% 47% / 46% 56% 44% 54%;
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 244, 0.99), rgba(255, 248, 229, 0.98));
  box-shadow:
    0 6px 0 rgba(70, 43, 20, 0.08),
    0 0 0 1px rgba(120, 76, 35, 0.08) inset,
    3px 3px 0 rgba(70, 43, 20, 0.12);
}

.comic-panel-bubble::before {
  width: 36px;
  height: 34px;
  left: 34%;
  right: auto;
  bottom: -22px;
  z-index: -1;
  border: 2.5px solid rgba(42, 27, 18, 0.96);
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 30px 0;
  background: linear-gradient(135deg, rgba(255, 253, 244, 0.99), rgba(255, 248, 229, 0.98));
  transform: rotate(36deg) skewY(12deg);
  box-shadow: 3px 3px 0 rgba(70, 43, 20, 0.1);
}

.comic-panel-bubble::after {
  width: 40px;
  height: 22px;
  left: calc(34% + 5px);
  right: auto;
  bottom: -6px;
  z-index: 1;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 253, 244, 0.99), rgba(255, 248, 229, 0.98));
  transform: rotate(-8deg);
}

.comic-panel-bubble .bubble-line {
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.comic-panel-bubble .bubble-text-track {
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: 0.96rem;
  line-height: 1.12;
  color: #2b1b13;
  font-weight: 800;
}

.comic-panel:nth-child(2) .comic-panel-bubble {
  top: -42px;
  transform-origin: 48% 100%;
  rotate: -1deg;
}

.comic-panel:nth-child(3) .comic-panel-bubble {
  top: -40px;
  rotate: 1.3deg;
}

/* Restore comic card image and bubble treatment */
.comic-panel {
  overflow: hidden;
}

.comic-panel-bubble {
  top: 22px;
  left: 50%;
  width: auto;
  max-width: 230px;
  padding: 14px 18px 16px;
  z-index: 3;
  border: 2.4px solid rgba(31, 22, 17, 0.92);
  border-radius: 999px 940px 980px 920px / 760px 840px 780px 860px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 239, 0.98));
  box-shadow: 0 8px 18px rgba(65, 38, 18, 0.14);
  rotate: 0deg;
}

.comic-panel-bubble::before {
  width: 34px;
  height: 30px;
  left: 50%;
  right: auto;
  bottom: -13px;
  z-index: -1;
  border: 2.4px solid rgba(31, 22, 17, 0.92);
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 28px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 239, 0.98));
  transform: translateX(-42%) rotate(38deg) skewY(10deg);
  box-shadow: none;
}

.comic-panel-bubble::after {
  width: 34px;
  height: 18px;
  left: calc(50% - 12px);
  right: auto;
  bottom: -2px;
  z-index: 1;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 239, 0.98));
  transform: none;
}

.comic-panel:nth-child(2) .comic-panel-bubble,
.comic-panel:nth-child(3) .comic-panel-bubble {
  top: 22px;
  rotate: 0deg;
}

.comic-panel .comic-artboard {
  padding: 10px;
  background: rgba(255, 248, 231, 0.74);
}

.comic-panel-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 12px;
  filter: saturate(1.04) contrast(1.02);
}

/* Tighten comic card vertical composition */
.comic-panel .comic-artboard {
  height: 314px;
  margin-top: -16px;
  margin-bottom: 0;
  padding: 8px;
}

.comic-panel-image {
  object-fit: contain;
  object-position: center top;
}

.comic-panel-copy {
  transform: translateY(-18px);
}

.comic-panel-icon {
  margin-top: -50px;
  margin-bottom: 12px;
}

.comic-panel-copy p {
  margin-top: 8px;
}

.comic-panel-cta {
  margin-top: 16px;
}

/* Comic heading brand logos */
.comic-kicker-logo,
.comic-title-with-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.comic-inline-logo {
  display: inline-block;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

.comic-inline-logo-small {
  height: 42px;
  transform: translateY(2px);
}

.comic-inline-logo-official {
  height: clamp(58px, 7vw, 92px);
  margin-left: 4px;
  transform: translateY(8px);
}

.comic-title-with-logo {
  row-gap: 0;
}

/* Desktop hero and comic heading tuning */
@media (min-width: 721px) {
  .hero-branding {
    width: min(545px, 39vw);
    left: max(86px, 8.2vw);
    top: 44px;
  }

  .hero-official-logo {
    width: clamp(132px, 10.8vw, 190px);
    margin-bottom: 14px;
  }

  .hero-headline-art {
    width: min(100%, 545px);
  }

  .hero-subtitle {
    max-width: 475px;
    margin-top: 20px;
    font-size: clamp(1.42rem, 1.45vw, 1.8rem);
    line-height: 1.34;
  }

  .hero-subtitle::before {
    width: 250px;
    height: 5px;
  }

  .comic-section-heading {
    width: min(1040px, 100%);
  }

  .comic-kicker-logo {
    display: none;
  }

  .comic-title-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    line-height: 0.98;
  }

  .comic-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 18px;
    white-space: nowrap;
  }

  .comic-title-brand-line {
    margin-top: 4px;
  }

  .comic-inline-logo-brand {
    height: clamp(76px, 8.4vw, 128px);
    transform: translateY(8px);
  }

  .comic-section-heading > p:not(.comic-kicker) {
    max-width: 820px;
    margin-top: 28px;
    font-size: clamp(1.34rem, 1.55vw, 1.72rem);
    line-height: 1.35;
  }

  .comic-trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Fourth comic card: Happy itu Liburan */
.comic-panel-holiday {
  border-color: rgba(211, 128, 20, 0.62);
}

.comic-panel-holiday h3 {
  color: #d27a0f;
}

.comic-panel-icon.orange,
.comic-panel-cta.orange {
  background: #df8a12;
}

.comic-vacation-scene {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.86), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(239, 163, 45, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(255, 246, 219, 0.86), rgba(238, 204, 146, 0.68));
}

.comic-vacation-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(83, 52, 24, 0.12) 0.8px, transparent 0.8px);
  background-size: 7px 7px;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.vacation-sun {
  width: 72px;
  height: 72px;
  position: absolute;
  right: 34px;
  top: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd36a 0 45%, rgba(255, 198, 70, 0.35) 46% 72%, transparent 73%);
}

.vacation-mountain {
  position: absolute;
  bottom: 74px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 12px 10px rgba(98, 82, 44, 0.14));
}

.mountain-one {
  width: 260px;
  height: 160px;
  left: -28px;
  background: linear-gradient(145deg, #88a95d, #d8b65a 72%);
}

.mountain-two {
  width: 230px;
  height: 138px;
  right: -20px;
  background: linear-gradient(145deg, #5f8f55, #caa348 76%);
}

.vacation-road {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 180px;
  height: 142px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(187, 120, 42, 0.34), rgba(120, 74, 32, 0.18));
  transform: translateX(-50%) perspective(120px) rotateX(38deg);
}

.vacation-sign {
  min-width: 142px;
  padding: 10px 14px;
  position: absolute;
  left: 26px;
  top: 62px;
  border: 2px solid rgba(121, 70, 30, 0.76);
  border-radius: 8px 10px 7px 11px;
  background: rgba(255, 235, 172, 0.86);
  color: #a93420;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-weight: 900;
  text-align: center;
  box-shadow: 4px 6px 0 rgba(112, 70, 31, 0.12);
  transform: rotate(-2deg);
}

.vacation-sign::after {
  content: "";
  width: 8px;
  height: 78px;
  position: absolute;
  left: 50%;
  top: 100%;
  background: rgba(121, 70, 30, 0.62);
  transform: translateX(-50%);
}

.vacation-bag {
  width: 88px;
  height: 108px;
  position: absolute;
  right: 46px;
  bottom: 34px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(155deg, #d10018, #f1a21a);
  box-shadow: 0 16px 18px rgba(91, 45, 21, 0.18);
}

.vacation-bag::before {
  content: "";
  width: 42px;
  height: 24px;
  position: absolute;
  left: 50%;
  top: -18px;
  border: 6px solid #8f3320;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  transform: translateX(-50%);
}

.vacation-bag::after {
  content: "Happy";
  position: absolute;
  left: 50%;
  top: 38px;
  color: #fff5c9;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: 1rem;
  font-weight: 900;
  transform: translateX(-50%) rotate(-6deg);
}

.vacation-pin {
  width: 54px;
  height: 54px;
  position: absolute;
  left: 50%;
  top: 112px;
  border-radius: 50% 50% 50% 0;
  background: #d9463d;
  transform: translateX(-50%) rotate(-45deg);
  box-shadow: 0 12px 16px rgba(91, 45, 21, 0.16);
}

.vacation-pin::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: #fff6de;
  transform: translate(-50%, -50%);
}

@media (min-width: 721px) {
  .comic-panels {
    width: min(1440px, 100%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .comic-panel:nth-child(4) {
    transform: translateY(24px) rotate(0.35deg);
  }

  .comic-panel:nth-child(4).is-visible {
    transform: translateY(0) rotate(0deg);
  }
}

/* Story cards: consistent comic panel geometry */
.comic-panels {
  margin-top: 48px;
}

.comic-panel,
.comic-panel:nth-child(2),
.comic-panel:nth-child(3),
.comic-panel:nth-child(4),
.comic-panel.is-visible,
.comic-panel:nth-child(4).is-visible {
  opacity: 1 !important;
  transform: none !important;
}

.comic-panel {
  overflow: visible;
  padding-top: 14px;
}

.comic-panel::before {
  z-index: 1;
}

.comic-panel .comic-artboard,
.comic-panel .comic-holiday-artboard,
.comic-panel .comic-panel-copy {
  position: relative;
  z-index: 2;
}

.comic-panel .comic-artboard,
.comic-panel .comic-holiday-artboard {
  margin-top: 0;
}

.comic-panel .comic-panel-bubble {
  top: -34px;
  left: 50%;
  z-index: 8;
  max-width: 220px;
  transform: translate(-50%, 14px) scale(0.88) rotate(-2deg);
}

.comic-panel.is-speaking .comic-panel-bubble,
.comic-panel:hover .comic-panel-bubble,
.comic-panel:focus-visible .comic-panel-bubble {
  transform: translate(-50%, 0) scale(1) rotate(0deg);
}

/* Interactive happy gates: final comic direction */
.hero-happy-gates {
  width: min(1060px, calc(100% - 48px));
  position: absolute;
  left: 50%;
  bottom: 72px;
  z-index: 20;
  transform: translateX(-50%);
  pointer-events: auto;
}

.hero-gates-kicker {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 12px;
  padding: 6px 14px 8px;
  border: 2px solid rgba(45, 28, 16, 0.78);
  border-radius: 54% 46% 58% 42% / 46% 58% 42% 54%;
  background: rgba(255, 251, 239, 0.88);
  color: #3a2015;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 10px 18px rgba(75, 42, 18, 0.13);
}

.hero-gates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.happy-gate {
  min-height: 104px;
  padding: 12px 12px 14px;
  position: relative;
  border: 2px solid rgba(65, 36, 20, 0.72);
  border-radius: 23px 18px 26px 16px;
  display: grid;
  align-content: end;
  gap: 4px;
  overflow: visible;
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.9), transparent 28%),
    radial-gradient(circle at 88% 100%, rgba(214, 160, 47, 0.24), transparent 38%),
    rgba(255, 248, 229, 0.9);
  color: #2f1712;
  box-shadow: 0 16px 28px rgba(66, 36, 14, 0.14);
  transform: rotate(var(--gate-tilt, -0.4deg));
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.happy-gate::before,
.happy-gate::after,
.happy-gate-art {
  pointer-events: none;
}

.happy-gate::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 0;
  border: 1px dashed rgba(66, 36, 14, 0.22);
  border-radius: 19px 14px 22px 13px;
  pointer-events: none;
}

.happy-gate::after {
  content: "";
  width: 82px;
  height: 74px;
  position: absolute;
  right: -3px;
  top: -2px;
  z-index: 0;
  border-radius: 54% 46% 42% 58% / 48% 52% 44% 56%;
  background-image:
    linear-gradient(180deg, rgba(255, 248, 229, 0), rgba(255, 248, 229, 0.52)),
    var(--gate-art);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.52;
  filter: saturate(1.05);
  transform: rotate(5deg);
}

.happy-gate:hover,
.happy-gate:focus-visible,
.happy-gate.is-selected {
  box-shadow: 0 20px 34px rgba(66, 36, 14, 0.2);
  filter: saturate(1.08);
  transform: translateY(-6px) rotate(0deg);
}

.happy-gate-mark,
.happy-gate strong,
.happy-gate-note {
  position: relative;
  z-index: 1;
}

.happy-gate-mark {
  width: fit-content;
  padding: 3px 8px;
  border: 1px solid rgba(47, 23, 18, 0.28);
  border-radius: 48% 52% 50% 50% / 56% 42% 58% 44%;
  background: rgba(255, 255, 255, 0.64);
  color: #9b4f0d;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.happy-gate strong {
  color: #3a2015;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(0.94rem, 1.05vw, 1.12rem);
  font-weight: 900;
  line-height: 1.08;
}

.happy-gate-note {
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #5b3a2a;
  font-size: 0.78rem;
  font-weight: 800;
}

.happy-gate-bubble {
  width: max-content;
  max-width: min(210px, 92vw);
  padding: 9px 12px 10px;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 4;
  border: 2px solid rgba(45, 28, 16, 0.82);
  border-radius: 53% 47% 58% 42% / 45% 55% 43% 57%;
  background:
    radial-gradient(circle at 25% 22%, rgba(255,255,255,0.86), transparent 30%),
    rgba(255, 251, 239, 0.96);
  color: #2f1712;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 10px 12px rgba(79, 45, 20, 0.13));
  transform: translate(-50%, 10px) scale(0.86) rotate(-2deg);
  transition: opacity 180ms ease, transform 220ms ease;
}

.happy-gate-bubble::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: calc(50% - 6px);
  bottom: -16px;
  border-right: 2px solid rgba(45, 28, 16, 0.82);
  border-bottom: 2px solid rgba(45, 28, 16, 0.82);
  border-radius: 0 0 18px 0;
  background: rgba(255, 251, 239, 0.96);
  transform: rotate(38deg) skewY(16deg);
}

.happy-gate:hover .happy-gate-bubble,
.happy-gate:focus-visible .happy-gate-bubble,
.happy-gate.is-selected .happy-gate-bubble {
  opacity: 1;
  transform: translate(-50%, 0) scale(1) rotate(0deg);
}

.happy-gate-partner {
  --gate-tilt: 0.45deg;
  --gate-art: url("../assets/images/comic/happy-karena-usaha.png");
  border-color: rgba(87, 128, 48, 0.68);
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.9), transparent 28%),
    radial-gradient(circle at 88% 100%, rgba(87, 128, 48, 0.2), transparent 38%),
    rgba(248, 251, 230, 0.9);
}

.happy-gate-nearby {
  --gate-tilt: -0.25deg;
  --gate-art: url("../assets/images/comic/happy-itu-dekat.png");
  border-color: rgba(201, 55, 45, 0.68);
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.9), transparent 28%),
    radial-gradient(circle at 88% 100%, rgba(201, 55, 45, 0.18), transparent 38%),
    rgba(255, 244, 232, 0.9);
}

.happy-gate-holiday {
  --gate-tilt: 0.35deg;
  --gate-art: url("../assets/images/comic/happy-itu-liburan.png");
  border-color: rgba(211, 128, 20, 0.72);
}

.happy-gate-food {
  --gate-art: url("../assets/images/comic/happy-di-meja-makan.png");
}

.happy-gate-partner .happy-gate-mark { color: #4f7e2f; }
.happy-gate-nearby .happy-gate-mark { color: #c90018; }
.happy-gate-holiday .happy-gate-mark { color: #d27a0f; }

.comic-panel .comic-panel-bubble {
  opacity: 0 !important;
  pointer-events: none;
  border-radius: 51% 49% 57% 43% / 44% 56% 42% 58%;
}

.comic-panel:hover .comic-panel-bubble,
.comic-panel:focus-visible .comic-panel-bubble,
.comic-panel.is-selected .comic-panel-bubble {
  opacity: 1 !important;
  transform: translate(-50%, 0) scale(1) rotate(0deg) !important;
}

.comic-panel {
  border-radius: 24px 18px 28px 17px;
}

.comic-panel:nth-child(2) {
  border-radius: 18px 25px 19px 28px;
}

.comic-panel:nth-child(3) {
  border-radius: 27px 17px 24px 20px;
}

.comic-panel:nth-child(4) {
  border-radius: 19px 28px 18px 25px;
}

.hero-slider .hero-comic-bubbles {
  display: none !important;
}

.hero-happy-gates {
  display: none !important;
}

.hero-character-bubbles {
  position: absolute;
  inset: 0;
  z-index: 22;
  pointer-events: none;
}

.hero-character-hotspot {
  --bubble-left: 50%;
  --bubble-top: -78px;
  --bubble-rotate: -1deg;
  width: var(--hotspot-w);
  height: var(--hotspot-h);
  position: absolute;
  left: var(--hotspot-left);
  top: var(--hotspot-top);
  border: 0;
  padding: 0;
  display: block;
  background: transparent;
  color: inherit;
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.hero-character-hotspot.is-selected,
.hero-character-hotspot:focus-visible {
  z-index: 18;
}

.hero-character-hotspot::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 52% 48% 54% 46% / 48% 54% 46% 52%;
  background: rgba(255, 255, 255, 0.01);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.hero-character-hotspot:hover::before,
.hero-character-hotspot:focus-visible::before,
.hero-character-hotspot.is-selected::before {
  background: rgba(255, 251, 239, 0.18);
  box-shadow: 0 0 0 2px rgba(61, 36, 23, 0.1), 0 12px 28px rgba(72, 43, 18, 0.1);
}

.character-bubble {
  width: max-content;
  max-width: 232px;
  padding: 13px 18px 15px;
  position: absolute;
  left: var(--bubble-left);
  top: var(--bubble-top);
  z-index: 5;
  border: 2px solid rgba(45, 28, 16, 0.82);
  border-radius: 58% 42% 55% 45% / 50% 53% 47% 50%;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.88), transparent 30%),
    rgba(255, 251, 239, 0.96);
  color: #2f1712;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 10px 12px rgba(79, 45, 20, 0.13));
  transform: translate(-50%, 10px) scale(0.86) rotate(var(--bubble-rotate));
  transition: opacity 180ms ease, transform 220ms ease;
}

.character-bubble::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: var(--tail-left, 50%);
  bottom: -16px;
  border-right: 2px solid rgba(45, 28, 16, 0.82);
  border-bottom: 2px solid rgba(45, 28, 16, 0.82);
  border-radius: 0 0 18px 0;
  background: rgba(255, 251, 239, 0.96);
  transform: rotate(38deg) skewY(16deg);
}

.hero-character-guide .character-bubble::before {
  left: -9px;
  bottom: 18px;
  border-right: 0;
  border-left: 2px solid rgba(45, 28, 16, 0.82);
  transform: rotate(43deg) skewY(-16deg);
}

.character-bubble > span,
.character-bubble strong,
.character-bubble small {
  position: relative;
  z-index: 2;
  display: block;
}

.character-bubble strong {
  color: #bd0016;
  font-size: 0.96rem;
  line-height: 1.12;
}

.character-bubble small {
  margin-top: 4px;
  color: #3f2a22;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.28;
}

.hero-character-hotspot:hover .character-bubble,
.hero-character-hotspot:focus-visible .character-bubble,
.hero-character-hotspot.is-selected .character-bubble {
  opacity: 1;
  transform: translate(-50%, 0) scale(1) rotate(0deg);
}

.hero-character-guide {
  --hotspot-left: 65%;
  --hotspot-top: 23%;
  --hotspot-w: 11%;
  --hotspot-h: 18%;
  --bubble-left: 52%;
  --bubble-top: -58px;
}

.hero-character-mom {
  --hotspot-left: 80%;
  --hotspot-top: 39%;
  --hotspot-w: 12%;
  --hotspot-h: 24%;
  --bubble-left: 52%;
  --bubble-top: -70px;
}

.hero-character-boy {
  --hotspot-left: 51%;
  --hotspot-top: 34%;
  --hotspot-w: 11%;
  --hotspot-h: 22%;
  --bubble-left: 44%;
  --bubble-top: -66px;
}

.hero-character-frontman {
  --hotspot-left: 61%;
  --hotspot-top: 51%;
  --hotspot-w: 14%;
  --hotspot-h: 24%;
  --bubble-left: 50%;
  --bubble-top: -76px;
}

.hero-character-girl {
  --hotspot-left: 72%;
  --hotspot-top: 45%;
  --hotspot-w: 9%;
  --hotspot-h: 18%;
  --bubble-left: 54%;
  --bubble-top: -68px;
}

/* Stable symbol and trust icon polish - 20260710 */
.nav-cta-icon {
  width: 17px;
  height: 13px;
  margin-left: 10px;
  border: 2px solid currentColor;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  transform: rotate(2deg);
  flex: 0 0 auto;
}

.nav-cta-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -8px;
  width: 7px;
  height: 6px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.hero-heart-draw {
  position: absolute;
  left: min(86%, 420px);
  top: 36%;
  width: clamp(34px, 3.4vw, 58px);
  aspect-ratio: 64 / 56;
  pointer-events: none;
  z-index: 3;
}

.hero-heart-draw svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-heart-draw path {
  fill: none;
  stroke: #b80618;
  stroke-width: 5.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 190;
  stroke-dashoffset: 190;
  filter: drop-shadow(0 2px 0 rgba(255, 244, 207, 0.7));
  animation: heartDrawLoop 3.4s ease-in-out infinite;
}

@keyframes heartDrawLoop {
  0%, 12% { opacity: 0; stroke-dashoffset: 190; }
  18% { opacity: 1; }
  58%, 76% { opacity: 1; stroke-dashoffset: 0; }
  100% { opacity: 0; stroke-dashoffset: -190; }
}

.comic-trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.comic-trust-strip .trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  line-height: 1.2;
  text-align: left;
}

.trust-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(77, 44, 14, 0.1);
}

.trust-halal .trust-icon {
  border: 2px solid #6f3eb2;
  color: #6f3eb2;
  border-radius: 50%;
  font-size: 0.54rem;
  letter-spacing: 0.04em;
}

.trust-halal .trust-icon strong,
.trust-halal .trust-icon small,
.trust-bpom .trust-icon strong {
  display: block;
  line-height: 1;
}

.trust-halal .trust-icon small {
  font-size: 0.52rem;
  margin-top: -10px;
}

.trust-bpom .trust-icon {
  border: 2px solid #2f72b8;
  color: #2f72b8;
  border-radius: 12px 20px 12px 20px;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.trust-bpom .trust-icon::after {
  content: "";
  width: 22px;
  height: 11px;
  border-left: 4px solid #4b8b2c;
  border-bottom: 4px solid #4b8b2c;
  transform: rotate(-45deg);
  position: absolute;
  bottom: 7px;
  right: 8px;
}

.trust-hygiene .trust-icon {
  border: 2px solid #3585a8;
  color: #3585a8;
}

.trust-hygiene .trust-icon::before {
  content: "";
  position: absolute;
  left: 11px;
  bottom: 10px;
  width: 24px;
  height: 18px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 2px;
}

.trust-hygiene .trust-icon::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 9px;
  width: 4px;
  height: 13px;
  background: currentColor;
  box-shadow: 8px 3px 0 currentColor, 16px -2px 0 currentColor;
  opacity: 0.82;
}

.trust-pack .trust-icon {
  border: 2px solid #df8c12;
  color: #df8c12;
}

.trust-pack .trust-icon::before {
  content: "";
  width: 26px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 4px 4px 7px 7px;
  position: absolute;
  bottom: 8px;
}

.trust-pack .trust-icon::after {
  content: "";
  width: 14px;
  height: 8px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  position: absolute;
  top: 8px;
}

@media (min-width: 721px) and (max-width: 1100px) {
  .hero-heart-draw {
    left: 77%;
    top: 35%;
    width: 46px;
  }
}

@media (max-width: 720px) {
  .hero-heart-draw {
    left: 74%;
    top: 34%;
    width: 36px;
  }

  .comic-trust-strip .trust-item {
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }

  .trust-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}
/* End stable symbol and trust icon polish - 20260710 */
/* Hero bubble and hand-drawn heart correction - 20260710 */
.hero-slider .hero-comic-bubbles {
  display: block !important;
  z-index: 21;
}

.hero-heart-draw {
  transform: rotate(-15deg);
  transform-origin: 50% 55%;
}

@media (min-width: 1101px) {
  .hero-heart-draw {
    left: min(88%, 430px);
    top: 43%;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .hero-heart-draw {
    left: 83%;
    top: 43%;
  }
}

@media (max-width: 720px) {
  .hero-slider .hero-comic-bubbles {
    display: block !important;
  }

  .hero-bubble {
    font-size: 0.68rem;
    padding: 8px 13px 9px;
    max-width: 138px;
  }

  .hero-bubble-one {
    left: 30.5% !important;
    top: 33.8% !important;
  }

  .hero-bubble-two {
    left: 52% !important;
    top: 28.7% !important;
  }

  .hero-bubble-three {
    right: 3.8% !important;
    top: 31.8% !important;
  }

  .hero-heart-draw {
    left: 83%;
    top: 47%;
    width: 35px;
  }
}
/* End hero bubble and hand-drawn heart correction - 20260710 */
/* Character bubbles and watercolor trust final - 20260710 */
.hero-slider .hero-comic-bubbles {
  display: none !important;
}

.hero-character-guide {
  display: none !important;
}

.hero-character-hotspot {
  outline: none;
  touch-action: manipulation;
}

.hero-character-hotspot::before {
  inset: 4%;
  background: transparent;
}

.hero-character-hotspot:hover::before,
.hero-character-hotspot:focus-visible::before,
.hero-character-hotspot.is-selected::before {
  background: rgba(255, 251, 239, 0.08);
  box-shadow: 0 0 0 2px rgba(61, 36, 23, 0.08), 0 10px 24px rgba(72, 43, 18, 0.08);
}

.character-bubble {
  max-width: 198px;
  padding: 12px 18px 14px;
  border: 2.5px solid rgba(35, 22, 15, 0.88);
  border-radius: 52% 48% 56% 44% / 44% 56% 45% 55%;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.96), transparent 28%),
    radial-gradient(circle at 78% 88%, rgba(216, 165, 62, 0.11), transparent 34%),
    rgba(255, 252, 241, 0.98);
  font-size: 0.84rem;
  filter: drop-shadow(0 10px 10px rgba(64, 35, 16, 0.14));
}

.character-bubble::before {
  width: 22px;
  height: 24px;
  left: var(--tail-left, 50%);
  bottom: -15px;
  border-color: rgba(35, 22, 15, 0.88);
  border-radius: 0 0 18px 0;
  transform: rotate(39deg) skewY(14deg);
}

.character-bubble::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: calc(var(--tail-left, 50%) + 20px);
  bottom: -30px;
  border: 2px solid rgba(35, 22, 15, 0.65);
  border-radius: 50%;
  background: rgba(255, 252, 241, 0.94);
}

.character-bubble > span {
  position: relative;
  z-index: 2;
  display: block;
}

.hero-character-hotspot:hover .character-bubble,
.hero-character-hotspot:focus-visible .character-bubble,
.hero-character-hotspot.is-selected .character-bubble {
  opacity: 1;
  transform: translate(-50%, 0) scale(1) rotate(var(--bubble-rotate));
}

.hero-character-mom {
  --bubble-rotate: 1deg;
}

.hero-character-boy {
  --bubble-rotate: -1.5deg;
}

.hero-character-frontman {
  --bubble-rotate: 1.2deg;
}

.hero-character-girl {
  --bubble-rotate: -1deg;
}

.hero-heart-draw {
  transform: rotate(15deg);
  transform-origin: 52% 56%;
}

.trust-icon {
  display: none !important;
}

.trust-watercolor-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 58px;
  filter: drop-shadow(0 8px 12px rgba(78, 45, 14, 0.12));
}

.comic-trust-strip .trust-item {
  align-items: center;
}

@media (min-width: 1101px) {
  .hero-character-mom {
    --hotspot-left: 81.5%;
    --hotspot-top: 34.8%;
    --hotspot-w: 5.8%;
    --hotspot-h: 8.2%;
    --bubble-left: 56%;
    --bubble-top: -96px;
    --tail-left: 48%;
  }

  .hero-character-boy {
    --hotspot-left: 16.4%;
    --hotspot-top: 28.8%;
    --hotspot-w: 6.4%;
    --hotspot-h: 8.2%;
    --bubble-left: 30%;
    --bubble-top: -120px;
    --tail-left: 52%;
  }

  .hero-character-frontman {
    --hotspot-left: 52.8%;
    --hotspot-top: 41.2%;
    --hotspot-w: 7%;
    --hotspot-h: 9.2%;
    --bubble-left: 54%;
    --bubble-top: -104px;
    --tail-left: 50%;
  }

  .hero-character-girl {
    --hotspot-left: 70.1%;
    --hotspot-top: 41.4%;
    --hotspot-w: 5.2%;
    --hotspot-h: 8%;
    --bubble-left: 80%;
    --bubble-top: -96px;
    --tail-left: 0%;
  }

  .hero-heart-draw {
    left: min(89%, 440px);
    top: 48%;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .character-bubble {
    max-width: 188px;
    font-size: 0.78rem;
  }

  .hero-character-mom {
    --hotspot-left: 82.5%;
    --hotspot-top: 38.8%;
    --hotspot-w: 7%;
    --hotspot-h: 5.6%;
    --bubble-left: 44%;
    --bubble-top: -90px;
    --tail-left: 58%;
  }

  .hero-character-boy {
    --hotspot-left: 48.8%;
    --hotspot-top: 37.8%;
    --hotspot-w: 7%;
    --hotspot-h: 5.4%;
    --bubble-left: 52%;
    --bubble-top: -88px;
    --tail-left: 50%;
  }

  .hero-character-frontman {
    --hotspot-left: 61.6%;
    --hotspot-top: 41.6%;
    --hotspot-w: 7.4%;
    --hotspot-h: 5.6%;
    --bubble-left: 50%;
    --bubble-top: -94px;
    --tail-left: 50%;
  }

  .hero-character-girl {
    --hotspot-left: 71%;
    --hotspot-top: 40.6%;
    --hotspot-w: 6%;
    --hotspot-h: 5.2%;
    --bubble-left: 78%;
    --bubble-top: -88px;
    --tail-left: 38%;
  }

  .hero-heart-draw {
    left: 84%;
    top: 49%;
  }
}

@media (max-width: 720px) {
  .character-bubble {
    max-width: 154px;
    padding: 9px 12px 11px;
    font-size: 0.66rem;
  }

  .hero-character-mom {
    --hotspot-left: 78.2%;
    --hotspot-top: 36.8%;
    --hotspot-w: 9.2%;
    --hotspot-h: 5.8%;
    --bubble-left: 40%;
    --bubble-top: -78px;
    --tail-left: 56%;
  }

  .hero-character-boy {
    --hotspot-left: 22.5%;
    --hotspot-top: 36.2%;
    --hotspot-w: 10.2%;
    --hotspot-h: 6%;
    --bubble-left: 58%;
    --bubble-top: -78px;
    --tail-left: 44%;
  }

  .hero-character-frontman {
    --hotspot-left: 47.4%;
    --hotspot-top: 40.6%;
    --hotspot-w: 11.4%;
    --hotspot-h: 6.1%;
    --bubble-left: 55%;
    --bubble-top: -86px;
    --tail-left: 50%;
  }

  .hero-character-girl {
    --hotspot-left: 62.8%;
    --hotspot-top: 39%;
    --hotspot-w: 8.2%;
    --hotspot-h: 5.6%;
    --bubble-left: 86%;
    --bubble-top: -80px;
    --tail-left: 34%;
  }

  .hero-heart-draw {
    left: 83.8%;
    top: 50%;
  }

  .trust-watercolor-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
}
/* End character bubbles and watercolor trust final - 20260710 */