*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #2C3E50;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.sp-page {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===================== HERO ===================== */

.sp-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #FFA573 0%, #FF844B 40%, #FF6B2C 80%, #e85d26 100%);
}

.sp-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 70%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(255, 200, 150, 0.3) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.sp-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.sp-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C360,100 720,20 1080,60 S1440,80 1440,80 L1440,100 L0,100 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.sp-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.sp-hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: spParticleFloat 8s ease-in-out infinite;
}

.sp-hero-particles span:nth-child(1) { left: 10%; top: 30%; animation-delay: 0s; animation-duration: 7s; width: 8px; height: 8px; }
.sp-hero-particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.5s; animation-duration: 9s; }
.sp-hero-particles span:nth-child(3) { left: 55%; top: 20%; animation-delay: 3s; animation-duration: 8s; width: 10px; height: 10px; background: rgba(255, 255, 255, 0.15); }
.sp-hero-particles span:nth-child(4) { left: 75%; top: 50%; animation-delay: 2s; animation-duration: 10s; width: 5px; height: 5px; }
.sp-hero-particles span:nth-child(5) { left: 90%; top: 35%; animation-delay: 4s; animation-duration: 7.5s; }

@keyframes spParticleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
  25% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
  50% { transform: translateY(-35px) translateX(-5px); opacity: 0.4; }
  75% { transform: translateY(-15px) translateX(15px); opacity: 0.7; }
}

.sp-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.sp-hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: spFadeUp 0.6s ease-out 0.1s forwards;
  width: fit-content;
}

.sp-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: spPulse 2s ease-in-out infinite;
}

@keyframes spPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.sp-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  opacity: 0;
  animation: spFadeUp 0.6s ease-out 0.2s forwards;
}

.sp-hero-title .sp-gradient {
  background: linear-gradient(135deg, #fff 0%, #ffe0cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.sp-hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  opacity: 0;
  animation: spFadeUp 0.6s ease-out 0.3s forwards;
}

.sp-hero-desc strong {
  color: #fff;
  font-weight: 600;
}

.sp-hero-btns {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  opacity: 0;
  animation: spFadeUp 0.6s ease-out 0.4s forwards;
}

.sp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: #FF6B2C;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  color: #FF6B2C;
}

.sp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.sp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.sp-hero-right {
  opacity: 0;
  animation: spFadeUp 0.6s ease-out 0.45s forwards;
}

.sp-hero-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-hero-metric {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.sp-hero-metric:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-4px);
}

.sp-hero-metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-hero-metric-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
  stroke: #fff;
}

.sp-hero-metric-text {
  flex: 1;
}

.sp-hero-metric-value {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.sp-hero-metric-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

@keyframes spFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== HERO PRICING MINI ===================== */

.sp-hero-pricing-mini {
  display: block;
  position: relative;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 28px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sp-hero-pricing-mini::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  border-radius: 18px;
  pointer-events: none;
  z-index: 0;
}

.sp-hero-pricing-mini > * {
  position: relative;
  z-index: 1;
}

.sp-hero-pricing-mini:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
}

.sp-hero-pricing-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.sp-hero-pricing-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.sp-hero-pricing-amount span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0;
}

.sp-hero-pricing-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  margin-bottom: 14px;
}

.sp-hero-pricing-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.sp-hero-pricing-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.sp-hero-pricing-item::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/8px no-repeat;
}

.sp-hero-pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: all 0.25s ease;
}

.sp-hero-pricing-mini:hover .sp-hero-pricing-cta {
  background: rgba(255, 255, 255, 0.25);
}

.sp-hero-pricing-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.sp-hero-pricing-mini:hover .sp-hero-pricing-cta svg {
  transform: translateY(2px);
}

/* ===================== APPROACH SECTION ===================== */

.sp-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.sp-approach-card {
  padding: 24px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.sp-approach-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border-color: rgba(255, 132, 75, 0.2);
}

.sp-approach-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #FF844B, #FF6B2C);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.sp-approach-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
  line-height: 1.3;
}

.sp-approach-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}

/* ===================== SECTIONS ===================== */

.sp-section {
  padding: 80px 0;
}

.sp-section-alt {
  background: #f8fafc;
}

.sp-section-warm {
  background: #FFF8F3;
}

.sp-section-dark {
  position: relative;
  background: #2C3E50;
  overflow: hidden;
  padding: 100px 0;
}

.sp-wave {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.sp-wave-top {
  top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,40 Q360,80 720,40 T1440,40 L1440,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.sp-wave-top-alt {
  top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,40 Q360,80 720,40 T1440,40 L1440,0 Z' fill='%23f8fafc'/%3E%3C/svg%3E");
}

.sp-wave-top-warm {
  top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,40 Q360,80 720,40 T1440,40 L1440,0 Z' fill='%23FFF8F3'/%3E%3C/svg%3E");
}

.sp-wave-bottom {
  bottom: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L0,40 Q360,0 720,40 T1440,40 L1440,80 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.sp-wave-bottom-alt {
  bottom: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L0,40 Q360,0 720,40 T1440,40 L1440,80 Z' fill='%23f8fafc'/%3E%3C/svg%3E");
}

.sp-wave-bottom-warm {
  bottom: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L0,40 Q360,0 720,40 T1440,40 L1440,80 Z' fill='%23FFF8F3'/%3E%3C/svg%3E");
}

/* ===================== CONTAINERS ===================== */

.sp-inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}

.sp-inner-wide {
  max-width: 1100px;
}

/* ===================== SPLIT LAYOUTS ===================== */

.sp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.sp-split-reverse {
  direction: rtl;
}

.sp-split-reverse > * {
  direction: ltr;
}

.sp-split-60 {
  grid-template-columns: 1.2fr 0.8fr;
}

.sp-split-40 {
  grid-template-columns: 0.8fr 1.2fr;
}

/* ===================== TYPOGRAPHY ===================== */

.sp-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FF844B;
  margin-bottom: 12px;
}

.sp-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.sp-section-title-light { color: #fff; }

.sp-prose {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 24px;
}

.sp-prose:last-child { margin-bottom: 0; }

.sp-prose strong {
  color: #1e293b;
  font-weight: 600;
}

.sp-prose-light {
  color: rgba(255, 255, 255, 0.7);
}

.sp-prose-light strong {
  color: #fff;
}

.sp-inline-link {
  color: #FF6B2C;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 107, 44, 0.25);
  transition: all 0.2s ease;
}

.sp-inline-link:hover {
  color: #e85d26;
  border-bottom-color: #e85d26;
}

.sp-inline-link-light {
  color: #FFB088;
  border-bottom-color: rgba(255, 176, 136, 0.35);
}

.sp-inline-link-light:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* ===================== VISUAL CALLOUT BOXES ===================== */

.sp-callout {
  padding: 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.sp-callout-warm {
  background: linear-gradient(135deg, #FFF8F3 0%, #FFF0E6 100%);
  border-color: rgba(255, 132, 75, 0.15);
}

.sp-callout-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.sp-callout-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sp-callout-title-light { color: #fff; }

.sp-callout-title-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 132, 75, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

/* ===================== STAT BLOCKS ===================== */

.sp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.sp-stat {
  padding: 24px 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.sp-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.sp-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #FF6B2C;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.sp-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sp-stat-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.sp-stat-dark .sp-stat-label {
  color: rgba(255, 255, 255, 0.5);
}

/* ===================== METHOD SECTION ===================== */

.sp-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 0;
}

.sp-method-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.sp-method-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 132, 75, 0.2);
  transform: translateY(-3px);
}

.sp-method-card-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #FF844B, #FF6B2C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.sp-method-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.sp-method-card p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

/* ===================== COMPARISON ===================== */

.sp-compare-col {
  border-radius: 16px;
  padding: 28px 24px;
}

.sp-compare-col-bad {
  background: #fff;
  border: 1px solid #fecaca;
}

.sp-compare-col-good {
  background: #fff;
  border: 1px solid rgba(255, 132, 75, 0.25);
  box-shadow: 0 4px 24px rgba(255, 132, 75, 0.06);
}

.sp-compare-col-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.sp-compare-col-bad .sp-compare-col-label { color: #ef4444; }
.sp-compare-col-good .sp-compare-col-label { color: #FF844B; }

.sp-compare-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-compare-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.sp-compare-col-bad .sp-compare-item { color: #64748b; }
.sp-compare-col-good .sp-compare-item { color: #1e293b; font-weight: 500; }

.sp-compare-item-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.sp-compare-col-bad .sp-compare-item-icon { background: rgba(239, 68, 68, 0.08); color: #ef4444; }
.sp-compare-col-good .sp-compare-item-icon { background: rgba(255, 132, 75, 0.1); color: #FF844B; }
.sp-compare-item-icon svg { width: 10px; height: 10px; }

/* ===================== FINANCE ===================== */

.sp-finance-card {
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.sp-finance-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.sp-finance-card-label-red { color: #ef4444; }
.sp-finance-card-label-green { color: #16a34a; }

.sp-finance-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
  color: #4a5568;
}

.sp-finance-line:last-child {
  border-bottom: none;
  padding-top: 12px;
  font-weight: 700;
  color: #1e293b;
}

.sp-finance-line span:last-child {
  font-weight: 600;
  color: #1e293b;
}

/* ===================== PRICING ===================== */

.sp-pricing-hero-bg {
  position: relative;
  background: linear-gradient(160deg, #FFA573 0%, #FF844B 40%, #FF6B2C 80%, #e85d26 100%);
  padding: 80px 0;
  overflow: hidden;
}

.sp-pricing-hero-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 70%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(255, 200, 150, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.sp-pricing-hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.sp-pricing-wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,40 Q360,80 720,40 T1440,40 L1440,0 Z' fill='%23f8fafc'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.sp-pricing-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L0,40 Q360,0 720,40 T1440,40 L1440,80 Z' fill='%23FFF8F3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.sp-pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.sp-pricing-card {
  position: relative;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sp-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  border-radius: 18px;
  pointer-events: none;
  z-index: 0;
}

.sp-pricing-card > * {
  position: relative;
  z-index: 1;
}

.sp-pricing-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
}

.sp-pricing-highlight {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
}

.sp-pricing-tag {
  display: inline-flex;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 12px;
  width: fit-content;
}

.sp-pricing-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.sp-pricing-card .sp-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.sp-pricing-card .sp-price-per {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.sp-pricing-card .sp-price-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sp-pricing-card .sp-price-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.sp-pricing-card .sp-price-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

.sp-pricing-card .sp-price-item::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/9px no-repeat;
}

.sp-pricing-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.sp-pricing-note strong {
  color: #fff;
  font-weight: 600;
}

.sp-pricing-hero-bg .sp-inline-link-light {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 2px;
  font-weight: 600;
}

.sp-pricing-hero-bg .sp-inline-link-light:hover {
  text-decoration-color: #fff;
}

/* ===================== AUDIENCE ===================== */

.sp-audience-block {
  padding: 28px 24px;
  border-radius: 16px;
}

.sp-audience-yes {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.sp-audience-no {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.sp-audience-header h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.sp-audience-yes .sp-audience-header h3 { color: #166534; }
.sp-audience-no .sp-audience-header h3 { color: #991b1b; }

.sp-audience-items { display: flex; flex-direction: column; gap: 12px; }

.sp-audience-item { display: flex; align-items: flex-start; gap: 10px; }

.sp-audience-item-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

.sp-audience-yes .sp-audience-item-icon { background: rgba(22, 163, 74, 0.12); color: #16a34a; }
.sp-audience-no .sp-audience-item-icon { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.sp-audience-item-text { font-size: 14px; line-height: 1.5; }
.sp-audience-yes .sp-audience-item-text { color: #166534; }
.sp-audience-no .sp-audience-item-text { color: #991b1b; }
.sp-audience-item-text strong { font-weight: 600; }

/* ===================== CALLOUT LIST & STEPS ===================== */

.sp-callout-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-callout-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: #4a5568;
}

.sp-callout-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid #ef4444;
}

.sp-callout-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-callout-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sp-callout-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #FF844B, #FF6B2C);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ===================== FUNNEL VISUAL ===================== */

.sp-funnel-visual {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-funnel-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.sp-funnel-stage:hover {
  transform: translateX(4px);
}

.sp-funnel-tofu {
  background: rgba(255, 176, 136, 0.12);
  border: 1px solid rgba(255, 176, 136, 0.2);
}

.sp-funnel-mofu {
  background: rgba(255, 132, 75, 0.12);
  border: 1px solid rgba(255, 132, 75, 0.2);
  margin-left: 16px;
}

.sp-funnel-bofu {
  background: rgba(255, 107, 44, 0.15);
  border: 1px solid rgba(255, 107, 44, 0.25);
  margin-left: 32px;
}

.sp-funnel-stage-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFB088;
}

.sp-funnel-stage-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===================== COMPARE GRID INLINE ===================== */

.sp-compare-grid-inline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===================== POTENTIAL CARDS ===================== */

.sp-potential-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-potential-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.sp-potential-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border-color: rgba(255, 132, 75, 0.2);
}

.sp-potential-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFF8F3 0%, #FFF0E6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sp-potential-content {
  flex: 1;
}

.sp-potential-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FF844B;
  margin-bottom: 4px;
}

.sp-potential-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.sp-potential-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}

/* ===================== FINANCE VERTICAL ===================== */

.sp-finance-split-vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-finance-example {
  display: flex;
  flex-direction: column;
}

/* ===================== AUDIENCE VERTICAL ===================== */

.sp-audience-blocks-vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===================== INTERLINK DIAGRAM (REVISED) ===================== */

.sp-interlink {
  position: relative;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.sp-interlink-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFB088;
  margin-bottom: 20px;
  text-align: center;
}

.sp-interlink-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.sp-interlink-node {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  width: 100%;
  max-width: 260px;
  transition: all 0.3s ease;
}

.sp-interlink-node:hover {
  transform: scale(1.03);
}

.sp-interlink-node-pillar {
  background: linear-gradient(135deg, #FF844B, #FF6B2C);
  box-shadow: 0 4px 16px rgba(255, 107, 44, 0.3);
}

.sp-interlink-node-support {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-interlink-node-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sp-interlink-node-pillar .sp-interlink-node-dot {
  background: #fff;
}

.sp-interlink-node-support .sp-interlink-node-dot {
  background: #FFB088;
}

.sp-interlink-node-text {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  flex: 1;
}

.sp-interlink-node-support .sp-interlink-node-text {
  color: rgba(255, 255, 255, 0.7);
}

.sp-interlink-node-tag {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.sp-interlink-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2px 0;
}

.sp-interlink-arrow-line {
  width: 1px;
  height: 8px;
  background: rgba(255, 176, 136, 0.3);
}

.sp-interlink-arrow svg {
  width: 10px;
  height: 10px;
  color: #FFB088;
  opacity: 0.5;
}

.sp-interlink-return {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 14px;
  background: rgba(255, 176, 136, 0.06);
  border: 1px dashed rgba(255, 176, 136, 0.2);
  border-radius: 8px;
  width: 100%;
  max-width: 260px;
}

.sp-interlink-return-text {
  font-size: 10px;
  color: rgba(255, 176, 136, 0.6);
  font-weight: 600;
}

.sp-interlink-return svg {
  width: 12px;
  height: 12px;
  color: #FFB088;
  opacity: 0.4;
  flex-shrink: 0;
}

/* ===================== GROWTH CHART ===================== */

.sp-growth-chart {
  padding: 28px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-top: 24px;
}

.sp-growth-chart-title {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  text-align: center;
}

.sp-growth-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 180px;
  padding: 0 8px;
  border-bottom: 1px solid #e2e8f0;
}

.sp-growth-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.sp-growth-bar-pair {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.sp-growth-bar-value {
  font-size: 11px;
  font-weight: 700;
  color: #1e293b;
}

.sp-growth-bar-value-invest {
  font-size: 9px;
  font-weight: 600;
  color: #94a3b8;
}

.sp-growth-bar {
  width: 36px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #FF844B 0%, #FF6B2C 100%);
  transition: all 0.3s ease;
  min-height: 4px;
}

.sp-growth-bar:hover {
  opacity: 0.85;
}

.sp-growth-bar-invest {
  background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
  width: 20px;
}

.sp-growth-labels {
  display: flex;
  justify-content: space-around;
  padding: 12px 8px 0;
}

.sp-growth-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}

.sp-growth-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.sp-growth-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #64748b;
}

.sp-growth-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.sp-growth-legend-dot-revenue {
  background: linear-gradient(180deg, #FF844B, #FF6B2C);
}

.sp-growth-legend-dot-invest {
  background: linear-gradient(180deg, #e2e8f0, #cbd5e1);
}

/* ===================== SEO TECHNICAL GRID ===================== */

.sp-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sp-seo-item {
  padding: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.sp-seo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border-color: rgba(255, 132, 75, 0.2);
}

.sp-seo-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.sp-seo-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 132, 75, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-seo-item-icon svg {
  width: 16px;
  height: 16px;
  stroke: #FF844B;
  fill: none;
}

.sp-seo-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.sp-seo-item p {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}

/* ===================== CLUSTER RULES ===================== */

.sp-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sp-rule-card {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.sp-rule-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 176, 136, 0.2);
  transform: translateY(-2px);
}

.sp-rule-num {
  font-size: 11px;
  font-weight: 800;
  color: #FFB088;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sp-rule-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 176, 136, 0.15);
}

.sp-rule-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.sp-rule-desc {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* ===================== CTA LIGHT BUTTONS ===================== */

.sp-cta-light-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.sp-cta-light-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: #FF6B2C;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid rgba(255, 107, 44, 0.25);
  transition: all 0.3s ease;
}

.sp-cta-light-btn-ghost:hover {
  border-color: #FF6B2C;
  background: rgba(255, 107, 44, 0.04);
  color: #FF6B2C;
  transform: translateY(-2px);
}

.sp-cta-light-btn-ghost svg { width: 15px; height: 15px; transition: transform 0.3s ease; }
.sp-cta-light-btn-ghost:hover svg { transform: translateX(3px); }

/* ===================== MID-PAGE CTA WRAPPER ===================== */

.sp-mid-cta-wrapper {
  padding: 40px 0;
  background: #f8fafc;
}

.sp-mid-cta-wrapper .footer-cta-section {
  padding: 0 48px;
}

.sp-mid-cta-wrapper .footer-cta-content {
  text-align: left;
}

.sp-mid-cta-wrapper .footer-cta-text {
  display: none;
}

.sp-compact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sp-compact-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.sp-mid-cta-text-side {
  text-align: left;
}

.sp-mid-cta-text-side h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.sp-mid-cta-text-side p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.sp-mid-cta-text-side p:last-child {
  margin-bottom: 0;
}

.sp-mid-cta-text-side strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.sp-mid-cta-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  text-align: left;
}

.sp-mid-cta-split .footer-contact-form {
  max-width: none;
  margin: 0;
}

/* ===================== CTA BANNER (ORANGE) ===================== */

.sp-cta-banner-section {
  padding: 4rem 0;
}

.sp-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 50%, #ffc299 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.sp-cta-circles-container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 66.666%;
  pointer-events: none;
  overflow: hidden;
}

.sp-cta-circles-wrapper {
  position: absolute;
  right: -8rem;
  top: 50%;
  transform: translateY(-50%);
}

.sp-cta-circles {
  position: relative;
  width: 24rem;
  height: 24rem;
}

.sp-cta-circle {
  position: absolute;
  border-radius: 50%;
}

.sp-cta-circle-1 { inset: 0; border: 60px solid rgba(251, 146, 60, 0.3); }
.sp-cta-circle-2 { inset: 3rem; border: 50px solid rgba(253, 186, 116, 0.25); }
.sp-cta-circle-3 { inset: 6rem; border: 40px solid rgba(254, 215, 170, 0.2); }
.sp-cta-circle-4 { inset: 9rem; border: 30px solid rgba(255, 237, 213, 0.15); }

.sp-cta-floating-text-container {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  opacity: 0.05;
}

.sp-cta-floating-text {
  color: white;
  font-weight: 900;
  font-size: 2.25rem;
  white-space: nowrap;
  animation: sp-scrollText 30s linear infinite;
}

@keyframes sp-scrollText {
  0% { transform: translateX(0) rotate(-6deg); }
  100% { transform: translateX(-50%) rotate(-6deg); }
}

.sp-cta-banner-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
}

.sp-cta-banner-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.sp-cta-banner-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 36rem;
}

.sp-cta-banner-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sp-cta-banner-btn {
  background-color: black;
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.sp-cta-banner-btn:hover {
  background-color: #1f2937;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
  color: white;
}

.sp-cta-banner-btn svg { transition: transform 0.3s ease; }
.sp-cta-banner-btn:hover svg { transform: translateX(0.25rem); }

@media (min-width: 640px) {
  .sp-cta-banner { padding: 3rem; }
  .sp-cta-banner-btns { flex-direction: row; }
  .sp-cta-floating-text { font-size: 3.75rem; }
  .sp-cta-circles { width: 31.25rem; height: 31.25rem; }
}

@media (min-width: 1024px) {
  .sp-cta-banner { padding: 4rem; }
  .sp-cta-banner-title { font-size: 3.75rem; }
  .sp-cta-banner-desc { font-size: 1.125rem; }
  .sp-cta-floating-text { font-size: 4.5rem; }
  .sp-cta-circles { width: 37.5rem; height: 37.5rem; }
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 900px) {
  .sp-hero-inner { grid-template-columns: 1fr; padding: 140px 24px 80px; gap: 40px; }
  .sp-hero-title { font-size: 2.4rem; }
  .sp-hero-right { max-width: 360px; margin: 0 auto; }
  .sp-split { grid-template-columns: 1fr; gap: 32px; }
  .sp-split-reverse { direction: ltr; }
  .sp-split-60, .sp-split-40 { grid-template-columns: 1fr; }
  .sp-method-grid { grid-template-columns: 1fr; }
  .sp-finance-split { grid-template-columns: 1fr; }
  .sp-pricing-row { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .sp-stats { grid-template-columns: repeat(3, 1fr); }
  .sp-inner { padding: 0 24px; }
  .sp-mid-cta-wrapper .footer-cta-section { padding: 0 24px; }
  .sp-funnel-mofu { margin-left: 0; }
  .sp-funnel-bofu { margin-left: 0; }
  .sp-seo-grid { grid-template-columns: 1fr; }
  .sp-growth-bar { width: 28px; }
  .sp-growth-bar-invest { width: 16px; }
  .sp-rules-grid { grid-template-columns: 1fr; }
  .sp-compact-row { grid-template-columns: 1fr; }
  .sp-compact-row-3 { grid-template-columns: 1fr; }
  .sp-approach-grid { grid-template-columns: 1fr; }
  .sp-mid-cta-split { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 600px) {
  .sp-hero-inner { padding: 120px 20px 60px; }
  .sp-hero-title { font-size: 1.9rem; }
  .sp-hero-desc { font-size: 15px; }
  .sp-hero-btns { flex-direction: column; }
  .sp-section { padding: 56px 0; }
  .sp-section-dark { padding: 64px 0; }
  .sp-section-title { font-size: 1.5rem; }
  .sp-inner { padding: 0 20px; }
  .sp-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .sp-stat { padding: 16px 12px; }
  .sp-stat-value { font-size: 1.5rem; }
  .sp-mid-cta-wrapper .footer-cta-section { padding: 0 20px; }
  .sp-mid-cta-wrapper { padding: 20px 0; }
  .sp-potential-value { font-size: 1.2rem; }
  .sp-growth-bars { height: 140px; }
  .sp-growth-bar { width: 22px; }
  .sp-growth-bar-invest { width: 14px; }
  .sp-cta-banner-section { padding: 2rem 0; }
  .sp-cta-banner-title { font-size: 1.6rem; }
  .sp-seo-grid { grid-template-columns: 1fr; }
  .sp-rules-grid { grid-template-columns: 1fr; }
  .sp-approach-grid { grid-template-columns: 1fr; }
  .sp-hero-pricing-amount { font-size: 1.8rem; }
}
