@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0e1a;
  color: #e8eaf0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.cs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 100px;
}

.cs-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cs-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,12,30,0.92) 0%, rgba(15,25,60,0.88) 50%, rgba(8,12,30,0.95) 100%);
  z-index: 1;
}

.cs-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.cs-hero__particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(99, 179, 237, 0.15);
  animation: cs-float 6s ease-in-out infinite;
}

@keyframes cs-float {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.1); opacity: 0.6; }
}

.cs-hero__content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
}

.cs-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 179, 237, 0.15);
  border: 1px solid rgba(99, 179, 237, 0.3);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #63b3ed;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.cs-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #63b3ed;
  animation: cs-pulse 2s ease-in-out infinite;
}

@keyframes cs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.cs-hero__h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cs-hero__h1 span {
  background: linear-gradient(135deg, #63b3ed 0%, #7c3aed 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cs-hero__h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
  color: #a8b8d8;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.cs-hero__paragraph {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  color: #8892a4;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.35);
  letter-spacing: 0.01em;
}

.cs-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, #2563eb 0%, #6d28d9 100%);
}

.cs-btn-primary--large {
  font-size: 18px;
  padding: 20px 48px;
}

.cs-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #63b3ed;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid rgba(99, 179, 237, 0.4);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.cs-btn-secondary:hover {
  background: rgba(99, 179, 237, 0.1);
  border-color: #63b3ed;
  transform: translateY(-2px);
  color: #90cdf4;
}

/* ===== STATS BAR ===== */
.cs-stats {
  background: linear-gradient(135deg, #1a1f3a 0%, #0f1429 100%);
  border-top: 1px solid rgba(99, 179, 237, 0.1);
  border-bottom: 1px solid rgba(99, 179, 237, 0.1);
  padding: 60px 24px;
}

.cs-stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cs-stats__block {
  text-align: center;
  padding: 40px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(99, 179, 237, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cs-stats__block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #7c3aed);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cs-stats__block:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 179, 237, 0.25);
  background: rgba(99, 179, 237, 0.05);
}

.cs-stats__block:hover::before {
  opacity: 1;
}

.cs-stats__value {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  background: linear-gradient(135deg, #63b3ed 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}

.cs-stats__label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #8892a4;
  letter-spacing: 0.02em;
}

.cs-stats__badge {
  text-align: center;
  margin-top: 40px;
}

.cs-stats__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(59, 130, 246, 0.2));
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 100px;
  padding: 10px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #c4b5fd;
  letter-spacing: 0.05em;
}

/* ===== FEATURED CASE STUDY ===== */
.cs-featured {
  padding: 100px 24px;
  background: #0a0e1a;
  position: relative;
  overflow: hidden;
}

.cs-featured__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.cs-featured__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cs-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #63b3ed;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.cs-section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #63b3ed;
}

.cs-featured__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cs-featured__metric {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(124, 58, 237, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 16px 28px;
  margin-bottom: 28px;
}

.cs-featured__metric-value {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #63b3ed, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cs-featured__metric-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #8892a4;
  font-weight: 500;
}

.cs-featured__paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #8892a4;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.cs-featured__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cs-featured__left {
  display: flex;
  flex-direction: column;
}

.cs-featured__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cs-before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.cs-before-after__panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.cs-before-after__panel:hover {
  border-color: rgba(99, 179, 237, 0.2);
}

.cs-before-after__panel--before {
  border-color: rgba(239, 68, 68, 0.2);
}

.cs-before-after__panel--after {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.05);
}

.cs-before-after__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8892a4;
  margin-bottom: 8px;
}

.cs-before-after__panel--before .cs-before-after__value {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #f87171;
}

.cs-before-after__panel--after .cs-before-after__value {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #4ade80;
}

.cs-before-after__sublabel {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.cs-before-after__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

/* Revenue Chart */
.cs-revenue-chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(99, 179, 237, 0.1);
  border-radius: 20px;
  padding: 28px;
  position: relative;
}

.cs-revenue-chart__title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #8892a4;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cs-revenue-chart__svg {
  width: 100%;
  height: 180px;
}

.cs-revenue-chart__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.cs-revenue-chart__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #6b7280;
}

/* ===== OUTCOMES GRID ===== */
.cs-outcomes {
  padding: 100px 24px;
  background: linear-gradient(180deg, #0d1220 0%, #0a0e1a 100%);
}

.cs-outcomes__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cs-outcomes__header {
  text-align: center;
  margin-bottom: 64px;
}

.cs-outcomes__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cs-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.cs-outcome-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.cs-outcome-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(124, 58, 237, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cs-outcome-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 179, 237, 0.25);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

.cs-outcome-card:hover::after {
  opacity: 1;
}

.cs-outcome-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(124, 58, 237, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  z-index: 1;
}

.cs-outcome-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #a8b8d8;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ===== MORE SUCCESS STORIES ===== */
.cs-stories {
  padding: 100px 24px;
  background: #0a0e1a;
}

.cs-stories__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cs-stories__header {
  text-align: center;
  margin-bottom: 64px;
}

.cs-stories__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.cs-stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cs-story-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cs-story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 179, 237, 0.2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.cs-story-card__graphic {
  width: 100%;
  height: 200px;
  position: relative;
  background: linear-gradient(135deg, #0f1635 0%, #1a2044 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cs-story-card__graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.cs-story-card__graphic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
}

.cs-story-card__industry {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  z-index: 2;
}

.cs-story-card__metric {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(99, 179, 237, 0.3);
  color: #63b3ed;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.cs-story-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cs-story-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cs-story-card__challenge {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #8892a4;
  line-height: 1.6;
  margin-bottom: 12px;
}

.cs-story-card__challenge strong {
  color: #a8b8d8;
  font-weight: 600;
}

.cs-story-card__result {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #8892a4;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cs-story-card__result strong {
  color: #a8b8d8;
  font-weight: 600;
}

.cs-story-card__footer {
  margin-top: auto;
}

/* ===== TESTIMONIALS ===== */
.cs-testimonials {
  padding: 100px 24px;
  background: linear-gradient(135deg, #0d1220 0%, #1a1030 50%, #0d1220 100%);
  position: relative;
  overflow: hidden;
}

.cs-testimonials__glow-left {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.cs-testimonials__glow-right {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.cs-testimonials__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cs-testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

.cs-testimonials__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.cs-carousel {
  position: relative;
}

.cs-carousel__track-wrapper {
  overflow: hidden;
  border-radius: 24px;
}

.cs-carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-carousel__slide {
  min-width: 100%;
  padding: 0 4px;
}

.cs-testimonial-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 48px 48px 40px;
  text-align: center;
  position: relative;
}

.cs-testimonial-card__quote-icon {
  font-size: 64px;
  line-height: 1;
  color: rgba(99, 179, 237, 0.3);
  font-family: Georgia, serif;
  position: absolute;
  top: 24px;
  left: 40px;
}

.cs-testimonial-card__quote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  color: #d1dae8;
  line-height: 1.75;
  margin-bottom: 36px;
  font-style: italic;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.cs-testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cs-testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(99, 179, 237, 0.3);
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.cs-testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-testimonial-card__info {
  text-align: left;
}

.cs-testimonial-card__name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.cs-testimonial-card__role {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #63b3ed;
  font-weight: 500;
}

.cs-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.cs-carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cs-carousel__btn:hover {
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  border-color: transparent;
  transform: scale(1.1);
}

.cs-carousel__dots {
  display: flex;
  gap: 8px;
}

.cs-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.cs-carousel__dot--active {
  width: 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, #3b82f6, #7c3aed);
}

/* ===== COMPOUNDING EXPLAINER ===== */
.cs-compound {
  padding: 100px 24px;
  background: #0a0e1a;
}

.cs-compound__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cs-compound__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cs-compound__heading span {
  background: linear-gradient(135deg, #63b3ed, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cs-compound__paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #8892a4;
  line-height: 1.8;
  margin-bottom: 32px;
}

.cs-compound__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-compound__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cs-compound__feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(124, 58, 237, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cs-compound__feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #a8b8d8;
  line-height: 1.5;
}

.cs-compound__chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(99, 179, 237, 0.1);
  border-radius: 24px;
  padding: 32px;
}

.cs-compound__chart-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #8892a4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.cs-compound__chart-svg {
  width: 100%;
  height: 240px;
}

.cs-compound__chart-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 16px;
}

.cs-compound__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #8892a4;
}

.cs-compound__legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* ===== FINAL CTA ===== */
.cs-cta {
  padding: 120px 24px;
  background: linear-gradient(135deg, #0f1635 0%, #1a0a2e 50%, #0f1635 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cs-cta__bg-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cs-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cs-cta__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cs-cta__paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #8892a4;
  margin-bottom: 48px;
  line-height: 1.7;
}

.cs-cta__platforms {
  margin-top: 60px;
}

.cs-cta__platforms-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 20px;
}

.cs-cta__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cs-cta__badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #a8b8d8;
  transition: all 0.3s ease;
}

.cs-cta__badge:hover {
  background: rgba(99, 179, 237, 0.1);
  border-color: rgba(99, 179, 237, 0.3);
  color: #63b3ed;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .cs-outcomes__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .cs-featured__split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cs-stories__grid {
    grid-template-columns: 1fr 1fr;
  }
  .cs-compound__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cs-outcomes__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cs-stats__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .cs-stats__block {
    padding: 28px 16px;
  }
  .cs-stories__grid {
    grid-template-columns: 1fr;
  }
  .cs-outcomes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs-testimonial-card {
    padding: 36px 24px 28px;
  }
  .cs-testimonial-card__quote-icon {
    left: 20px;
  }
}

@media (max-width: 480px) {
  .cs-stats__inner {
    grid-template-columns: 1fr;
  }
  .cs-outcomes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs-before-after {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cs-before-after__arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .cs-hero__h1 {
    font-size: 42px;
  }
  .cs-cta__badges {
    gap: 8px;
  }
}


    /* Editable elements styling - HIGHEST PRIORITY */
    .editable:hover:not(.editor-tool):not([data-editor-tool]) {
      outline: 2px dashed #ff9800 !important;
      outline-offset: 2px !important;
      cursor: pointer !important;
      z-index: 999999 !important;
    }
    .selected-editable:not(.editor-tool):not([data-editor-tool]) {
      outline: 3px solid #ff9800 !important;
      outline-offset: 2px !important;
      box-shadow: 0 0 8px 2px #ff980033 !important;
      z-index: 999999 !important;
    }
    /* Prevent editor tools from having editor styles */
    .editor-tool,
    [data-editor-tool] {
      outline: none !important;
      cursor: default !important;
    }
    /* Drag and drop styles */
    .dragging {
      opacity: 0.5 !important;
    }
    .drag-over {
      border-top: 3px solid #4CAF50 !important;
    }


    /* Editable elements styling - HIGHEST PRIORITY */
    .editable:hover:not(.editor-tool):not([data-editor-tool]) {
      outline: 2px dashed #ff9800 !important;
      outline-offset: 2px !important;
      cursor: pointer !important;
      z-index: 999999 !important;
    }
    .selected-editable:not(.editor-tool):not([data-editor-tool]) {
      outline: 3px solid #ff9800 !important;
      outline-offset: 2px !important;
      box-shadow: 0 0 8px 2px #ff980033 !important;
      z-index: 999999 !important;
    }
    /* Prevent editor tools from having editor styles */
    .editor-tool,
    [data-editor-tool] {
      outline: none !important;
      cursor: default !important;
    }
    /* Drag and drop styles */
    .dragging {
      opacity: 0.5 !important;
    }
    .drag-over {
      border-top: 3px solid #4CAF50 !important;
    }


    /* Editable elements styling - HIGHEST PRIORITY */
    .editable:hover:not(.editor-tool):not([data-editor-tool]) {
      outline: 2px dashed #ff9800 !important;
      outline-offset: 2px !important;
      cursor: pointer !important;
      z-index: 999999 !important;
    }
    .selected-editable:not(.editor-tool):not([data-editor-tool]) {
      outline: 3px solid #ff9800 !important;
      outline-offset: 2px !important;
      box-shadow: 0 0 8px 2px #ff980033 !important;
      z-index: 999999 !important;
    }
    /* Prevent editor tools from having editor styles */
    .editor-tool,
    [data-editor-tool] {
      outline: none !important;
      cursor: default !important;
    }
    /* Drag and drop styles */
    .dragging {
      opacity: 0.5 !important;
    }
    .drag-over {
      border-top: 3px solid #4CAF50 !important;
    }
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');#footer{background:#0d1b2a;color:#ffffff;font-family:'Poppins',sans-serif;padding:60px 0 0 0;width:100%;box-sizing:border-box;}#footer *{box-sizing:border-box;}#footer .footer-container{max-width:1200px;margin:0 auto;padding:0 24px;}#footer .footer-top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;padding-bottom:48px;}#footer .footer-brand{}#footer .footer-logo{font-size:1.4rem;font-weight:700;color:#ffffff;letter-spacing:-0.5px;margin-bottom:12px;display:block;}#footer .footer-logo span{color:#4f9cf9;}#footer .footer-tagline{font-size:0.875rem;color:#a0aec0;line-height:1.7;margin:0 0 24px 0;max-width:260px;}#footer .footer-social{display:flex;gap:12px;margin-top:8px;}#footer .footer-social a{display:flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,0.08);color:#ffffff;text-decoration:none;transition:background 0.3s ease,transform 0.2s ease;font-size:0.85rem;}#footer .footer-social a:hover{background:#4f9cf9;transform:translateY(-2px);}#footer .footer-col-title{font-size:0.8rem;font-weight:600;text-transform:uppercase;letter-spacing:1.5px;color:#4f9cf9;margin-bottom:20px;}#footer .footer-links{list-style:none;margin:0;padding:0;}#footer .footer-links li{margin-bottom:10px;}#footer .footer-links a{color:#a0aec0;text-decoration:none;font-size:0.875rem;font-weight:400;transition:color 0.25s ease,padding-left 0.25s ease;display:inline-block;}#footer .footer-links a:hover{color:#ffffff;padding-left:6px;}#footer .footer-divider{border:none;border-top:1px solid rgba(255,255,255,0.08);margin:0;}#footer .footer-bottom{display:flex;align-items:center;justify-content:space-between;padding:22px 24px;max-width:1200px;margin:0 auto;flex-wrap:wrap;gap:12px;}#footer .footer-copy{font-size:0.8rem;color:#718096;margin:0;}#footer .footer-copy a{color:#4f9cf9;text-decoration:none;}#footer .footer-copy a:hover{text-decoration:underline;}#footer .footer-legal{display:flex;gap:20px;flex-wrap:wrap;}#footer .footer-legal a{font-size:0.8rem;color:#718096;text-decoration:none;transition:color 0.25s ease;}#footer .footer-legal a:hover{color:#ffffff;}@media(max-width:900px){#footer .footer-top{grid-template-columns:1fr 1fr;gap:32px;}}@media(max-width:580px){#footer .footer-top{grid-template-columns:1fr;gap:28px;}#footer .footer-bottom{flex-direction:column;align-items:flex-start;text-align:left;}#footer .footer-legal{gap:14px;}}