/* =================================================================
   NOTA TEMUDUGA SPP & CoS 2026 — Stylesheet
   Ditulis semula bersih. Susunan:
   1. Reset & token   2. Asas       3. Layout & header berkongsi
   4. Butang          5. Topbar     6. Hero & module strip
   7. Stats           8. Problem    9. Contents
   10. For who        11. Testi     12. How it works
   13. Pricing        14. FAQ       15. Final CTA
   16. Responsif      17. Reduced motion
   ================================================================= */

/* =========================================================
   1. RESET & TOKEN
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Latar & permukaan */
  --bg: #f6f2ea;
  --surface: #ffffff;
  --surface-soft: #fff7ea;

  /* Teks */
  --ink: #161b24;
  --text: #1f2937;
  --muted: #6b7280;
  --text-2: #475569;
  --text-3: #94a3b8;

  /* Jenama */
  --primary: #ea7a08;
  --primary-dark: #b45309;
  --primary-soft: #fff1d6;
  --accent: #0d9488;
  --accent-soft: #d6f3ee;

  /* Aksen sokongan (lembut) */
  --blue-soft: #e6efff;
  --blue-soft-2: #cfe0ff;
  --green-soft: #e9fdf2;
  --green-soft-2: #d6f9e6;
  --pink-soft: #ffe6ef;
  --pink-soft-2: #ffd0e0;

  /* Garisan */
  --line: #ece1cf;
  --line-strong: #e2d4bd;

  /* Bayang */
  --shadow-sm: 0 4px 14px rgba(89, 54, 17, 0.06);
  --shadow-md: 0 14px 34px rgba(89, 54, 17, 0.08);
  --shadow-lg: 0 28px 64px rgba(89, 54, 17, 0.14);
  --shadow-primary: 0 18px 40px rgba(234, 122, 8, 0.28);

  /* Radius */
  --r: 18px;
  --r-lg: 24px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Saiz teks */
  --fs-body: 1.0625rem;
  --fs-sm: 0.9rem;
  --fs-xs: 0.82rem;

  /* Pelembut gerakan */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   2. ASAS
   ========================================================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background:
    radial-gradient(900px circle at 10% -5%, rgba(234, 122, 8, 0.12), transparent 45%),
    radial-gradient(760px circle at 100% 6%, rgba(13, 148, 136, 0.08), transparent 44%),
    linear-gradient(180deg, #fffaf1 0%, var(--bg) 48%, #ffffff 100%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

s {
  color: var(--text-3);
}

img {
  display: block;
  max-width: 100%;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(234, 122, 8, 0.5);
  outline-offset: 3px;
  border-radius: 12px;
}

/* =========================================================
   3. LAYOUT & HEADER BERKONGSI
   ========================================================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Baloo 2", "Poppins", sans-serif;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

/* Irama jarak antara seksyen */
.problem,
.forwho,
.testimonials,
.how,
.pricing,
.faq,
.final-cta {
  padding: 84px 0;
}

#pricing {
  scroll-margin-top: 24px;
}

/* Label kecil di atas tajuk */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.1rem;
  padding: 7px 16px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--primary-dark);
  background: linear-gradient(180deg, #fff7e4, var(--primary-soft));
  border: 1px solid rgba(234, 122, 8, 0.18);
  border-radius: var(--r-pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.section-h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  text-align: center;
}

.section-sub {
  max-width: 620px;
  margin: 0 auto 2.4rem;
  font-size: 1.04rem;
  color: var(--muted);
  text-align: center;
  text-wrap: pretty;
}

/* Tengah-kan header seksyen yang centered */
.problem .container,
.contents-section .container,
.forwho .container,
.testimonials .container,
.how .container,
.pricing .container,
.faq-wrap {
  text-align: center;
}

/* Penanda highlighter di sebalik teks */
.highlight,
.underline-orange,
.underline-green,
.underline-blue {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.highlight::after,
.underline-orange::after,
.underline-green::after,
.underline-blue::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -2px;
  right: -2px;
  bottom: 0.08em;
  height: 0.34em;
  border-radius: 6px;
}

.highlight,
.underline-orange {
  color: var(--primary-dark);
}
.highlight::after,
.underline-orange::after {
  background: rgba(234, 122, 8, 0.28);
}

.underline-green {
  color: var(--accent);
}
.underline-green::after {
  background: rgba(13, 148, 136, 0.22);
}

.underline-blue {
  color: #2563eb;
}
.underline-blue::after {
  background: rgba(37, 99, 235, 0.18);
}

/* =========================================================
   4. BUTANG
   ========================================================= */
.btn-main,
.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  position: relative;
  isolation: isolate;
  padding: 1rem 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  color: #fff;
  border: 0;
  border-radius: var(--r-pill);
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary) 0%, #f6a821 100%);
  box-shadow: var(--shadow-primary);
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}

.btn-main::after,
.btn-buy::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 55%);
  pointer-events: none;
}

.btn-main:hover,
.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(234, 122, 8, 0.38);
}

.btn-main:active,
.btn-buy:active {
  transform: translateY(-1px);
}

.btn-large {
  padding: 1.15rem 3rem;
  font-size: 1.18rem;
}

/* =========================================================
   5. TOPBAR
   ========================================================= */
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.65rem 1.5rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--ink), #232a35);
}

.topbar-btn {
  white-space: nowrap;
  padding: 0.34rem 1.05rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: var(--fs-xs);
  color: #fff;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--primary), #f6a821);
  box-shadow: 0 6px 16px rgba(234, 122, 8, 0.32);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.topbar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(234, 122, 8, 0.4);
}

/* =========================================================
   6. HERO & MODULE STRIP
   ========================================================= */
.hero {
  position: relative;
  padding: 4rem 0 0;
  text-align: center;
  overflow: hidden;
}

.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(234, 122, 8, 0.12) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  padding: 8px 18px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--primary-dark);
  background: linear-gradient(180deg, #fff7e4, var(--primary-soft));
  border: 1px solid rgba(234, 122, 8, 0.18);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}

.hero-h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
}

.hero-sub {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.12rem;
  color: var(--muted);
}

.hero-sub strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.hero-trust strong {
  color: var(--ink);
}

.hero-stars {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #f6a821;
}

.hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.05rem;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}

.hero-pills span::before {
  content: "";
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b45309' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* Module strip (gelap) */
.module-strip {
  position: relative;
  padding: 3rem 0 3.4rem;
  background:
    radial-gradient(700px circle at 88% -30%, rgba(234, 122, 8, 0.24), transparent 50%),
    linear-gradient(150deg, #1f2937, #14181f);
  clip-path: ellipse(140% 100% at 50% 0%);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.mod-card {
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.mod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.3);
}

.mod-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.9rem;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.24s var(--ease);
}

.mod-card:hover .mod-icon {
  transform: scale(1.08) rotate(-3deg);
}

.mod-blue .mod-icon   { background: linear-gradient(160deg, var(--blue-soft), var(--blue-soft-2)); }
.mod-green .mod-icon  { background: linear-gradient(160deg, var(--green-soft), var(--green-soft-2)); }
.mod-orange .mod-icon { background: linear-gradient(160deg, var(--primary-soft), #ffe6b8); }
.mod-teal .mod-icon   { background: linear-gradient(160deg, var(--accent-soft), #bfeee5); }

.mod-card strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.05rem;
  color: var(--ink);
}

.mod-card span {
  display: block;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.all-in-one-banner {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-align: center;
  color: #fcd34d;
}

/* =========================================================
   7. STATS (gelap)
   ========================================================= */
.stats {
  margin-top: -1px;
  padding: 0 0 3rem;
  background: var(--ink);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 2.4rem;
}

.stat-box {
  padding: 1.1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
}

.stat-box strong {
  display: block;
  margin-bottom: 0.15rem;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(90deg, #fcd34d, #f6a821);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-box span {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================================
   8. PROBLEM
   ========================================================= */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0.6rem;
  text-align: left;
}

.prob-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease),
    box-shadow 0.24s var(--ease), border-color 0.24s ease;
}

.prob-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.prob-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 122, 8, 0.3);
  box-shadow: var(--shadow-md);
}

.prob-emoji {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  border-radius: 16px;
  background: linear-gradient(160deg, #fff3d6, #ffe7b3);
}

.prob-card p {
  font-weight: 500;
  line-height: 1.55;
  color: #3a4250;
}

.prob-arrow {
  grid-column: 1 / -1;
  margin-top: 1.4rem;
  text-align: center;
}

.arrow-line {
  font-size: 1.6rem;
  color: var(--primary);
  animation: bounce 1.8s var(--ease) infinite;
}

.prob-arrow p {
  margin-top: 0.2rem;
  font-weight: 600;
  color: var(--muted);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* =========================================================
   9. CONTENTS — jalur sejuk, kad gaya "sticker"
   ========================================================= */
.contents-section {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(89, 168, 255, 0.16), transparent 40%),
    radial-gradient(circle at bottom right, rgba(13, 148, 136, 0.18), transparent 40%),
    linear-gradient(160deg, #e8f6f0 0%, #eef3fb 100%);
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 0.6rem;
  text-align: left;
}

.content-box {
  position: relative;
  padding: 22px 22px 26px;
  overflow: hidden;
  border: 3px solid var(--text);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 8px 8px 0 rgba(31, 41, 55, 0.14);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.content-box:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 rgba(31, 41, 55, 0.16);
}

.content-box:nth-child(1) { background: #eaf3ff; }
.content-box:nth-child(2) { background: #eafff3; }
.content-box:nth-child(3) { background: #fff2df; }
.content-box:nth-child(4) { background: #edf7ff; }

/* Tetingkap GIF — ikut tinggi sebenar imej (tiada potong/zoom) */
.content-media {
  position: relative;
  margin-bottom: 22px;
  overflow: hidden;
  border: 2px solid rgba(31, 41, 55, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.content-media img {
  width: 100%;
  height: auto;
  display: block;
}

.content-num {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: #fff;
  background: var(--text);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(31, 41, 55, 0.14);
}

.content-box h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--text);
}

.content-box p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4b5563;
}

.contents-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 1.9rem auto 0;
  padding: 12px 18px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  background: var(--text);
  border-radius: var(--r-pill);
}

/* =========================================================
   10. FOR WHO
   ========================================================= */
.forwho-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 0.6rem;
  text-align: left;
}

.forwho-card {
  padding: 1.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.forwho-card.yes {
  background: linear-gradient(180deg, #f4fffb, #fff);
  border-color: #a9e8df;
}

.forwho-card.no {
  background: linear-gradient(180deg, #fff8f6, #fff);
  border-color: #f6c9c0;
}

.forwho-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}

.forwho-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: var(--r-pill);
}

.forwho-card.yes .forwho-icon {
  color: #0d9488;
  background: var(--accent-soft);
}

.forwho-card.no .forwho-icon {
  color: #d9544a;
  background: #ffe1dc;
}

.forwho-card ul {
  display: grid;
  gap: 0.7rem;
}

.forwho-card li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
  color: #44505f;
}

.forwho-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 20px;
  height: 20px;
  border-radius: var(--r-pill);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.forwho-card.yes li::before {
  background-color: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.forwho-card.no li::before {
  background-color: #ffe1dc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9544a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

/* =========================================================
   11. TESTIMONIALS
   ========================================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.6rem;
  text-align: left;
}

.testi-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease),
    box-shadow 0.24s var(--ease), border-color 0.24s ease;
}

.testi-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 122, 8, 0.28);
  box-shadow: var(--shadow-md);
}

.testi-featured {
  background:
    radial-gradient(circle at top right, rgba(234, 122, 8, 0.16), transparent 44%),
    linear-gradient(180deg, #fffdf8, #fff);
  border-color: rgba(234, 122, 8, 0.32);
}

.testi-stars {
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
  color: #f6a821;
}

.testi-card p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
  color: #3a4250;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-av {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
  background: linear-gradient(150deg, var(--primary-soft), #ffe2ad);
  border-radius: 14px;
}

.av-blue  { background: linear-gradient(150deg, var(--blue-soft), var(--blue-soft-2)); color: #2456c9; }
.av-green { background: linear-gradient(150deg, var(--green-soft), var(--green-soft-2)); color: #0f7a45; }
.av-white { background: linear-gradient(150deg, #fff, #fff0d4); color: var(--primary-dark); }

.testi-author strong {
  display: block;
  font-size: 0.96rem;
  color: var(--ink);
}

.testi-author span {
  font-size: var(--fs-sm);
  color: var(--muted);
}

/* =========================================================
   12. HOW IT WORKS
   ========================================================= */
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.step-card {
  padding: 1.9rem 1.5rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease),
    box-shadow 0.24s var(--ease), border-color 0.24s ease;
}

.step-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 122, 8, 0.28);
  box-shadow: var(--shadow-md);
}

.step-bubble {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--primary), #f6a821);
  box-shadow: 0 10px 22px rgba(234, 122, 8, 0.32);
  transition: transform 0.24s var(--ease);
}

.step-card:hover .step-bubble {
  transform: scale(1.08) rotate(-3deg);
}

.step-2 { background: linear-gradient(150deg, var(--accent), #14b8a6); box-shadow: 0 10px 22px rgba(13, 148, 136, 0.3); }
.step-3 { background: linear-gradient(150deg, var(--ink), #2a3340); box-shadow: 0 10px 22px rgba(22, 27, 36, 0.28); }

.step-card h4 {
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.step-card p {
  line-height: 1.55;
  color: var(--muted);
}

.step-arrow {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

/* =========================================================
   13. PRICING (gelap)
   ========================================================= */
.pricing {
  position: relative;
  color: #fff;
  background:
    radial-gradient(760px circle at 88% -10%, rgba(234, 122, 8, 0.22), transparent 50%),
    linear-gradient(150deg, #1f2937, #14181f);
}

.section-h2.white {
  color: #fff;
}

.badge-white {
  color: #fcd34d;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.highlight-yellow {
  position: relative;
  display: inline-block;
  color: #fcd34d;
}

.highlight-yellow::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -2px;
  right: -2px;
  bottom: 0.08em;
  height: 0.34em;
  background: rgba(252, 211, 77, 0.22);
  border-radius: 6px;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  margin-top: 1.6rem;
  padding: 2.5rem;
  text-align: left;
  color: var(--text);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.pricing-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.price-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--primary-dark);
  background: var(--primary-soft);
  border: 1px solid rgba(234, 122, 8, 0.22);
  border-radius: var(--r-pill);
}

.price-anchor {
  font-size: var(--fs-sm);
  color: var(--muted);
}

.price-big {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  margin: 0.3rem 0 0.2rem;
  color: var(--ink);
}

.price-rm {
  margin-top: 0.6rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
}

.price-num {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-save {
  display: inline-flex;
  gap: 0.3rem;
  margin-bottom: 1.1rem;
  padding: 0.3rem 0.9rem;
  font-weight: 400;
  font-size: var(--fs-sm);
  color: #0f766e;
  background: var(--accent-soft);
  border-radius: var(--r-pill);
}

.price-desc {
  margin-bottom: 1.4rem;
  line-height: 1.6;
  color: var(--muted);
}

.btn-buy {
  width: 100%;
}

.pay-trust {
  margin-top: 0.8rem;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--accent);
}

.price-note {
  margin-top: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.pricing-divider {
  width: 1px;
  background: var(--line);
}

.pricing-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.includes-title {
  margin-bottom: 1rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}

.includes-list {
  display: grid;
  gap: 0.75rem;
}

.includes-list li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
  color: #44505f;
}

.includes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 20px;
  height: 20px;
  background: var(--primary-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b45309' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    no-repeat center / 12px;
  border-radius: var(--r-pill);
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 720px;
  margin: 1.8rem auto 0;
  padding: 1.25rem 1.5rem;
  line-height: 1.6;
  text-align: left;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
}

.guarantee strong {
  color: #fff;
}

.guarantee-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  background: rgba(245, 158, 11, 0.16);
  border-radius: 16px;
}

/* =========================================================
   14. FAQ
   ========================================================= */
.faq {
  background: linear-gradient(180deg, #fffaf2, #fff);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
  margin: 1.6rem auto 0;
  text-align: left;
}

.faq-item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(234, 122, 8, 0.3);
}

.faq-item.active {
  border-color: rgba(234, 122, 8, 0.4);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: "Baloo 2", "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  text-align: left;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-radius: var(--r-pill);
  transition: transform 0.25s var(--ease), background 0.2s ease, color 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #fff;
  background: var(--primary);
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.faq-item.active .faq-ans {
  max-height: 500px;
}

.faq-ans p {
  padding: 0 1.4rem 1.2rem;
  line-height: 1.65;
  color: var(--muted);
}

/* =========================================================
   15. FINAL CTA (gelap)
   ========================================================= */
.final-cta {
  color: #fff;
  background:
    radial-gradient(760px circle at 50% -20%, rgba(234, 122, 8, 0.24), transparent 55%),
    linear-gradient(150deg, #1f2937, #14181f);
}

.final-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.final-emoji {
  margin-bottom: 1rem;
  font-size: 3rem;
}

.final-cta h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: #fff;
}

.final-cta p {
  margin-bottom: 1.8rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.74);
}

.final-sub {
  margin-top: 1.1rem;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   16. RESPONSIF
   ========================================================= */
@media (max-width: 880px) {
  .module-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: 1fr; }
  .forwho-grid   { grid-template-columns: 1fr; }
  .contents-grid { grid-template-columns: 1fr; }

  .pricing-card    { grid-template-columns: 1fr; }
  .pricing-divider { width: auto; height: 1px; }

  .steps-row  { grid-template-columns: 1fr; gap: 1rem; }
  .step-arrow { transform: rotate(90deg); }
}

@media (max-width: 600px) {
  .problem, .forwho, .testimonials,
  .how, .pricing, .faq, .final-cta,
  .contents-section {
    padding: 60px 0;
  }

  .prob-grid   { grid-template-columns: 1fr; }
  .module-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }

  .hero { padding-top: 2.6rem; }
  .pricing-card { padding: 1.75rem; }
  .price-num { font-size: 3.6rem; }

  .prob-card { flex-direction: column; align-items: center; text-align: center; }
}

/* =========================================================
   17. REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  /* Pastikan kandungan reveal tetap kelihatan */
  .prob-card, .testi-card, .step-card {
    opacity: 1 !important;
    transform: none !important;
  }
}