/* ============================================
   PANDA TEA CO. — KEMITRAAN PAGE STYLES
   ============================================ */

body.kemitraan-page {
  /* No hero-padding-top override needed; .k-hero handles it */
}

/* ============================================
   K-HERO — Spectacular hero
   ============================================ */
.k-hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(0, 102, 217, 0.12), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(255, 200, 69, 0.18), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, #FFF1DA 100%);
}

.k-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.k-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.k-blob-1 {
  width: 500px; height: 500px;
  background: var(--panda-blue);
  opacity: 0.15;
  top: -150px; right: -100px;
  animation: blobFloat 20s ease-in-out infinite;
}
.k-blob-2 {
  width: 400px; height: 400px;
  background: var(--yellow);
  opacity: 0.3;
  bottom: -100px; left: -100px;
  animation: blobFloat 24s ease-in-out infinite reverse;
}
.k-blob-3 {
  width: 300px; height: 300px;
  background: var(--red);
  opacity: 0.08;
  top: 35%; left: 45%;
  animation: blobFloat 18s ease-in-out infinite;
}

.k-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 217, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 217, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Floating decoratives */
.k-float {
  position: absolute;
  z-index: 1;
  animation: kFloat 8s ease-in-out infinite;
}
.k-float-1 { width: 56px; top: 22%; left: 6%; animation-delay: 0s; }
.k-float-2 { top: 18%; right: 10%; animation-delay: 1.5s; }
.k-float-3 { width: 24px; height: 24px; bottom: 30%; left: 8%; animation-delay: 3s; }

@keyframes kFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.k-float svg { width: 100%; height: auto; filter: drop-shadow(0 8px 16px rgba(0, 102, 217, 0.2)); }

.k-seal {
  width: 60px;
  height: 76px;
  background: var(--red);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cn);
  font-size: 34px;
  border-radius: 6px 6px 30px 30px;
  box-shadow: 0 12px 24px rgba(217, 39, 30, 0.4);
  transform: rotate(-10deg);
}

.k-dot {
  width: 100%;
  height: 100%;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(255, 200, 69, 0.5);
}

.k-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Urgency badge with countdown */
.k-urgency {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 14px;
  background: linear-gradient(135deg, #FFE9E7 0%, #FFDADA 100%);
  border: 1.5px solid var(--red);
  border-radius: 100px;
  margin-bottom: 28px;
  max-width: max-content;
  box-shadow: 0 8px 24px rgba(217, 39, 30, 0.15);
}
.k-pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.k-pulse-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.4;
  animation: urgencyPulse 1.5s ease-out infinite;
}
@keyframes urgencyPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.4); opacity: 0; }
}
.k-urgency-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--red);
  white-space: nowrap;
}
.k-countdown {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 900;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--red);
  color: var(--cream);
  padding: 4px 8px;
  border-radius: 6px;
  min-width: 36px;
  line-height: 1;
}
.cd-num {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}
.cd-lbl {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 2px;
  opacity: 0.85;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.cd-sep {
  color: var(--red);
  font-weight: 900;
  font-size: 18px;
  align-self: flex-start;
  margin-top: 2px;
}

/* Hero title */
.k-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.k-hero-title .line {
  display: block;
  overflow: hidden;
}
.k-hero-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--panda-blue);
  background: linear-gradient(180deg, transparent 65%, rgba(255, 200, 69, 0.5) 65%, rgba(255, 200, 69, 0.5) 90%, transparent 90%);
  padding: 0 4px;
}

.k-hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--charcoal-soft);
  max-width: 580px;
  margin-bottom: 36px;
}
.k-hero-sub strong { color: var(--charcoal); font-weight: 700; }
.k-hero-sub strong.hl {
  color: var(--red);
  background: rgba(255, 200, 69, 0.25);
  padding: 2px 8px;
  border-radius: 6px;
}

.k-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  align-items: center;
}

/* GLOW BUTTON — the WAH CTA */
/* ============================================
   PRIMARY CTA BUTTON — Refined, no spinning
   Inspired by modern coffee brands (Natsu-style):
   subtle scale, soft shadow, smooth gradient transition
   ============================================ */
.btn-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--panda-blue);
  color: var(--cream);
  border-radius: 100px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.45s ease,
    background 0.45s ease;
  box-shadow:
    0 8px 20px rgba(0, 102, 217, 0.25),
    0 2px 6px rgba(0, 102, 217, 0.15);
  animation: btnSoftPulse 3s ease-in-out infinite;
}

@keyframes btnSoftPulse {
  0%, 100% {
    box-shadow:
      0 8px 20px rgba(0, 102, 217, 0.25),
      0 2px 6px rgba(0, 102, 217, 0.15);
  }
  50% {
    box-shadow:
      0 10px 28px rgba(0, 102, 217, 0.4),
      0 0 0 6px rgba(0, 102, 217, 0.12);
  }
}

/* Shimmer sweep — soft white reflection moving across button */
.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%
  );
  animation: btnShimmer 3.5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes btnShimmer {
  0% { left: -100%; }
  50% { left: 120%; }
  100% { left: 120%; }
}

.btn-glow:hover {
  background: var(--charcoal);
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.25),
    0 0 0 4px rgba(0, 102, 217, 0.18);
  animation-play-state: paused;
}

.btn-glow:active {
  transform: translateY(-1px) scale(1);
  transition: transform 0.15s;
}

/* Hide unused legacy spans (still in HTML for compat) */
.btn-glow-bg { display: none; }

.btn-glow-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.btn-glow-inner svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s var(--ease-bounce);
}
.btn-glow:hover .btn-glow-inner svg {
  transform: translateX(6px);
}

.btn-glow-large {
  padding: 22px 38px;
  font-size: 17px;
}
.btn-glow-large .btn-glow-inner svg { width: 22px; height: 22px; }

/* Ghost button kemitraan version */
.btn-ghost-k {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s var(--ease-bounce);
}
.btn-ghost-k svg { width: 18px; height: 18px; }
.btn-ghost-k:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-3px);
}

/* Trust strip */
.k-trust {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.65);
  border: 1.5px solid rgba(0, 102, 217, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  flex-wrap: wrap;
}
.k-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.k-trust-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--panda-blue);
  line-height: 1;
}
.k-trust-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--charcoal-soft);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.k-trust-sep {
  width: 1px;
  height: 32px;
  background: rgba(0, 102, 217, 0.2);
}

/* Hero mascot */
.k-hero-mascot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 580px;
}
.k-mascot-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 102, 217, 0.18), transparent 65%),
    radial-gradient(circle at 30% 30%, rgba(255, 200, 69, 0.25), transparent 60%);
  transform: translate(-50%, -50%);
  animation: haloRotate 30s linear infinite;
}
.k-mascot-halo::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 102, 217, 0.3);
  animation: haloRotate 40s linear infinite reverse;
}
.k-mascot-halo::after {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 2px dotted rgba(255, 200, 69, 0.4);
}

.k-hero-mascot img {
  position: relative;
  width: 90%;
  max-width: 460px;
  z-index: 3;
  animation: floatMain 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(0, 102, 217, 0.25));
}

.k-mascot-tag {
  position: absolute;
  top: 12%;
  right: 8%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--yellow);
  color: var(--charcoal);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 24px rgba(255, 200, 69, 0.5);
  z-index: 4;
  transform: rotate(8deg);
  animation: tagWiggle 3s ease-in-out infinite;
}
@keyframes tagWiggle {
  0%, 100% { transform: rotate(8deg); }
  50% { transform: rotate(12deg) scale(1.05); }
}
.k-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ============================================
   WHY JOIN
   ============================================ */
.k-why {
  padding: 130px 0;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 102, 217, 0.1);
  border-radius: 28px;
  padding: 36px 28px;
  transition: all 0.5s var(--ease);
}
.why-card:hover {
  transform: translateY(-8px);
  background: var(--cream);
  border-color: var(--panda-blue);
  box-shadow: 0 24px 48px rgba(0, 102, 217, 0.12);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--panda-blue);
}
.why-icon svg { width: 32px; height: 32px; }
.icon-1 { background: rgba(0, 102, 217, 0.1); }
.icon-2 { background: rgba(255, 200, 69, 0.18); color: #E5A300; }
.icon-3 { background: rgba(217, 39, 30, 0.1); color: var(--red); }
.icon-4 { background: rgba(0, 102, 217, 0.1); }
.icon-5 { background: rgba(255, 200, 69, 0.18); color: #E5A300; }
.icon-6 { background: rgba(0, 102, 217, 0.1); }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

/* ============================================
   MARKET OPPORTUNITY — Target & Size
   ============================================ */
.k-market {
  position: relative;
  padding: 130px 0;
  background: linear-gradient(180deg, #FDF6E4 0%, #FBEFD8 50%, #FDF6E4 100%);
  overflow: hidden;
}

.k-market-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.km-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 217, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 217, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.km-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
}
.km-glow-1 {
  width: 480px;
  height: 480px;
  background: var(--panda-blue);
  top: 8%;
  right: -120px;
  animation: blobFloat 22s ease-in-out infinite;
}
.km-glow-2 {
  width: 380px;
  height: 380px;
  background: var(--yellow);
  bottom: 10%;
  left: -100px;
  animation: blobFloat 26s ease-in-out infinite reverse;
}

.k-market .container { position: relative; z-index: 2; }

/* Big stats cards */
.market-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 50px 0 80px;
}

.ms-card {
  background: var(--cream);
  border: 1.5px solid rgba(0, 102, 217, 0.12);
  border-radius: 24px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-bounce);
}
.ms-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 102, 217, 0.15);
  border-color: var(--panda-blue);
}
.ms-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--panda-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.ms-card:hover::before { transform: scaleX(1); }

.ms-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 102, 217, 0.1);
  color: var(--panda-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.ms-icon svg { width: 26px; height: 26px; }
.ms-2 .ms-icon { background: rgba(255, 200, 69, 0.18); color: #B8821A; }
.ms-3 .ms-icon { background: rgba(217, 39, 30, 0.1); color: var(--red); }
.ms-4 .ms-icon { background: rgba(0, 102, 217, 0.1); color: var(--panda-blue); }

.ms-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 900;
  line-height: 1;
  color: var(--charcoal);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.ms-num [data-count] { color: var(--panda-blue); }
.ms-unit {
  font-size: 0.65em;
  color: var(--panda-blue);
  font-weight: 800;
  margin-left: 2px;
}
.ms-2 .ms-num [data-count],
.ms-2 .ms-unit { color: #B8821A; }
.ms-3 .ms-num [data-count],
.ms-3 .ms-unit { color: var(--red); }
.ms-4 .ms-num,
.ms-4 .ms-num [data-count] { color: var(--charcoal); }
.ms-4 .ms-unit { color: var(--charcoal); }

.ms-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.ms-meta {
  font-size: 12.5px;
  color: var(--charcoal-soft);
  line-height: 1.5;
}

/* Chart grid */
.market-charts {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}

.chart-card {
  background: var(--cream);
  border: 1.5px solid rgba(0, 102, 217, 0.1);
  border-radius: 28px;
  padding: 36px;
  position: relative;
}
.chart-head { margin-bottom: 28px; }
.chart-head h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.chart-head p {
  font-size: 13.5px;
  color: var(--charcoal-soft);
  line-height: 1.55;
}

/* Bar chart */
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bar-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 14px;
}
.bar-year {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--charcoal-soft);
}
.bar-year-focus {
  color: var(--charcoal);
  font-size: 16px;
}
.bar-track {
  background: rgba(0, 102, 217, 0.06);
  height: 36px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--bar-color);
  border-radius: 12px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  box-shadow: 0 4px 12px rgba(0, 102, 217, 0.15);
}
.bar-chart.animate .bar-fill { width: var(--bar-width, 0%); }
.bar-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.4s 0.8s;
}
.bar-chart.animate .bar-val { opacity: 1; }
.bar-fill-focus {
  background: linear-gradient(90deg, #FFC845 0%, #FFB627 100%);
  box-shadow: 0 6px 16px rgba(255, 200, 69, 0.5);
}
.bar-fill-focus .bar-val { color: var(--charcoal); }
.bar-tag {
  position: absolute;
  right: -110px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s 1.3s;
  letter-spacing: 0.02em;
}
.bar-chart.animate .bar-tag { opacity: 1; }

.chart-legend {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed rgba(0, 102, 217, 0.15);
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--charcoal-soft);
}
.legend-item .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot-blue { background: var(--panda-blue); }
.dot-yellow { background: var(--yellow); }

/* Donut chart */
.donut-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.donut-svg {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}
.donut-seg {
  transition: stroke-dashoffset 1.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.donut-svg.animate .donut-seg {
  stroke-dashoffset: var(--final-offset, 0);
}
.donut-center-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  fill: var(--panda-blue);
  letter-spacing: -0.02em;
}
.donut-center-lbl {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  fill: var(--charcoal-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.donut-legend {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dl-item {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 10px;
}
.dl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dl-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.dl-text strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--charcoal);
}
.dl-text span {
  font-size: 11.5px;
  color: var(--charcoal-soft);
  margin-top: 2px;
}
.dl-pct {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  color: var(--panda-blue);
}

/* Target personas */
.personas-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.personas-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--panda-blue);
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.persona-card {
  background: var(--cream);
  border: 1.5px solid rgba(0, 102, 217, 0.1);
  border-radius: 22px;
  padding: 26px 22px;
  position: relative;
  transition: all 0.45s var(--ease-bounce);
}
.persona-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 102, 217, 0.12);
  border-color: var(--panda-blue);
}
.persona-emoji {
  font-size: 36px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}
.persona-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.persona-age {
  font-size: 12px;
  font-weight: 700;
  color: var(--panda-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.persona-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--charcoal-soft);
  margin-bottom: 14px;
}
.persona-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  padding: 5px 10px;
  background: rgba(255, 200, 69, 0.18);
  color: #8C5E00;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* Market insight closing */
.market-insight {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 24px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 22px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.market-insight::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--panda-blue), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}
.mi-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 200, 69, 0.2);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mi-icon svg { width: 26px; height: 26px; }
.mi-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.mi-text strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.mi-text span {
  font-size: 14px;
  color: rgba(255, 247, 234, 0.75);
  line-height: 1.5;
}
.mi-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--yellow);
  color: var(--charcoal);
  border-radius: 100px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s var(--ease-bounce);
  position: relative;
  z-index: 1;
}
.mi-cta svg { width: 16px; height: 16px; transition: transform 0.3s; }
.mi-cta:hover {
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 200, 69, 0.3);
}
.mi-cta:hover svg { transform: translateX(4px); }

/* ============================================
   MENU — Repeat order driver
   ============================================ */
.k-menu {
  position: relative;
  padding: 130px 0;
  background:
    radial-gradient(ellipse at top right, rgba(255, 200, 69, 0.15), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(0, 102, 217, 0.08), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, #FBEFD8 100%);
  overflow: hidden;
}

.km-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.km-leaf {
  position: absolute;
  animation: kFloat 8s ease-in-out infinite;
}
.km-leaf svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.08));
}
.km-leaf-1 { width: 50px; top: 8%; left: 5%; animation-delay: 0s; opacity: 0.5; }
.km-leaf-2 { width: 36px; top: 22%; right: 7%; animation-delay: 2s; opacity: 0.6; transform: rotate(25deg); }

.km-flower {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  animation: kFloat 6s ease-in-out infinite;
}
.km-flower::before,
.km-flower::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--yellow);
}
.km-flower::after {
  transform: rotate(45deg) scale(0.6);
  background: var(--yellow);
  border: none;
}
.km-flower-1 { bottom: 18%; left: 8%; animation-delay: 1s; }
.km-flower-2 { top: 60%; right: 6%; animation-delay: 3.5s; }

.k-menu .container { position: relative; z-index: 2; }

/* Repeat-order proof stats strip */
.km-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 36px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(0, 102, 217, 0.12);
  border-radius: 100px;
  max-width: max-content;
  margin: 36px auto 60px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.kp-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.kp-item strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--panda-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.kp-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--charcoal-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.kp-divider {
  width: 1px;
  height: 32px;
  background: rgba(0, 102, 217, 0.2);
}

/* Products grid — featured first, then 4 cards */
.km-products {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
  margin-bottom: 80px;
}
.kmp-card {
  position: relative;
  background: var(--cream);
  border: 1.5px solid rgba(0, 102, 217, 0.12);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease-bounce);
}
.kmp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0, 102, 217, 0.15);
  border-color: var(--panda-blue);
}
.kmp-featured {
  grid-row: span 2;
  background: linear-gradient(165deg, #FFF7EA 0%, #FBEFD8 100%);
  border-color: var(--yellow);
  border-width: 2px;
}
.kmp-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 5px 12px;
  background: var(--cream);
  border: 1.5px solid var(--panda-blue);
  color: var(--panda-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0, 102, 217, 0.15);
}
.kmp-tag-yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--charcoal);
}
.kmp-img {
  position: relative;
  flex: 1;
  min-height: 200px;
  overflow: hidden;
  background: rgba(0, 102, 217, 0.04);
}
.kmp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.kmp-card:hover .kmp-img img { transform: scale(1.06); }

.kmp-featured .kmp-img {
  min-height: 320px;
}

.kmp-body {
  padding: 22px 24px 24px;
}
.kmp-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.15;
}
.kmp-featured .kmp-body h3 { font-size: 28px; }
.kmp-body p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--charcoal-soft);
  margin-bottom: 14px;
}
.kmp-featured .kmp-body p { font-size: 15px; }
.kmp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.kmp-pill {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 102, 217, 0.08);
  color: var(--panda-blue);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.kmp-featured .kmp-pill {
  background: var(--yellow);
  color: var(--charcoal);
}
.kmp-stat {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--charcoal-soft);
}

/* 4 series menu architecture */
.km-series {
  margin-bottom: 70px;
}
.km-series-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 28px;
  color: var(--charcoal);
}
.km-series-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.kms-card {
  display: grid;
  grid-template-columns: 56px 1fr 28px;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(0, 102, 217, 0.12);
  border-radius: 18px;
  transition: all 0.4s var(--ease);
}
.kms-card:hover {
  background: var(--cream);
  border-color: var(--panda-blue);
  transform: translateX(4px);
  box-shadow: 0 10px 24px rgba(0, 102, 217, 0.1);
}
.kms-card:hover .kms-arrow {
  color: var(--panda-blue);
  transform: translateX(4px);
}
.kms-num {
  width: 44px;
  height: 44px;
  background: var(--panda-blue);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
}
.kms-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.kms-info strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.kms-info span {
  font-size: 12.5px;
  color: var(--charcoal-soft);
  line-height: 1.4;
}
.kms-arrow {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--charcoal-soft);
  transition: all 0.3s var(--ease);
}

/* Why this menu works — reasons grid */
.km-reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.kmr-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--cream);
  border: 1.5px solid rgba(0, 102, 217, 0.1);
  border-radius: 20px;
  transition: all 0.4s var(--ease);
}
.kmr-item:hover {
  border-color: var(--panda-blue);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 102, 217, 0.1);
}
.kmr-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 200, 69, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.kmr-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kmr-text strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.kmr-text span {
  font-size: 13.5px;
  color: var(--charcoal-soft);
  line-height: 1.55;
}

/* ============================================
   PRICING
   ============================================ */
.k-pricing {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--cream) 0%, #FBEFD8 100%);
  position: relative;
  overflow: hidden;
}
.pricing-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 102, 217, 0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.6;
}
.k-pricing .container { position: relative; z-index: 2; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--cream);
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 70px rgba(0, 102, 217, 0.15);
  border-color: rgba(0, 102, 217, 0.2);
}

.pricing-featured {
  background: linear-gradient(165deg, #0066D9 0%, #004FA8 100%);
  border-color: var(--yellow);
  color: var(--cream);
  transform: scale(1.04);
  z-index: 3;
  box-shadow: 0 30px 70px rgba(0, 102, 217, 0.3);
}
.pricing-featured:hover {
  transform: translateY(-12px) scale(1.04);
}

.featured-ribbon {
  position: absolute;
  top: 24px;
  right: -36px;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 6px 50px;
  transform: rotate(35deg);
  z-index: 5;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.pricing-head {
  padding: 32px 32px 0;
}
.pricing-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0, 102, 217, 0.1);
  color: var(--panda-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 12px;
}
.pricing-tag-yellow {
  background: var(--yellow);
  color: var(--charcoal);
}
.pricing-featured .pricing-tag {
  background: rgba(255, 247, 234, 0.18);
  color: var(--yellow);
}

.pricing-head h3 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-spec {
  font-size: 13px;
  color: var(--charcoal-soft);
  font-weight: 600;
}
.pricing-featured .pricing-spec { color: rgba(255, 247, 234, 0.7); }

.pricing-image {
  margin: 24px 24px 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
}
.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.pricing-card:hover .pricing-image img { transform: scale(1.05); }

.pricing-body {
  padding: 24px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.price-stack {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-featured .price-stack {
  background: rgba(255, 247, 234, 0.1);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.price-label {
  color: var(--charcoal-soft);
  font-weight: 600;
}
.pricing-featured .price-label { color: rgba(255, 247, 234, 0.75); }

.price-original .price-value {
  color: var(--charcoal-soft);
  font-weight: 700;
}
.price-original s { opacity: 0.6; }
.pricing-featured .price-original .price-value { color: rgba(255, 247, 234, 0.7); }

.price-subsidy { position: relative; flex-wrap: wrap; row-gap: 4px; }
.price-subsidy .price-label { display: inline-flex; align-items: center; gap: 6px; }
.price-subsidy .price-value {
  font-weight: 800;
  color: var(--charcoal);
}
.pricing-featured .price-subsidy .price-value { color: var(--cream); }
.subsidy-tag {
  display: inline-block;
  background: var(--red);
  color: var(--cream);
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(217, 39, 30, 0.3);
  white-space: nowrap;
  transform: rotate(-3deg);
}

.price-final {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 2px dashed rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricing-featured .price-final { border-top-color: rgba(255, 247, 234, 0.2); }

.final-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--panda-blue);
}
.pricing-featured .final-label { color: var(--yellow); }

.final-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--panda-blue);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing-featured .final-value { color: var(--cream); }

.final-meta {
  font-size: 12px;
  color: var(--charcoal-soft);
  font-weight: 600;
}
.pricing-featured .final-meta { color: rgba(255, 247, 234, 0.7); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal-soft);
  line-height: 1.45;
}
.pricing-features .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--panda-blue);
  color: var(--cream);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-featured .pricing-features li { color: rgba(255, 247, 234, 0.9); }
.pricing-featured .pricing-features .check {
  background: var(--yellow);
  color: var(--charcoal);
}

.btn-pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--panda-blue);
  color: var(--cream);
  border-radius: 100px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-bounce);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
.btn-pricing svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn-pricing:hover {
  background: var(--panda-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 102, 217, 0.35);
}
.btn-pricing:hover svg { transform: translateX(5px); }
.btn-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-pricing:hover::before { transform: translateX(100%); }

.btn-pricing-featured {
  background: var(--yellow);
  color: var(--charcoal);
}
.btn-pricing-featured:hover {
  background: var(--cream);
  color: var(--panda-blue);
  box-shadow: 0 14px 28px rgba(255, 200, 69, 0.4);
}

.pricing-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--charcoal-soft);
  margin-top: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  padding: 16px 24px;
  background: rgba(0, 102, 217, 0.05);
  border-radius: 14px;
}
.pricing-disclaimer strong { color: var(--red); }

/* ============================================
   PROCESS
   ============================================ */
.k-process {
  padding: 130px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.k-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 102, 217, 0.2), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 200, 69, 0.1), transparent 50%);
}
.k-process .container { position: relative; z-index: 2; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--panda-blue));
  opacity: 0.4;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.step-num {
  width: 64px;
  height: 64px;
  background: var(--yellow);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(255, 200, 69, 0.3);
  border: 4px solid var(--charcoal);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 13.5px;
  color: rgba(255, 247, 234, 0.7);
  line-height: 1.55;
}

/* ============================================
   PROMISE / TESTIMONIAL
   ============================================ */
.k-promise {
  padding: 80px 0;
  background: var(--cream);
}

.promise-card {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFF7EA 0%, #FBEFD8 100%);
  border: 2px solid rgba(0, 102, 217, 0.12);
  border-radius: 32px;
  padding: 60px 50px;
  position: relative;
  text-align: center;
}
.promise-quote-mark {
  position: absolute;
  top: 12px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--panda-blue);
  line-height: 1;
  font-weight: 900;
  opacity: 0.2;
}
.promise-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.35;
  color: var(--charcoal);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.promise-text em {
  font-style: italic;
  font-weight: 700;
  color: var(--panda-blue);
}
.promise-meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.promise-meta img {
  width: 60px;
  height: 60px;
  background: var(--cream);
  border: 2px solid var(--panda-blue);
  border-radius: 50%;
  padding: 4px;
}
.promise-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
}
.promise-meta span {
  font-size: 13px;
  color: var(--charcoal-soft);
}

/* ============================================
   FAQ
   ============================================ */
.k-faq {
  padding: 130px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item[open] {
  background: var(--cream);
  border-color: var(--panda-blue);
  box-shadow: 0 10px 28px rgba(0, 102, 217, 0.08);
}
.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--panda-blue);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s var(--ease-bounce);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--red);
}
.faq-body {
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal-soft);
}

/* ============================================
   FINAL CTA
   ============================================ */
.k-final-cta {
  padding: 80px 0 140px;
  background: var(--cream);
}

.final-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2C2C2C 100%);
  border-radius: 40px;
  padding: 80px 70px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  color: var(--cream);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.final-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.final-decor.d1 {
  width: 500px;
  height: 500px;
  background: var(--panda-blue);
  opacity: 0.3;
  top: -200px;
  right: -100px;
  animation: blobFloat 20s ease-in-out infinite;
}
.final-decor.d2 {
  width: 350px;
  height: 350px;
  background: var(--yellow);
  opacity: 0.15;
  bottom: -150px;
  left: 20%;
  animation: blobFloat 24s ease-in-out infinite reverse;
}

.final-content {
  position: relative;
  z-index: 2;
}
.final-content .eyebrow {
  background: rgba(255, 247, 234, 0.15);
  color: var(--yellow);
  display: inline-block;
}
.final-content h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.final-content h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--yellow);
  background: linear-gradient(180deg, transparent 65%, rgba(255, 200, 69, 0.25) 65%, rgba(255, 200, 69, 0.25) 90%, transparent 90%);
  padding: 0 6px;
}
.final-content p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
  opacity: 0.85;
}

/* Final CTA countdown */
.final-countdown-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: rgba(255, 247, 234, 0.08);
  border: 1.5px solid rgba(255, 200, 69, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 540px;
}
.final-cd-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}
.cd-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.cd-pulse-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.5;
  animation: urgencyPulse 1.5s ease-out infinite;
}
.final-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fcd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--yellow);
  color: var(--charcoal);
  padding: 8px 12px;
  border-radius: 10px;
  min-width: 56px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(255, 200, 69, 0.25);
}
.fcd-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.fcd-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 4px;
  opacity: 0.75;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.fcd-sep {
  color: var(--yellow);
  font-weight: 900;
  font-size: 22px;
  margin: 0 2px;
  opacity: 0.6;
}

/* ============================================
   9 BENEFITS BONUS BLOCK
   ============================================ */
.bonus-block {
  margin: 28px 0 32px;
  padding: 26px 28px 24px;
  background:
    linear-gradient(135deg, rgba(255, 200, 69, 0.08) 0%, rgba(0, 102, 217, 0.08) 100%),
    rgba(255, 247, 234, 0.04);
  border: 1.5px solid rgba(255, 200, 69, 0.35);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.bonus-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent 40%, rgba(255, 200, 69, 0.15) 50%, transparent 60%);
  transform: skewX(-20deg);
  animation: bonusSheen 5s ease-in-out infinite;
  animation-delay: 1.5s;
  pointer-events: none;
}
@keyframes bonusSheen {
  0%, 25% { left: -100%; }
  50%, 100% { left: 200%; }
}

.bonus-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  width: max-content;
  box-shadow: 0 6px 14px rgba(255, 200, 69, 0.35);
  animation: bonusBadgePulse 2.2s ease-in-out infinite;
}
@keyframes bonusBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.bonus-spark {
  display: inline-block;
  font-size: 14px;
  animation: bonusSpark 1.5s ease-in-out infinite;
}
@keyframes bonusSpark {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(20deg) scale(1.2); }
}
.bonus-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
}
.bonus-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--yellow);
}

.bonus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
}

.bonus-item {
  display: grid;
  grid-template-columns: 30px 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(255, 247, 234, 0.06);
  border: 1px solid rgba(255, 247, 234, 0.1);
  border-radius: 14px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.bonus-item:hover {
  background: rgba(255, 247, 234, 0.1);
  border-color: rgba(255, 200, 69, 0.4);
  transform: translateX(4px);
}
.bonus-hero {
  background: linear-gradient(135deg, rgba(255, 200, 69, 0.2) 0%, rgba(255, 200, 69, 0.08) 100%);
  border-color: var(--yellow);
  grid-column: span 2;
}
.bonus-hero:hover {
  background: linear-gradient(135deg, rgba(255, 200, 69, 0.28) 0%, rgba(255, 200, 69, 0.12) 100%);
  border-color: var(--yellow);
}

.bonus-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  color: var(--yellow);
  opacity: 0.7;
  letter-spacing: -0.02em;
}
.bonus-hero .bonus-num {
  font-size: 16px;
  opacity: 1;
}

.bonus-icon {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.bonus-text {
  font-size: 13.5px;
  color: var(--cream);
  line-height: 1.35;
  font-weight: 500;
}
.bonus-text strong {
  font-weight: 800;
  color: var(--yellow);
}
.bonus-hero .bonus-text {
  font-size: 15px;
}
.bonus-hero .bonus-text strong {
  color: var(--yellow);
  font-weight: 900;
}

.bonus-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  background: rgba(74, 222, 128, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.45);
  color: #6EE89A;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 100px;
  white-space: nowrap;
}
.bonus-tag-yellow {
  background: rgba(255, 200, 69, 0.18);
  border-color: rgba(255, 200, 69, 0.45);
  color: var(--yellow);
}
.bonus-hero .bonus-tag {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--charcoal);
  padding: 4px 11px;
  font-size: 10px;
  font-weight: 900;
}

.bonus-footnote {
  margin: 18px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 247, 234, 0.78);
  line-height: 1.4;
}
.bonus-footnote strong {
  color: var(--yellow);
  font-weight: 800;
}
.bonus-arrow {
  color: var(--yellow);
  font-weight: 900;
  font-size: 16px;
  animation: bonusArrow 1.5s ease-in-out infinite;
}
@keyframes bonusArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.final-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.final-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 247, 234, 0.7);
  margin: 0;
}
.online-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 12px #4ADE80;
}

.final-mascot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.final-mascot img {
  width: 100%;
  max-width: 280px;
  animation: floatGentle 4s ease-in-out infinite;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.4));
}

/* ============================================
   PARTNERS / GROWTOPIA GROUP
   ============================================ */
.k-partners {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at top, rgba(0, 102, 217, 0.08), transparent 60%),
    var(--cream);
  position: relative;
  overflow: hidden;
}

.partners-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.partners-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 14px;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.pb-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ADE80;
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.partners-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--charcoal);
}
.partners-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--panda-blue);
  background: linear-gradient(180deg, transparent 65%, rgba(255, 200, 69, 0.45) 65%, rgba(255, 200, 69, 0.45) 92%, transparent 92%);
  padding: 0 6px;
}
.partners-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--charcoal-soft);
  margin: 0;
}
.partners-sub strong {
  color: var(--charcoal);
  font-weight: 700;
}

/* The animated cross-fade frame */
/* Frameless 4-slide showcase — transparent PNG, no frame/border */
.partners-showcase {
  position: relative;
  max-width: 920px;
  margin: 0 auto 56px;
  aspect-ratio: 1 / 1;
  /* No background, no border, no shadow — fully frameless */
}

.ps-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  will-change: opacity, transform;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

/* 4-slide cycle — 16 second loop (3.5s visible + 0.5s fade each) */
.ps-slide-1 { animation: psCycle 16s ease-in-out infinite; animation-delay: 0s; }
.ps-slide-2 { animation: psCycle 16s ease-in-out infinite; animation-delay: -12s; }
.ps-slide-3 { animation: psCycle 16s ease-in-out infinite; animation-delay: -8s; }
.ps-slide-4 { animation: psCycle 16s ease-in-out infinite; animation-delay: -4s; }

@keyframes psCycle {
  0%   { opacity: 0; transform: scale(1.03); }
  3%   { opacity: 1; transform: scale(1); }
  22%  { opacity: 1; transform: scale(1); }
  28%  { opacity: 0; transform: scale(1.03); }
  100% { opacity: 0; transform: scale(1.03); }
}

/* Trust signal stats */
.partners-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 24px 38px;
  background: var(--cream);
  border: 1.5px solid rgba(0, 102, 217, 0.15);
  border-radius: 100px;
  max-width: max-content;
  margin: 0 auto;
  box-shadow: 0 14px 36px rgba(0, 102, 217, 0.08);
}
.ps-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.ps-item strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--panda-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ps-item span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--charcoal-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ps-divider {
  width: 1px;
  height: 32px;
  background: rgba(0, 102, 217, 0.2);
}

/* ============================================
   FLOATING CTA — Download Proposal
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: linear-gradient(135deg, var(--panda-blue) 0%, var(--panda-blue-dark) 100%);
  color: var(--cream);
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0, 102, 217, 0.4);
  transition: all 0.4s var(--ease-bounce);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: floatingCtaIn 0.6s var(--ease-bounce), floatingCtaPulse 3s ease-in-out 1s infinite;
}
@keyframes floatingCtaIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.8); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatingCtaPulse {
  0%, 100% { box-shadow: 0 16px 40px rgba(0, 102, 217, 0.4); }
  50% { box-shadow: 0 20px 50px rgba(0, 102, 217, 0.6), 0 0 0 8px rgba(0, 102, 217, 0.15); }
}
.floating-cta:hover {
  transform: translateY(-4px) scale(1.04);
  background: linear-gradient(135deg, var(--yellow) 0%, #FFA600 100%);
  color: var(--charcoal);
  animation: floatingCtaIn 0.4s var(--ease-bounce);
}
.fc-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 247, 234, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.fc-icon svg { width: 20px; height: 20px; }
.floating-cta:hover .fc-icon {
  background: var(--charcoal);
  color: var(--yellow);
  transform: rotate(360deg);
  transition: transform 0.6s;
}
.fc-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.fc-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.fc-text small {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.8;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.fc-pulse {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid var(--cream);
}
.fc-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.5;
  animation: urgencyPulse 1.5s ease-out infinite;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .k-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 50px; }
  .k-urgency { margin-left: auto; margin-right: auto; }
  .k-hero-sub { margin-left: auto; margin-right: auto; }
  .k-hero-cta { justify-content: center; }
  .k-trust { margin-left: auto; margin-right: auto; }
  .k-hero-mascot { height: 460px; width: 100%; max-width: 500px; margin: 0 auto; }
  .k-hero-mascot img { max-width: 380px; }
  .k-mascot-halo { width: 400px; height: 400px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 24px; }
  .pricing-featured { transform: scale(1); }
  .pricing-featured:hover { transform: translateY(-12px) scale(1); }

  .process-timeline { grid-template-columns: 1fr; gap: 24px; max-width: 480px; margin: 0 auto; }
  .process-timeline::before { display: none; }
  .process-step {
    text-align: left;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    align-items: start;
  }
  .step-num {
    margin: 0;
    width: 56px;
    height: 56px;
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 20px;
    border-width: 3px;
  }
  .process-step h3 { grid-column: 2; grid-row: 1; margin: 0; font-size: 18px; }
  .process-step p { grid-column: 2; grid-row: 2; margin: 0; font-size: 13.5px; }

  .final-card { grid-template-columns: 1fr; padding: 60px 40px; text-align: center; }
  .final-content p { margin-left: auto; margin-right: auto; }
  .final-cta-row { align-items: center; }
  .final-mascot img { max-width: 220px; }

  /* Bonus block — tablet */
  .bonus-block { text-align: left; padding: 24px 24px 22px; }
  .bonus-badge { margin-left: auto; margin-right: auto; }
  .bonus-head { align-items: center; text-align: center; }
  .bonus-title { text-align: center; }
  .bonus-footnote { justify-content: center; }

  /* Market section — tablet */
  .market-stats { grid-template-columns: repeat(2, 1fr); }
  .market-charts { grid-template-columns: 1fr; }
  .personas-grid { grid-template-columns: repeat(2, 1fr); }
  .market-insight { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 30px 28px; }
  .mi-icon { justify-self: center; }

  /* Menu section — tablet */
  .km-products {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .kmp-featured { grid-row: span 1; grid-column: span 2; }
  .kmp-featured .kmp-img { min-height: 240px; }
  .km-series-grid { grid-template-columns: 1fr; max-width: 540px; }
  .km-reasons { grid-template-columns: 1fr; max-width: 600px; }
  .km-proof { gap: 20px; padding: 20px 28px; }
  .kp-item strong { font-size: 20px; }

  /* Partners — tablet */
  .partners-stats { gap: 24px; padding: 22px 32px; }
  .ps-item strong { font-size: 24px; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 720px) {
  .k-hero { padding: 110px 0 60px; min-height: auto; }
  .k-urgency {
    flex-direction: column;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 22px;
  }
  .k-urgency-text { font-size: 10px; }
  .cd-unit { min-width: 30px; padding: 3px 6px; }
  .cd-num { font-size: 14px; }
  .cd-lbl { font-size: 7px; }

  .k-hero-title { font-size: 48px; }
  .k-hero-sub { font-size: 15px; }

  .k-hero-cta { flex-direction: column; width: 100%; }
  .k-hero-cta .btn-glow,
  .k-hero-cta .btn-ghost-k {
    width: 100%;
  }
  .btn-glow-inner { justify-content: center; width: 100%; }
  .btn-ghost-k { justify-content: center; }

  .k-trust { padding: 14px 18px; gap: 14px; width: 100%; justify-content: space-between; }
  .k-trust-num { font-size: 18px; }
  .k-trust-lbl { font-size: 9px; }
  .k-trust-sep { height: 24px; }

  .k-hero-mascot { height: 360px; }
  .k-hero-mascot img { max-width: 260px; }
  .k-mascot-halo { width: 320px; height: 320px; }
  .k-mascot-tag { font-size: 12px; padding: 8px 14px; top: 8%; right: 4%; }

  .k-float-1 { width: 36px; }
  .k-float-2 { transform: scale(0.7); }

  .k-why { padding: 80px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 30px 24px; }

  .k-pricing { padding: 80px 0; }
  .pricing-card { border-radius: 26px; }
  .pricing-head { padding: 28px 24px 0; }
  .pricing-head h3 { font-size: 32px; }
  .pricing-image { margin: 20px 20px 0; }
  .pricing-body { padding: 20px 24px 28px; gap: 20px; }
  .final-value { font-size: 30px; }
  .featured-ribbon { right: -40px; padding: 5px 46px; font-size: 10px; }

  .k-process { padding: 80px 0; }

  .promise-card { padding: 44px 28px; border-radius: 24px; }
  .promise-quote-mark { font-size: 80px; left: 16px; top: 4px; }
  .promise-text { font-size: 22px; }

  .k-faq { padding: 80px 0; }
  .faq-item summary { padding: 18px 20px; font-size: 16px; }
  .faq-icon { width: 28px; height: 28px; font-size: 20px; }
  .faq-body { padding: 0 20px 18px; font-size: 14px; }

  .k-final-cta { padding: 60px 0 120px; }
  .final-countdown-wrap { padding: 16px 18px; }
  .final-cd-label { font-size: 10px; }
  .fcd-unit { padding: 6px 8px; min-width: 44px; }
  .fcd-num { font-size: 20px; }
  .fcd-lbl { font-size: 8px; }
  .fcd-sep { font-size: 18px; }
  .final-card { padding: 50px 28px; border-radius: 28px; }
  .final-content h2 { font-size: 34px; }
  .final-content p { font-size: 15px; }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    padding: 12px 18px 12px 14px;
    justify-content: center;
  }
  .fc-icon { width: 34px; height: 34px; }
  .fc-text strong { font-size: 13px; }
  .fc-text small { font-size: 9px; }

  /* Market section — mobile */
  .k-market { padding: 80px 0; }
  .market-stats { grid-template-columns: 1fr; gap: 14px; margin: 36px 0 50px; }
  .ms-card { padding: 22px 18px; }
  .ms-num { font-size: 32px; }
  .market-charts { gap: 16px; margin-bottom: 50px; }
  .chart-card { padding: 26px 22px; border-radius: 22px; }
  .chart-head h3 { font-size: 22px; }
  .bar-row { grid-template-columns: 40px 1fr; gap: 10px; }
  .bar-year { font-size: 12px; }
  .bar-track { height: 30px; border-radius: 10px; }
  .bar-fill { border-radius: 10px; padding-right: 10px; }
  .bar-val { font-size: 11.5px; }
  .bar-tag { display: none; }
  .donut-wrap { gap: 18px; flex-direction: column; align-items: stretch; }
  .donut-svg { width: 160px; height: 160px; align-self: center; }
  .donut-legend { width: 100%; }
  .personas-grid { grid-template-columns: 1fr; gap: 14px; }
  .persona-card { padding: 22px 20px; }
  .market-insight { padding: 26px 22px; gap: 16px; }
  .mi-text strong { font-size: 16px; }
  .mi-text span { font-size: 13px; }
  .mi-cta { width: 100%; justify-content: center; }

  /* Menu section — mobile */
  .k-menu { padding: 80px 0; }
  .km-proof {
    flex-direction: column;
    gap: 16px;
    padding: 22px 28px;
    border-radius: 28px;
    margin: 28px auto 44px;
  }
  .kp-divider { width: 80%; height: 1px; }
  .km-products { grid-template-columns: 1fr; gap: 16px; margin-bottom: 50px; }
  .kmp-featured { grid-column: span 1; }
  .kmp-featured .kmp-img { min-height: 260px; }
  .kmp-img { min-height: 220px; }
  .kmp-body { padding: 18px 20px 22px; }
  .kmp-body h3 { font-size: 20px; }
  .kmp-featured .kmp-body h3 { font-size: 24px; }
  .km-series-title { font-size: 22px; }
  .km-series { margin-bottom: 50px; }
  .kms-card { padding: 14px 16px; gap: 12px; grid-template-columns: 44px 1fr 22px; }
  .kms-num { width: 38px; height: 38px; font-size: 14px; }
  .kms-info strong { font-size: 15px; }
  .kms-info span { font-size: 12px; }
  .km-reasons { gap: 14px; }
  .kmr-item { padding: 20px 22px; grid-template-columns: 44px 1fr; gap: 14px; }
  .kmr-icon { width: 44px; height: 44px; font-size: 22px; }
  .kmr-text strong { font-size: 15px; }
  .kmr-text span { font-size: 13px; }

  /* Bonus block — mobile */
  .bonus-block { padding: 22px 18px 20px; margin: 24px 0 28px; border-radius: 18px; }
  .bonus-title { font-size: 19px; }
  .bonus-list { grid-template-columns: 1fr; gap: 8px; }
  .bonus-hero { grid-column: span 1; }
  .bonus-item {
    grid-template-columns: 26px 24px 1fr auto;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
  }
  .bonus-num { font-size: 13px; }
  .bonus-icon { font-size: 16px; }
  .bonus-text { font-size: 13px; }
  .bonus-hero .bonus-text { font-size: 14px; }
  .bonus-tag { font-size: 9px; padding: 2px 7px; }
  .bonus-hero .bonus-tag { font-size: 9.5px; padding: 3px 9px; }
  .bonus-footnote { font-size: 12px; margin-top: 14px; text-align: left; }

  /* Partners section — mobile */
  .k-partners { padding: 70px 0; }
  .partners-head { margin-bottom: 32px; }
  .partners-badge { font-size: 10.5px; padding: 7px 14px 7px 12px; }
  .partners-title { font-size: 30px; }
  .partners-title br { display: none; }
  .partners-sub { font-size: 14px; }
  .partners-showcase { margin-bottom: 36px; }
  .partners-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 16px 12px;
    border-radius: 100px;
    width: 100%;
    max-width: 100%;
    justify-content: space-around;
  }
  .ps-divider { width: 1px; height: 36px; flex-shrink: 0; }
  .ps-item {
    flex: 1;
    min-width: 0;
    padding: 0 4px;
  }
  .ps-item strong { font-size: 19px; }
  .ps-item span {
    font-size: 9px;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.2;
    word-break: keep-all;
    white-space: normal;
  }
}
