/* =============================================
   styles.css — Simpanan & Pelaburan
   MUHAZU Global  |  Prefix: sp-
   ============================================= */

html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100%; }

/* ---- Keyframes ---- */
@keyframes sp-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sp-bg-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}
@keyframes sp-hero-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Scroll reveal ---- */
.sp-reveal-left,
.sp-reveal-right,
.sp-reveal-up {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--sp-delay, 0ms);
}
.sp-reveal-left  { transform: translateX(-28px); }
.sp-reveal-right { transform: translateX(28px); }
.sp-reveal-up    { transform: translateY(14px); }

.sp-reveal-left.is-visible,
.sp-reveal-right.is-visible,
.sp-reveal-up.is-visible {
  opacity: 1;
  transform: none;
}

/* ---- Load anims ---- */
.sp-anim-1, .sp-anim-2, .sp-anim-3 { opacity: 0; }
body.is-loaded .sp-anim-1 { animation: sp-fade-up 650ms ease forwards; animation-delay: 0ms; }
body.is-loaded .sp-anim-2 { animation: sp-fade-up 500ms ease forwards; animation-delay: 180ms; }
body.is-loaded .sp-anim-3 { animation: sp-fade-up 400ms ease forwards; animation-delay: 350ms; }

/* ============================================= */
/* SECTION 01 — HERO (service2.md)               */
/* ============================================= */

.sp-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sp-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  animation: sp-bg-zoom 1200ms ease-out forwards;
}

.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 1;
}

.sp-hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 5% 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.sp-h1 {
  font-size: clamp(1.65rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  max-width: 700px;
  margin: 0;
}

.sp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #CCF045;
  color: #0D0D0D;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 200ms ease, box-shadow 200ms ease;
}

.sp-hero-cta:hover {
  background: #d4f55e;
  box-shadow: 0 4px 20px rgba(204,240,69,0.3);
}

/* Embedded marquee */
.sp-hero-marquee-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: auto;
}

.sp-hero-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: sp-hero-marquee 20s linear infinite;
  will-change: transform;
}

.sp-hero-marquee-item {
  font-size: clamp(14px, 1.8vw, 24px);
  font-weight: 300;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.80);
  padding: 0 28px;
}

.sp-msep {
  color: rgba(255,255,255,0.35);
  margin: 0 4px;
}

@media (max-width: 768px) {
  .sp-hero         { min-height: 380px; }
  .sp-hero-content { padding: 110px 5% 36px; gap: 20px; }
  .sp-h1           { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .sp-h1 br        { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .sp-hero-marquee-track { animation-play-state: paused; }
}

/* ============================================= */
/* SECTION 02 — FEATURE SPLIT REVERSED           */
/* Image LEFT (45%), Text RIGHT (55%)             */
/* ============================================= */

.sp-split {
  background: #ffffff;
  padding: 100px 5%;
}

.sp-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 64px;
  align-items: center;
}

.sp-split-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
}

.sp-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-split-h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  max-width: 460px;
  margin: 0 0 14px;
}

.sp-split-para {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555555;
  max-width: 460px;
  margin: 0 0 36px;
}

.sp-features { display: flex; flex-direction: column; gap: 0; }

.sp-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.sp-feature:first-child { border-top: none; padding-top: 0; }

.sp-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(204,240,69,0.15);
  color: #0D0D0D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.sp-feature-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0 0 6px;
}

.sp-feature-body p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #666666;
  margin: 0;
}

@media (max-width: 900px) {
  .sp-split-inner { grid-template-columns: 1fr; gap: 40px; }
  .sp-split       { padding: 64px 5%; }
}

/* ============================================= */
/* SECTION 03 — SERVICE CARDS GRID (4 kolum)     */
/* ============================================= */

.sp-cards-section {
  background: #F9F9F7;
  padding: 90px 5%;
}

.sp-cards-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sp-cards-head { margin-bottom: 48px; }

.sp-cards-h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  margin: 0 0 12px;
}

.sp-cards-para {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555555;
  max-width: 560px;
  margin: 0;
}

.sp-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sp-svc-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  background: #ffffff;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.sp-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}

.sp-svc-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.sp-svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.sp-svc-card:hover .sp-svc-img-wrap img {
  transform: scale(1.06);
}

.sp-svc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 300ms ease;
}

.sp-svc-card:hover .sp-svc-overlay {
  background: rgba(0,0,0,0.10);
}

.sp-svc-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 8px;
}

.sp-svc-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0D0D0D;
  line-height: 1.3;
}

.sp-svc-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #0D0D0D;
  flex-shrink: 0;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.sp-svc-card:hover .sp-svc-arrow {
  background: #0D0D0D;
  color: #ffffff;
  border-color: #0D0D0D;
  transform: translate(2px, -2px);
}

@media (max-width: 900px) {
  .sp-svc-grid    { grid-template-columns: repeat(2, 1fr); }
  .sp-cards-section { padding: 64px 5%; }
}

@media (max-width: 560px) {
  .sp-svc-grid    { grid-template-columns: 1fr; }
}

/* ============================================= */
/* SECTION 04 — ENGAGE AUDIENCES SPLIT           */
/* ============================================= */

.sp-engage {
  background: #ffffff;
  padding: 100px 5%;
}

.sp-engage-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: start;
}

.sp-engage-h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  max-width: 480px;
  margin: 0 0 14px;
}

.sp-engage-para {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555555;
  max-width: 480px;
  margin: 0 0 32px;
}

.sp-engage-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.sp-engage-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sp-engage-feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(204,240,69,0.15);
  color: #0D0D0D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.sp-engage-feat-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0 0 4px;
}

.sp-engage-feat-body p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #666666;
  margin: 0;
}

.sp-engage-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0D0D0D;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 200ms ease;
}

.sp-engage-cta:hover {
  background: #CCF045;
  color: #0D0D0D;
}

/* Phone widget */
.sp-phone-widget {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 14px 20px;
  text-decoration: none;
  width: fit-content;
  margin-bottom: 20px;
  transition: box-shadow 200ms ease, transform 150ms ease;
}

.sp-phone-widget:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.sp-phone-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #CCF045;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.sp-phone-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sp-phone-label {
  font-size: 0.75rem;
  color: #888888;
  font-weight: 500;
}

.sp-phone-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
}

/* Stacked images */
.sp-stacked-imgs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-stack-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.sp-stack-img--offset {
  width: 85%;
  align-self: flex-end;
}

@media (max-width: 900px) {
  .sp-engage-inner { grid-template-columns: 1fr; gap: 48px; }
  .sp-engage       { padding: 64px 5%; }
  .sp-stack-img--offset { width: 100%; }
}

/* ============================================= */
/* SECTION 05 — IMPACT CARDS (2 large)           */
/* ============================================= */

.sp-impact {
  background: #F9F9F7;
  padding: 90px 5%;
}

.sp-impact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sp-impact-h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  margin: 0 0 36px;
}

.sp-impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sp-impact-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 4 / 3;
}

.sp-impact-img-wrap {
  position: absolute;
  inset: 0;
}

.sp-impact-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.sp-impact-card:hover .sp-impact-img-wrap img {
  transform: scale(1.06);
}

.sp-impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.65) 100%);
  transition: background 300ms ease;
}

.sp-impact-card:hover .sp-impact-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.75) 100%);
}

.sp-impact-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 32px;
  z-index: 1;
}

.sp-impact-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.sp-impact-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  margin: 0;
  max-width: 380px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 300ms ease, opacity 300ms ease;
}

.sp-impact-card:hover .sp-impact-desc {
  max-height: 80px;
  opacity: 1;
}

@media (hover: none) {
  .sp-impact-desc { max-height: none; opacity: 1; }
}

@media (max-width: 768px) {
  .sp-impact-grid { grid-template-columns: 1fr; }
  .sp-impact      { padding: 64px 5%; }
  .sp-impact-card { aspect-ratio: 3 / 2; }
}

/* ============================================= */
/* SECTION 06 — PRICING (pricing1.md — light)    */
/* White card background, featured card dark.    */
/* ============================================= */

.sp-pricing {
  background: #ffffff;
  padding: 100px 5%;
}

.sp-pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sp-pricing-head {
  text-align: center;
  margin-bottom: 48px;
}

.sp-pricing-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0D0D0D;
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.sp-pricing-h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  margin: 0 0 14px;
}

.sp-pricing-para {
  font-size: 0.95rem;
  color: #666666;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Billing toggle */
.sp-billing-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.sp-billing-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(0,0,0,0.06);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}

.sp-toggle-btn {
  padding: 10px 28px;
  border-radius: 999px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  background: transparent;
  color: #666666;
}

.sp-toggle-btn--active {
  background: #0D0D0D;
  color: #ffffff;
  font-weight: 600;
}

.sp-toggle-btn:hover:not(.sp-toggle-btn--active) {
  color: #0D0D0D;
}

.sp-save-badge {
  font-size: 0.72rem;
  font-weight: 600;
  background: #EAF3DE;
  color: #3B6D11;
  border-radius: 999px;
  padding: 4px 12px;
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.sp-save-badge.is-visible {
  opacity: 1;
}

/* 3-column pricing grid */
.sp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
}

/* Card base (white, from pricing1.md) */
.sp-pc {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.sp-pc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}

/* Featured (dark bg) */
.sp-pc--featured {
  background: #0D0D0D;
  border-color: #0D0D0D;
  transform: scale(1.03);
  z-index: 1;
}

.sp-pc--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.sp-pc-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0D0D0D;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  border: 2px solid #ffffff;
}

.sp-pc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.sp-pc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #F4F4F2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0D0D0D;
}

.sp-pc--featured .sp-pc-icon {
  background: rgba(255,255,255,0.12);
  color: #CCF045;
}

.sp-pc-name {
  font-size: 1rem;
  font-weight: 600;
  color: #0D0D0D;
}

.sp-pc--featured .sp-pc-name {
  color: #ffffff;
}

.sp-pc-price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.sp-pc-price-current {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.sp-pc-currency {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0D0D0D;
  line-height: 1;
}

.sp-pc--featured .sp-pc-currency {
  color: #ffffff;
}

.sp-pc-amount {
  font-size: 3.2rem;
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.sp-pc--featured .sp-pc-amount {
  color: #ffffff;
}

.sp-pc-amount.is-switching {
  opacity: 0;
  transform: translateY(-8px);
}

.sp-pc-original {
  font-size: 1.1rem;
  color: #AAAAAA;
  text-decoration: line-through;
  text-decoration-color: #AAAAAA;
  transition: opacity 180ms ease;
}

.sp-pc--featured .sp-pc-original {
  color: rgba(255,255,255,0.40);
}

.sp-pc-original.is-switching {
  opacity: 0;
}

.sp-pc-period {
  display: block;
  font-size: 0.78rem;
  color: #888888;
  margin-bottom: 28px;
}

.sp-pc--featured .sp-pc-period {
  color: rgba(255,255,255,0.5);
}

/* CTA button */
.sp-pc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid #0D0D0D;
  background: transparent;
  color: #0D0D0D;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease;
  margin-bottom: 28px;
}

.sp-pc-cta:hover {
  background: #0D0D0D;
  color: #ffffff;
}

.sp-pc-arrow {
  transition: transform 200ms ease;
  display: inline-block;
}

.sp-pc-cta:hover .sp-pc-arrow {
  transform: translateX(4px);
}

.sp-pc--featured .sp-pc-cta {
  background: #ffffff;
  border-color: #ffffff;
  color: #0D0D0D;
}

.sp-pc--featured .sp-pc-cta:hover {
  background: rgba(255,255,255,0.88);
}

/* Divider */
.sp-pc-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin-bottom: 24px;
}

.sp-pc--featured .sp-pc-divider {
  background: rgba(255,255,255,0.12);
}

/* Feature list */
.sp-pc-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}

.sp-pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}

.sp-feat-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

.sp-pc-features li.included .sp-feat-check {
  background: #EAF3DE;
  color: #3B6D11;
}

.sp-pc-features li.included .sp-feat-text {
  color: #0D0D0D;
}

.sp-pc-features li.excluded .sp-feat-check {
  background: #F4F4F2;
  color: #BBBBBB;
}

.sp-pc-features li.excluded .sp-feat-text {
  color: #BBBBBB;
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,0.2);
}

/* Featured card feature overrides */
.sp-pc--featured .sp-pc-features li.included .sp-feat-check {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}

.sp-pc--featured .sp-pc-features li.included .sp-feat-text {
  color: #ffffff;
}

.sp-pc--featured .sp-pc-features li.excluded .sp-feat-check {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.3);
}

.sp-pc--featured .sp-pc-features li.excluded .sp-feat-text {
  color: rgba(255,255,255,0.3);
  text-decoration-color: rgba(255,255,255,0.15);
}

/* Pricing note */
.sp-pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(0,0,0,0.38);
  margin: 0;
  line-height: 1.6;
}

.sp-pricing-note a {
  color: #0D0D0D;
  font-weight: 600;
  text-decoration: none;
}

.sp-pricing-note a:hover {
  color: #CCF045;
}

@media (max-width: 960px) {
  .sp-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }
  .sp-pc--featured { transform: scale(1); }
  .sp-pc--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 600px) {
  .sp-pricing   { padding: 64px 5%; }
  .sp-pc        { padding: 28px 22px; }
  .sp-pc-amount { font-size: 2.6rem; }
}

/* ============================================= */
/* SECTION 07 — CTA BANNER                       */
/* ============================================= */

.sp-cta {
  background: #0D0D0D;
  padding: 110px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sp-cta::before {
  content: 'TUMBUH';
  position: absolute;
  bottom: -0.1em;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 800;
  color: #ffffff;
  opacity: 0.025;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.sp-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sp-cta-h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
}

.sp-cta-h2 br { display: block; }

.sp-cta-para {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0;
  line-height: 1.7;
}

.sp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #CCF045;
  color: #0D0D0D;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 200ms ease, box-shadow 200ms ease;
}

.sp-cta-btn:hover {
  background: #d4f55e;
  box-shadow: 0 8px 28px rgba(204,240,69,0.3);
}

@media (max-width: 768px) {
  .sp-cta     { padding: 72px 5%; }
  .sp-cta-h2  { font-size: 1.6rem; }
  .sp-cta-h2 br { display: none; }
  .sp-cta-btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .sp-reveal-left, .sp-reveal-right, .sp-reveal-up { transition: none; opacity: 1; transform: none; }
  .sp-anim-1, .sp-anim-2, .sp-anim-3 { opacity: 1; animation: none; }
  .sp-hero-bg, .sp-svc-img-wrap img, .sp-impact-img-wrap img { animation: none; }
  .sp-hero-marquee-track { animation-play-state: paused; }
}
