

body { overflow-x: hidden; }
.spv2-hero,
.spv2-breadcrumb,
.spv2-toc,
.spv2-cta-final {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

:root {
  --sp-primary: #EE4D2D;
  --sp-primary-dark: #D73A17;
  --sp-gradient: linear-gradient(135deg, #EE4D2D 0%, #FF6633 50%, #FF8C4B 100%);
  --sp-gradient-light: linear-gradient(135deg, #FFF5F2 0%, #FFE8E0 100%);
  --sp-accent: #FFD700;
  --sp-accent2: #FF6633;
  --sp-neon-orange: #FF6633;
  --sp-neon-coral: #FF7F7F;
  --sp-neon-gold: #FFD700;
  --sp-dark: #1A0A05;
  --sp-dark2: #2D0F08;
  --sp-card-bg: rgba(255,255,255,0.95);
  --sp-glass: rgba(255,255,255,0.08);
  --sp-glass-border: rgba(255,255,255,0.12);
  --sp-shadow: 0 8px 32px rgba(238,77,45,0.12);
  --sp-shadow-lg: 0 20px 60px rgba(238,77,45,0.15);
  --sp-radius: 16px;
  --sp-radius-lg: 24px;
}

/* ========== KEYFRAME ANIMATIONS ========== */
@keyframes spFloatUp {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes spPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}
@keyframes spGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes spGlow {
  0%,100% { box-shadow: 0 0 20px rgba(238,77,45,0.3); }
  50% { box-shadow: 0 0 40px rgba(238,77,45,0.6); }
}
@keyframes spRGBGlow {
  0% { box-shadow: 0 0 20px rgba(238,77,45,0.5), 0 0 40px rgba(238,77,45,0.2); }
  33% { box-shadow: 0 0 20px rgba(255,102,51,0.5), 0 0 40px rgba(255,102,51,0.2); }
  66% { box-shadow: 0 0 20px rgba(255,215,0,0.5), 0 0 40px rgba(255,215,0,0.2); }
  100% { box-shadow: 0 0 20px rgba(238,77,45,0.5), 0 0 40px rgba(238,77,45,0.2); }
}
@keyframes spNeonPulse {
  0%,100% { opacity: 0.6; filter: blur(8px); }
  50% { opacity: 1; filter: blur(12px); }
}
/* Orbit ring — 55° tilt */
@keyframes spOrbitSpin {
  from { transform: rotateX(55deg) rotateZ(0deg); }
  to { transform: rotateX(55deg) rotateZ(360deg); }
}
@keyframes spBadgeCounterSpin {
  from { transform: rotateZ(0deg) rotateX(-55deg); }
  to { transform: rotateZ(-360deg) rotateX(-55deg); }
}
@keyframes spBadgeAutoFlip {
  0%,15% { transform: rotateY(0deg); }
  25%,90% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes spCatFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  75% { transform: translateY(-5px) rotate(-1deg); }
}
@keyframes spCatHeartPulse {
  0%,100% { transform: scale(0.9) translate(-50%,-50%); opacity: 0.4; }
  50% { transform: scale(1.15) translate(-50%,-50%); opacity: 0.7; }
}
/* Sparkle confetti — festive Shopee sale vibe */
@keyframes spSparkle1 {
  0% { transform: translate(0, 0) scale(0) rotate(0deg); opacity: 0; }
  20% { opacity: 1; transform: translate(30px, -40px) scale(1) rotate(90deg); }
  100% { opacity: 0; transform: translate(80px, -120px) scale(0.5) rotate(360deg); }
}
@keyframes spSparkle2 {
  0% { transform: translate(0, 0) scale(0) rotate(0deg); opacity: 0; }
  20% { opacity: 1; transform: translate(-40px, -50px) scale(1.1) rotate(-60deg); }
  100% { opacity: 0; transform: translate(-90px, -110px) scale(0.4) rotate(-300deg); }
}
@keyframes spSparkle3 {
  0% { transform: translate(0, 0) scale(0) rotate(0deg); opacity: 0; }
  20% { opacity: 1; transform: translate(50px, 30px) scale(0.9) rotate(45deg); }
  100% { opacity: 0; transform: translate(100px, 80px) scale(0.3) rotate(270deg); }
}
@keyframes spSparkle4 {
  0% { transform: translate(0, 0) scale(0) rotate(0deg); opacity: 0; }
  20% { opacity: 1; transform: translate(-35px, 40px) scale(1) rotate(-90deg); }
  100% { opacity: 0; transform: translate(-85px, 90px) scale(0.4) rotate(-360deg); }
}
@keyframes spShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}
@keyframes spMarqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes spMarqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ===== KEYWORD ROTATOR — 6 keywords × 3s = 18s ===== */
@keyframes spKwSlideUp {
  0%,13.33% { opacity: 1; transform: translateY(0); }
  15%,15.67% { opacity: 0; transform: translateY(-120%); }
  16.67%,100% { opacity: 0; transform: translateY(100%); }
}

/* ========== SCROLL REVEAL ========== */
.sp-reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.16,1,0.3,1); }
.sp-reveal.revealed { opacity: 1; transform: translateY(0); }
.sp-reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.6s cubic-bezier(0.16,1,0.3,1); }
.sp-reveal-left.revealed { opacity: 1; transform: translateX(0); }
.sp-reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.6s cubic-bezier(0.16,1,0.3,1); }
.sp-reveal-right.revealed { opacity: 1; transform: translateX(0); }
.sp-stagger > *:nth-child(1) { transition-delay: 0s; }
.sp-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.sp-stagger > *:nth-child(3) { transition-delay: 0.12s; }
.sp-stagger > *:nth-child(4) { transition-delay: 0.2s; }
.sp-stagger > *:nth-child(5) { transition-delay: 0.25s; }
.sp-stagger > *:nth-child(6) { transition-delay: 0.3s; }

/* ========== BREADCRUMB ========== */
.spv2-breadcrumb { padding: 12px 0; background: #f8f9fa; border-bottom: 1px solid #e9ecef; }
.spv2-breadcrumb ol { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; font-size: 0.85rem; }
.spv2-breadcrumb li a { color: var(--sp-primary); text-decoration: none; }
.spv2-breadcrumb li a:hover { text-decoration: underline; }
.spv2-breadcrumb .separator { margin: 0 8px; color: #999; }
.spv2-breadcrumb .current { color: #666; font-weight: 600; }

/* ========== HERO SECTION ========== */
.spv2-hero {
  position: relative;
  padding: 60px 0 50px;
  background: linear-gradient(135deg, #1A0A05 0%, #2D0F08 30%, #4A1A0D 60%, #1A0A05 100%);
  overflow: visible;
  min-height: 550px;
}
.spv2-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(238,77,45,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.spv2-hero .hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.spv2-hero .hero-orb-1 {
  width: 300px; height: 300px; top: -80px; right: -60px;
  background: radial-gradient(circle, rgba(238,77,45,0.15) 0%, transparent 70%);
  animation: spFloatUp 6s ease-in-out infinite;
}
.spv2-hero .hero-orb-2 {
  width: 200px; height: 200px; bottom: -50px; left: 5%;
  background: radial-gradient(circle, rgba(255,102,51,0.1) 0%, transparent 70%);
  animation: spFloatUp 8s ease-in-out infinite 1s;
}
.spv2-hero .hero-orb-3 {
  width: 120px; height: 120px; top: 30%; left: 15%;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
  animation: spFloatUp 5s ease-in-out infinite 0.5s;
}

/* Hero badge */
.spv2-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(238,77,45,0.2);
  border: 1px solid rgba(238,77,45,0.3);
  backdrop-filter: blur(8px);
  padding: 8px 20px; border-radius: 50px;
  color: #FFD700; font-size: 0.85rem; font-weight: 700;
  margin-bottom: 1rem;
  animation: spGlow 3s ease-in-out infinite;
}
.spv2-hero-badge i { color: #FFD700; }

/* H1 + Keyword Rotator */
.sp-hero-headline {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.3rem; flex-wrap: nowrap;
}
.spv2-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; color: #fff;
  line-height: clamp(2.4rem, 5.5vw, 3.6rem);
  margin: 0;
  text-shadow: 0 0 30px rgba(238,77,45,0.3), 0 2px 20px rgba(0,0,0,0.3);
  white-space: nowrap;
}
.sp-keyword-rotator {
  display: inline-block;
  height: clamp(2.2rem, 4.5vw, 3.2rem);
  overflow: hidden; position: relative;
  min-width: 280px;
}
.sp-kw {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--kw-color, #FFFFFF);
  text-shadow: 0 0 20px var(--kw-glow, rgba(238,77,45,0.4)),
               0 0 40px var(--kw-glow, rgba(238,77,45,0.2)),
               0 2px 10px rgba(0,0,0,0.3);
  opacity: 0; transform: translateY(100%);
  position: absolute; left: 0; top: 0;
  white-space: nowrap;
  animation: spKwSlideUp 18s infinite;
}
/* 6 keywords — warm orange/gold palette */
.sp-kw:nth-child(1) { animation-delay: 0s; --kw-color: #FFD700; --kw-glow: rgba(255,215,0,0.5); }
.sp-kw:nth-child(2) { animation-delay: 3s; --kw-color: #FF8C4B; --kw-glow: rgba(255,140,75,0.5); }
.sp-kw:nth-child(3) { animation-delay: 6s; --kw-color: #4ADE80; --kw-glow: rgba(74,222,128,0.5); }
.sp-kw:nth-child(4) { animation-delay: 9s; --kw-color: #F0ABFC; --kw-glow: rgba(240,171,252,0.5); }
.sp-kw:nth-child(5) { animation-delay: 12s; --kw-color: #67E8F9; --kw-glow: rgba(103,232,249,0.5); }
.sp-kw:nth-child(6) { animation-delay: 15s; --kw-color: #FFFFFF; --kw-glow: rgba(255,255,255,0.5); }

/* Hero tagline */
.sp-hero-tagline {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
  background: linear-gradient(90deg, #FFD54F, #EE4D2D);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.5rem 0 1rem;
}
.spv2-hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem; line-height: 1.7;
  max-width: 560px; margin-bottom: 1.5rem;
}
.spv2-hero-sub strong { color: #FFD700; }

/* Hero stats */
.spv2-hero-stats { display: flex; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.spv2-hero-stat {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(238,77,45,0.1);
  border: 1px solid rgba(238,77,45,0.2);
  backdrop-filter: blur(8px);
  border-radius: 12px; padding: 12px 20px; min-width: 90px;
}
.spv2-hero-stat-num { font-size: 1.5rem; font-weight: 800; color: #FFD700; }
.spv2-hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); text-transform: uppercase; }

/* Hero CTA */
.spv2-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sp-gradient); color: #fff;
  font-weight: 700; font-size: 1.05rem;
  padding: 14px 32px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(238,77,45,0.4);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.spv2-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(238,77,45,0.6); color: #fff;
}
.spv2-hero-cta::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: spShimmer 3s ease-in-out infinite;
}

/* ========== CAT SCENE — Orbit Ring + Sparkle Confetti ========== */
.spv2-cat-scene {
  position: relative;
  perspective: 1000px;
  overflow: visible;
  height: 520px;
  display: flex; align-items: center; justify-content: center;
}
.spv2-cat-heart-glow {
  position: absolute; width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,77,45,0.3) 0%, rgba(255,102,51,0.15) 40%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spCatHeartPulse 3s ease-in-out infinite;
  z-index: 1;
}
.spv2-cat-img {
  position: relative; max-width: 300px; z-index: 5;
  animation: spCatFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 15px 35px rgba(238,77,45,0.4));
}

/* 3D Orbit Ring — z-index:3 BEHIND cat z-index:5 */
.spv2-orbit-ring {
  position: absolute;
  width: 560px; height: 560px;
  top: 50%; left: 50%;
  margin-top: -250px;
  margin-left: -280px;
  transform-style: preserve-3d;
  animation: spOrbitSpin 25s linear infinite;
  z-index: 3;
}
.spv2-orbit-ring::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(238,77,45,0.4);
  border-right-color: rgba(255,102,51,0.35);
  border-bottom-color: rgba(255,215,0,0.3);
  border-left-color: rgba(255,140,75,0.35);
  animation: spGlow 4s ease infinite;
}

/* Flip badges */
.spv2-flip-badge {
  position: absolute;
  width: 62px; height: 62px;
  animation: spBadgeCounterSpin 25s linear infinite;
}
.spv2-flip-inner {
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  animation: spBadgeAutoFlip 5s ease-in-out infinite;
}
.sp-pos-1 .spv2-flip-inner { animation-delay: 0s; }
.sp-pos-2 .spv2-flip-inner { animation-delay: -0.625s; }
.sp-pos-3 .spv2-flip-inner { animation-delay: -1.25s; }
.sp-pos-4 .spv2-flip-inner { animation-delay: -1.875s; }
.sp-pos-5 .spv2-flip-inner { animation-delay: -2.5s; }
.sp-pos-6 .spv2-flip-inner { animation-delay: -3.125s; }
.sp-pos-7 .spv2-flip-inner { animation-delay: -3.75s; }
.sp-pos-8 .spv2-flip-inner { animation-delay: -4.375s; }

.spv2-flip-front, .spv2-flip-back {
  position: absolute; inset: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backface-visibility: hidden;
  font-weight: 700;
}
.spv2-flip-front {
  background: rgba(238,77,45,0.25);
  border: 1px solid rgba(255,102,51,0.35);
  color: #fff; font-size: 1.1rem;
}
.spv2-flip-back {
  background: linear-gradient(135deg, rgba(238,77,45,0.95), rgba(255,215,0,0.95));
  color: #fff; transform: rotateY(180deg);
  font-size: 0.6rem; text-align: center; padding: 4px;
  line-height: 1.2;
}

/* Badge positions — 8 on 560px circle */
.sp-pos-1 { top: 0; left: 50%; margin-left: -31px; }
.sp-pos-2 { top: 14%; right: 0; }
.sp-pos-3 { top: 50%; right: -8px; margin-top: -31px; }
.sp-pos-4 { bottom: 14%; right: 0; }
.sp-pos-5 { bottom: 0; left: 50%; margin-left: -31px; }
.sp-pos-6 { bottom: 14%; left: 0; }
.sp-pos-7 { top: 50%; left: -8px; margin-top: -31px; }
.sp-pos-8 { top: 14%; left: 0; }

/* Sparkle confetti particles — festive Shopee sale vibe */
.spv2-sparkle { position: absolute; width: 6px; height: 6px; border-radius: 50%; z-index: 4; }
.spv2-sparkle.s1 { background: #EE4D2D; top: 15%; left: 25%; animation: spSparkle1 3s ease-in-out infinite; }
.spv2-sparkle.s2 { background: #FFD700; top: 55%; right: 20%; animation: spSparkle2 4s ease-in-out infinite 0.5s; }
.spv2-sparkle.s3 { background: #FF6633; bottom: 20%; left: 20%; animation: spSparkle3 3.5s ease-in-out infinite 1s; }
.spv2-sparkle.s4 { background: #FF8C4B; top: 30%; right: 15%; animation: spSparkle4 4.5s ease-in-out infinite 1.5s; }
.spv2-sparkle.s5 { background: #FFD700; bottom: 30%; right: 30%; animation: spSparkle1 5s ease-in-out infinite 2s; }
.spv2-sparkle.s6 { background: #EE4D2D; top: 40%; left: 10%; animation: spSparkle2 3s ease-in-out infinite 0.8s; }
.spv2-sparkle.s7 { background: #FF6633; bottom: 10%; left: 35%; animation: spSparkle3 4s ease-in-out infinite 1.2s; }
.spv2-sparkle.s8 { background: #FFD700; top: 10%; left: 40%; animation: spSparkle4 3.5s ease-in-out infinite 0.3s; }

/* ========== STICKY TOC ========== */
.spv2-toc {
  background: var(--sp-dark);
  border-bottom: 1px solid rgba(238,77,45,0.15);
  position: sticky; top: 0; z-index: 10;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.spv2-toc-inner {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 0; overflow-x: auto; scrollbar-width: none;
}
.spv2-toc-inner::-webkit-scrollbar { display: none; }
.spv2-toc-label { color: rgba(255,255,255,0.5); font-size: 0.8rem; white-space: nowrap; margin-right: 8px; }
.spv2-toc-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none; font-size: 0.8rem;
  padding: 6px 14px; border-radius: 20px;
  white-space: nowrap; transition: all 0.3s;
  border: 1px solid transparent;
}
.spv2-toc-link:hover, .spv2-toc-link.active {
  color: #fff;
  background: rgba(238,77,45,0.2);
  border-color: rgba(238,77,45,0.3);
}

/* ========== SECTIONS ========== */
.spv2-section { padding: 60px 0; position: relative; }
.spv2-section-alt { background: #f8f9fa; }
.spv2-dark-section { background: linear-gradient(135deg, #1A0A05 0%, #2D0F08 50%, #4A1A0D 100%); }
.spv2-dark-section .spv2-section-title,
.spv2-dark-section .spv2-sub-heading { color: #fff !important; }
.spv2-dark-section .spv2-section-desc { color: rgba(255,255,255,0.7) !important; }

.spv2-section-title {
  text-align: center; font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800; color: #1a1a2e; margin-bottom: 8px;
}
.spv2-gradient-line {
  width: 80px; height: 4px; margin: 0 auto 16px;
  background: var(--sp-gradient); border-radius: 4px;
}
.spv2-section-desc {
  text-align: center; color: #666; font-size: 1rem;
  max-width: 700px; margin: 0 auto 32px; line-height: 1.6;
}
.spv2-sub-heading {
  font-size: 1.2rem; font-weight: 700; color: #1a1a2e;
  margin-bottom: 1rem; display: flex; align-items: center;
}

/* ========== SERVICE CARDS ========== */
.spv2-svc-card {
  background: var(--sp-card-bg); border-radius: var(--sp-radius);
  padding: 24px 20px; text-align: center;
  border: 1px solid #eee; transition: all 0.3s ease;
  height: 100%; display: flex; flex-direction: column;
}
.spv2-svc-card:hover {
  transform: translateY(-6px); box-shadow: var(--sp-shadow-lg);
  border-color: var(--sp-primary);
}
.spv2-svc-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sp-gradient-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 1.4rem; color: var(--sp-primary);
}
.spv2-svc-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.spv2-svc-desc { font-size: 0.85rem; color: #666; line-height: 1.5; flex-grow: 1; margin-bottom: 10px; }
.spv2-svc-price { font-size: 0.8rem; color: var(--sp-primary); font-weight: 700; margin-bottom: 10px; }
.spv2-svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--sp-primary); font-weight: 600; font-size: 0.85rem;
  text-decoration: none; padding: 8px 20px; border-radius: 20px;
  border: 1px solid var(--sp-primary); transition: all 0.3s ease;
  margin-top: auto;
}
.spv2-svc-link:hover { background: var(--sp-primary); color: #fff; }

/* ========== INTRO ========== */
.spv2-intro-text { font-size: 0.95rem; color: #444; line-height: 1.8; }
.spv2-intro-text p { margin-bottom: 1rem; }
.spv2-intro-highlight {
  background: var(--sp-gradient-light); border-left: 4px solid var(--sp-primary);
  padding: 16px 20px; border-radius: 0 12px 12px 0;
  margin: 1rem 0; font-size: 0.9rem; line-height: 1.7;
}
.spv2-intro-img-wrap { max-width: 500px; margin: 0 auto; }
.spv2-intro-img-wrap img {
  width: 100%; border-radius: var(--sp-radius);
  max-height: 400px; object-fit: contain;
}

/* ========== BENEFIT ITEMS ========== */
.spv2-benefit-item {
  display: flex; gap: 16px; padding: 16px 20px;
  background: var(--sp-card-bg); border-radius: 12px;
  border: 1px solid #eee; transition: all 0.3s ease; height: 100%;
}
.spv2-benefit-item:hover { box-shadow: var(--sp-shadow); border-color: var(--sp-primary); }
.spv2-benefit-item i { font-size: 1.3rem; margin-top: 4px; flex-shrink: 0; }
.spv2-benefit-item div { font-size: 0.9rem; line-height: 1.6; color: #444; }

/* ========== COMMIT CARDS ========== */
.spv2-commit-card {
  background: var(--sp-card-bg); border-radius: var(--sp-radius);
  padding: 20px; text-align: center; border: 1px solid #eee;
  height: 100%; transition: all 0.3s ease;
}
.spv2-commit-card:hover { box-shadow: var(--sp-shadow); transform: translateY(-4px); }
.spv2-commit-card strong { display: block; font-size: 0.95rem; margin: 10px 0 6px; color: #1a1a2e; }
.spv2-commit-card p { font-size: 0.85rem; color: #666; line-height: 1.5; margin: 0; }

/* ========== WOW CARDS ========== */
.sp-wow-img-frame { max-width: 700px; margin: 0 auto 2rem; }
.sp-wow-img-frame img {
  width: 100%; border-radius: var(--sp-radius);
  max-height: 400px; object-fit: contain;
  box-shadow: var(--sp-shadow);
}
.sp-wow-cards { display: flex; flex-direction: column; gap: 16px; }
.sp-wow-card {
  display: flex; gap: 16px; padding: 20px; border-radius: var(--sp-radius);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease; color: #fff;
}
.sp-wow-card:hover { background: rgba(238,77,45,0.1); border-color: rgba(238,77,45,0.3); transform: translateX(5px); }
.sp-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.sp-wow-card div:last-child { font-size: 0.9rem; line-height: 1.6; }
.sp-wow-card strong { color: #fff; display: block; margin-bottom: 6px; font-size: 0.95rem; }
.sp-wow-card p { margin: 0; color: rgba(255,255,255,0.7); }

/* Light section wow cards */
.spv2-section:not(.spv2-dark-section) .sp-wow-card {
  background: var(--sp-card-bg); border: 1px solid #eee; color: #333;
}
.spv2-section:not(.spv2-dark-section) .sp-wow-card:hover { border-color: var(--sp-primary); }
.spv2-section:not(.spv2-dark-section) .sp-wow-card strong { color: #1a1a2e; }
.spv2-section:not(.spv2-dark-section) .sp-wow-card p { color: #666; }
.spv2-section:not(.spv2-dark-section) .sp-card-icon { background: var(--sp-gradient-light); }

/* ========== FEATURED CARDS ========== */
.spv2-featured-single {
  display: flex; gap: 24px; padding: 28px; border-radius: var(--sp-radius);
  background: var(--sp-card-bg); border: 2px solid var(--sp-primary);
  box-shadow: var(--sp-shadow-lg); align-items: center;
}
.spv2-featured-icon-lg {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--sp-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; flex-shrink: 0;
}
.spv2-featured-single h3 { font-size: 1.15rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.spv2-featured-single p { font-size: 0.9rem; color: #555; line-height: 1.6; margin-bottom: 12px; }
.spv2-featured-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.spv2-featured-price { color: var(--sp-primary); font-weight: 700; font-size: 0.9rem; }
.spv2-featured-link {
  color: #fff; font-weight: 600; font-size: 0.85rem;
  text-decoration: none; background: var(--sp-gradient);
  padding: 8px 20px; border-radius: 20px; transition: all 0.3s;
}
.spv2-featured-link:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(238,77,45,0.4); color: #fff; }

/* ========== STATS ========== */
.spv2-stats-section {
  padding: 40px 0;
  background: var(--sp-gradient);
}
.spv2-stats-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.spv2-stat-item { text-align: center; color: #fff; }
.spv2-stat-num { display: block; font-size: 2rem; font-weight: 800; }
.spv2-stat-label { font-size: 0.8rem; opacity: 0.9; }

/* ========== FEATURE GRID (Why Choose) ========== */
.spv2-feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.spv2-feature-card {
  background: var(--sp-card-bg); border-radius: var(--sp-radius);
  padding: 28px 24px; border: 1px solid #eee; text-align: center;
  transition: all 0.3s ease;
}
.spv2-feature-card:hover { transform: translateY(-6px); box-shadow: var(--sp-shadow-lg); border-color: var(--sp-primary); }
.spv2-feature-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--sp-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.4rem;
}
.spv2-feature-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.spv2-feature-card p { font-size: 0.85rem; color: #666; line-height: 1.6; margin: 0; }

/* ========== HOW-TO STEPS ========== */
.spv2-steps { display: flex; flex-direction: column; gap: 16px; }
.spv2-step-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--sp-card-bg);
  border-radius: var(--sp-radius); border: 1px solid #eee;
  transition: all 0.3s ease;
}
.spv2-step-card:hover { border-color: var(--sp-primary); box-shadow: var(--sp-shadow); }
.spv2-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sp-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem; flex-shrink: 0;
}
.spv2-step-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: #1a1a2e; }
.spv2-step-card p { font-size: 0.85rem; color: #666; line-height: 1.5; margin: 0; }

/* ========== PRICING TABLE ========== */
.spv2-price-table {
  width: 100%; border-collapse: collapse; font-size: 0.9rem;
  background: var(--sp-card-bg); border-radius: var(--sp-radius);
  overflow: hidden; box-shadow: var(--sp-shadow);
}
.spv2-price-table thead { background: var(--sp-gradient); color: #fff; }
.spv2-price-table th { padding: 14px 16px; font-weight: 700; text-align: left; }
.spv2-price-table td { padding: 12px 16px; border-top: 1px solid #eee; }
.spv2-price-table tbody tr:hover { background: rgba(238,77,45,0.04); }
.spv2-price-table .price-highlight { color: var(--sp-primary); font-weight: 800; font-size: 1.1rem; }

/* Comparison classes */
.spv2-compare-check { color: #059669; }
.spv2-compare-partial { color: #D97706; }
.spv2-compare-no { color: #DC2626; }

/* ========== TESTIMONIALS MARQUEE ========== */
.spv2-testimonial-wrapper {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.spv2-testimonial-row {
  display: flex; gap: 20px; width: max-content; padding: 10px 0;
}
.spv2-testimonial-row.row-1 { animation: spMarqueeLeft 50s linear infinite; }
.spv2-testimonial-row.row-2 { animation: spMarqueeRight 55s linear infinite; margin-top: 16px; }
.spv2-testimonial-row:hover { animation-play-state: paused; }
.spv2-testimonial-card {
  width: 340px; flex-shrink: 0; padding: 20px;
  background: var(--sp-card-bg); border-radius: var(--sp-radius);
  border: 1px solid #eee; transition: all 0.3s ease;
}
.spv2-testimonial-card:hover { border-color: var(--sp-primary); box-shadow: var(--sp-shadow); }
.spv2-testimonial-tag {
  display: inline-block; padding: 3px 10px; border-radius: 10px;
  font-size: 0.7rem; font-weight: 700; margin-bottom: 8px;
  background: #FFF5F0; color: #EE4D2D;
}
.spv2-testimonial-stars { color: #FFD700; font-size: 0.85rem; margin-bottom: 8px; }
.spv2-testimonial-text { font-size: 0.85rem; color: #555; line-height: 1.6; margin-bottom: 12px; min-height: 80px; }
.spv2-testimonial-author { display: flex; align-items: center; gap: 10px; }
.spv2-testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sp-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.spv2-testimonial-name { font-weight: 700; font-size: 0.85rem; color: #1a1a2e; }
.spv2-testimonial-role { font-size: 0.75rem; color: #888; }

/* ========== FAQ ========== */
.spv2-faq-item {
  border: 1px solid #eee; border-radius: 12px;
  margin-bottom: 10px; overflow: hidden; transition: all 0.3s ease;
}
.spv2-faq-item:hover { border-color: var(--sp-primary); }
.spv2-faq-item.active { border-color: var(--sp-primary); box-shadow: var(--sp-shadow); }
.spv2-faq-q {
  padding: 16px 20px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  color: #1a1a2e; background: #fff;
}
.spv2-faq-q i { transition: transform 0.3s ease; color: var(--sp-primary); }
.spv2-faq-item.active .spv2-faq-q i { transform: rotate(180deg); }
.spv2-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  padding: 0 20px; background: #fafafa;
}
.spv2-faq-item.active .spv2-faq-a { max-height: 500px; padding: 16px 20px; }
.spv2-faq-a p { font-size: 0.9rem; color: #555; line-height: 1.7; margin: 0; }

/* ========== CTA FINAL ========== */
.spv2-cta-final {
  padding: 60px 0; text-align: center;
  background: linear-gradient(135deg, #1A0A05 0%, #2D0F08 30%, #4A1A0D 60%, #1A0A05 100%);
  position: relative; overflow: hidden;
}
.spv2-cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(238,77,45,0.15) 0%, transparent 70%);
}
.spv2-cta-final h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  color: #fff; margin-bottom: 12px;
}
.spv2-cta-final p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 600px; margin: 0 auto 24px; }
.spv2-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; border-radius: 50px;
  background: var(--sp-gradient); color: #fff; font-weight: 700;
  font-size: 1.05rem; text-decoration: none;
  box-shadow: 0 4px 24px rgba(238,77,45,0.4);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.spv2-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(238,77,45,0.6); color: #fff; }
.spv2-cta-btn::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: spShimmer 3s ease-in-out infinite;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .spv2-hero { padding: 40px 0 30px; min-height: auto; }
  .spv2-hero .col-lg-7 {
    text-align: center; display: flex;
    flex-direction: column; align-items: center;
  }
  .sp-hero-headline {
    flex-direction: column; align-items: center;
    text-align: center; width: 100%;
  }
  .spv2-hero-badge { margin: 0 auto 1rem; }
  .spv2-hero-title { white-space: normal; text-align: center; }
  .sp-keyword-rotator { min-width: 250px; text-align: center; }
  .sp-kw { left: 0; right: 0; text-align: center; }
  .sp-hero-tagline { text-align: center; width: 100%; }
  .spv2-hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .spv2-hero-stats { justify-content: center; width: 100%; }
  .spv2-hero-cta { margin: 0 auto; }
  .spv2-cat-scene { height: 400px; }
  .spv2-cat-img { max-width: 230px; }
  .spv2-orbit-ring { width: 400px; height: 400px; margin-top: -185px; margin-left: -200px; }
  .spv2-flip-badge { width: 50px; height: 50px; }
  .spv2-flip-front { font-size: 0.95rem; }
  .spv2-flip-back { font-size: 0.55rem; }
  .spv2-toc { display: none; }
  .spv2-section { padding: 40px 0; }
  .spv2-featured-single { flex-direction: column; text-align: center; }
}
@media (max-width: 575px) {
  .spv2-hero { padding: 30px 0 20px; }
  .spv2-cat-scene { height: 340px; }
  .spv2-cat-img { max-width: 180px; }
  .spv2-orbit-ring { width: 320px; height: 320px; margin-top: -145px; margin-left: -160px; }
  .spv2-flip-badge { width: 42px; height: 42px; }
  .spv2-flip-front { font-size: 0.85rem; }
  .spv2-flip-back { font-size: 0.5rem; }
  .spv2-hero-stats { gap: 10px; }
  .spv2-hero-stat { padding: 10px 12px; min-width: 70px; }
  .spv2-testimonial-card { width: 280px; }
  .spv2-price-table { font-size: 0.8rem; }
  .spv2-price-table th, .spv2-price-table td { padding: 10px 8px; }
  .sp-keyword-rotator { min-width: 200px; }
  .spv2-hero-title { font-size: 1.5rem; }
  .sp-kw { font-size: 1.3rem; line-height: 1.8rem; }
}

/* ========== INLINE IMG CONSTRAINTS ========== */
.spv2-intro-img-wrap img {
  max-height: 400px; width: 100%; object-fit: contain; border-radius: 16px;
}
.container-fluid { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; }
