:root {
  --purple-dark: #8b56be;
  --purple-light: #ccb3e2;
  --purple-bg-light: #f6f2fa;
  --purple-text: #492e64;
  --btn-color: #ccb3e2;
  --btn-hover: #a87cce;
  --font-family: 'Poppins', 'Inter', sans-serif;
  --gradient-primary: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-light) 100%);
  --gradient-secondary: linear-gradient(135deg, #ffffff 0%, var(--purple-bg-light) 100%);
  --gradient-hero: linear-gradient(135deg, var(--purple-bg-light) 0%, #e8d5f7 50%, #ffffff 100%);
  --shadow-soft: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-strong: 0 8px 32px rgba(139, 86, 190, 0.2);
  --shadow-glow: 0 0 20px rgba(139, 86, 190, 0.3);
  --border-radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--purple-text);
  background: var(--gradient-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
  font-size: 3.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 3s ease-in-out infinite alternate;
}

h2 {
  font-size: 2.5rem;
  color: var(--purple-dark);
  position: relative;
}

h3 {
  font-size: 2rem;
  color: var(--purple-dark);
}

h4 {
  font-size: 1.5rem;
}

@keyframes textGlow {
  from { filter: brightness(1); }
  to { filter: brightness(1.2); }
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--border-radius);
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

.btn-outline-light {
  color: var(--purple-dark);
  border-color: var(--purple-light);
  border-radius: var(--border-radius);
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.btn-outline-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.btn-outline-light:hover::after {
  width: 100%;
}

.btn-outline-light:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.section-title {
  color: var(--purple-dark);
  font-weight: 600;
  position: relative;
  margin-bottom: 2rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background: var(--gradient-primary);
  margin: 15px auto 0;
  border-radius: 3px;
  animation: lineGrow 2s ease-out;
}

@keyframes lineGrow {
  from { width: 0; }
  to { width: 80px; }
}

.card {
  box-shadow: var(--shadow-soft);
  border-radius: var(--border-radius);
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, var(--purple-bg-light) 100%);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-glow);
}

/* Modern Card Styles */
.card {
  position: relative;
  border-radius: 20px;
  border: none;
  overflow: hidden;
  background: white;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(139, 86, 190, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-style: preserve-3d;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  border-radius: 20px;
}

.card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 86, 190, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(139, 86, 190, 0.25),
    0 0 0 1px rgba(139, 86, 190, 0.1);
}

.card:hover::before {
  opacity: 0.03;
}

.card:hover::after {
  opacity: 1;
}

.card-body {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.card-title {
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.card:hover .card-title {
  color: var(--purple-dark);
  transform: translateX(5px);
}

.card-text {
  color: var(--purple-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Service Cards with Icons */
.card .service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1.5rem;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 8px 20px rgba(139, 86, 190, 0.3);
}

.card:hover .service-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 30px rgba(139, 86, 190, 0.4);
}

/* Card with Badge/Ribbon */
.card-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--gradient-primary);
  color: white;
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(139, 86, 190, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--purple-light);
  font-family: Georgia, serif;
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 50px rgba(139, 86, 190, 0.2),
    0 0 0 1px rgba(139, 86, 190, 0.1);
}

/* Stat Cards in Hero */
.stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 86, 190, 0.1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.stat-card:hover::before {
  transform: scaleY(1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--purple-light);
}

.hero-bg {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(139, 86, 190, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(204, 179, 226, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 86, 190, 0.05) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 20px;
  height: 20px;
  background: var(--purple-light);
  border-radius: 50%;
  animation: floatReverse 15s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.alt-bg {
  background: linear-gradient(180deg, #ffffff 0%, var(--purple-bg-light) 100%);
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: bold;
  color: var(--purple-dark) !important;
  font-size: 1.8rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Modern Navbar Styles */
.modern-navbar {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.brand-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 86, 190, 0.3);
}

.brand-icon:hover {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 86, 190, 0.4);
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link-modern {
  position: relative;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 10px;
  color: var(--purple-text) !important;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-modern::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-link-modern:hover,
.nav-link-modern.active {
  color: var(--purple-dark) !important;
  background: rgba(139, 86, 190, 0.1);
}

.nav-link-modern:hover::before,
.nav-link-modern.active::before {
  transform: translateX(-50%) scaleX(1);
}

.btn-nav-login {
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  border: 2px solid var(--purple-light);
  color: var(--purple-dark);
  font-weight: 600;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-nav-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-nav-login:hover {
  color: white;
  border-color: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 86, 190, 0.3);
}

.btn-nav-login:hover::before {
  left: 0;
}

.btn-nav-signup {
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(139, 86, 190, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-nav-signup::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn-nav-signup:hover::after {
  width: 300px;
  height: 300px;
}

.btn-nav-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 86, 190, 0.4);
}

.navbar-toggler {
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(139, 86, 190, 0.25);
}

.footer {
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

/* Modern Footer Styles */
.modern-footer {
  position: relative;
  background: linear-gradient(135deg, #6b3fa0 0%, #8b56be 50%, #a87cce 100%);
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
  fill: #ffffff;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
}

.footer-brand {
  animation: fadeInUp 0.6s ease-out;
}

.footer-logo .footer-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo:hover .footer-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.25);
}

.footer-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: white;
  color: var(--purple-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.footer-heading {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.btn-footer-cta {
  background: white;
  color: var(--purple-dark);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-footer-cta:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--purple-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-bottom-link:hover {
  color: white;
  text-decoration: underline;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-circle {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  box-shadow: var(--shadow-strong);
}

.step-circle::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--purple-light);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-circle:hover::after {
  opacity: 1;
}

.step-circle:hover {
  transform: scale(1.2) rotate(360deg);
  box-shadow: var(--shadow-glow);
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--purple-bg-light) 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--purple-light);
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.faq-item {
  border: none;
  box-shadow: var(--shadow-soft);
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-button {
  background: var(--gradient-secondary);
  color: var(--purple-text);
  font-weight: 600;
  border-radius: var(--border-radius) !important;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-soft);
}

.accordion-button:focus {
  box-shadow: var(--shadow-soft);
}

.cta-section {
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 4s infinite;
}

.cta-section h2 {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.service-icon {
  font-size: 3rem;
  color: var(--purple-dark);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-icon:hover {
  transform: scale(1.1);
  color: var(--purple-light);
}

/* Enhanced Service Icons */
.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1.5rem;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 8px 20px rgba(139, 86, 190, 0.3);
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.service-icon:hover::before {
  width: 100%;
  height: 100%;
}

.service-icon:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 30px rgba(139, 86, 190, 0.4);
}

.card:hover .service-icon {
  animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(5deg); }
  50% { transform: scale(1.15) rotate(10deg); }
  75% { transform: scale(1.1) rotate(5deg); }
}

.pricing-card {
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.pricing-card:hover::before {
  opacity: 0.1;
}

.pricing-card:hover {
  border-color: var(--purple-dark);
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.popular {
  border-color: var(--purple-dark);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.popular::after {
  content: 'Most Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .hero-bg { min-height: 80vh; }
  .step-circle { width: 60px; height: 60px; font-size: 1.2rem; }
}

/* Hero Section Advanced Styles */
.hero-bg {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(139, 86, 190, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(204, 179, 226, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 86, 190, 0.05) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 20px;
  height: 20px;
  background: var(--purple-light);
  border-radius: 50%;
  animation: floatReverse 15s ease-in-out infinite;
}

/* Particles Animation */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(139, 86, 190, 0.3);
  border-radius: 50%;
  animation: particleFloat 15s ease-in-out infinite;
}

.particle-1 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 12px;
  height: 12px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.particle-3 {
  width: 6px;
  height: 6px;
  top: 40%;
  left: 60%;
  animation-delay: 4s;
}

.particle-4 {
  width: 10px;
  height: 10px;
  top: 80%;
  left: 30%;
  animation-delay: 6s;
}

.particle-5 {
  width: 14px;
  height: 14px;
  top: 10%;
  left: 70%;
  animation-delay: 8s;
}

.particle-6 {
  width: 7px;
  height: 7px;
  top: 70%;
  left: 20%;
  animation-delay: 10s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) translateX(20px) scale(1.2);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-60px) translateX(-10px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-30px) translateX(-20px) scale(1.1);
    opacity: 0.7;
  }
}

/* Hero Text Animations */
.animate-slide-up {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease-out forwards;
}

.animate-slide-up.delay-1 { animation-delay: 0.2s; }
.animate-slide-up.delay-2 { animation-delay: 0.4s; }
.animate-slide-up.delay-3 { animation-delay: 0.6s; }

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 3s ease-in-out infinite alternate;
}

/* Hero Buttons */
.hero-btn {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

.pulse-btn {
  animation: pulseBtn 2s ease-in-out infinite;
}

@keyframes pulseBtn {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Hero Mockup */
.hero-mockup {
  position: relative;
  z-index: 2;
}

.mockup-screen {
  max-width: 400px;
  margin: 0 auto;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.2),
    0 0 0 1px rgba(255,255,255,0.1);
  animation: mockupFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes mockupFloat {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-20px) rotateY(5deg); }
}

.mockup-header {
  background: var(--gradient-primary);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo-placeholder {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--purple-dark);
  font-size: 1.2rem;
}

.stat-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chart-placeholder {
  position: relative;
  overflow: hidden;
}

.chart-line {
  animation: chartGrow 2s ease-out forwards;
  opacity: 0;
}

.chart-line:nth-child(1) { animation-delay: 0.1s; }
.chart-line:nth-child(2) { animation-delay: 0.3s; }
.chart-line:nth-child(3) { animation-delay: 0.5s; }
.chart-line:nth-child(4) { animation-delay: 0.7s; }

@keyframes chartGrow {
  to {
    opacity: 1;
  }
}

/* Floating Elements */
.floating-element {
  position: absolute;
  animation: floating 6s ease-in-out infinite;
  z-index: 1;
}

.floating-1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.floating-2 {
  bottom: -30px;
  left: -30px;
  animation-delay: 2s;
}

.floating-3 {
  top: 50%;
  right: -40px;
  animation-delay: 4s;
}

.floating-4 {
  bottom: 20%;
  left: -20px;
  animation-delay: 1s;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-20px) rotate(120deg) scale(1.1);
  }
  66% {
    transform: translateY(10px) rotate(240deg) scale(0.9);
  }
}

/* Hero Glow Effect */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(139, 86, 190, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
  z-index: 3;
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 12px;
  margin: 0 auto 10px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(12px); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-text {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-bg {
    min-height: 80vh;
    padding: 4rem 0;
  }

  .hero-mockup {
    margin-top: 3rem;
  }

  .mockup-screen {
    max-width: 300px;
  }

  .floating-element {
    display: none;
  }

  .particles-container {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }
}

/* ============================================
   WHY CHOOSE SECTION - BENTO GRID LAYOUT
   ============================================ */
.why-choose-section {
  background: linear-gradient(135deg, #f8f5fc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.bento-item {
  position: relative;
}

.bento-large {
  grid-column: span 6;
  grid-row: span 2;
}

.bento-medium {
  grid-column: span 6;
}

.bento-regular {
  grid-column: span 4;
}

.bento-wide {
  grid-column: span 8;
}

.bento-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(139, 86, 190, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.bento-card:hover::before {
  opacity: 0.04;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 50px rgba(139, 86, 190, 0.2),
    0 0 0 1px rgba(139, 86, 190, 0.12);
}

.bento-icon-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.bento-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 8px 20px rgba(139, 86, 190, 0.3);
}

.bento-card:hover .bento-icon {
  transform: scale(1.1) rotate(5deg);
}

.bento-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.bento-text {
  color: var(--purple-text);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.bento-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  z-index: 2;
}

.featured-card {
  background: linear-gradient(135deg, #ffffff 0%, #f6f2fa 100%);
}

.price-card {
  background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
}

.speed-card {
  background: linear-gradient(135deg, #ffffff 0%, #fff3e0 100%);
}

.solution-card {
  background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
}

.price-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.price-label {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.speed-indicator {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.speed-bar {
  height: 6px;
  background: linear-gradient(90deg, #ff9800, #ff5722);
  border-radius: 10px;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
  animation: speedPulse 2s ease-in-out infinite;
}

@keyframes speedPulse {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(0.95); opacity: 0.8; }
}

.speed-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff5722;
}

.solution-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 86, 190, 0.1);
  color: var(--purple-dark);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
}

.feature-tag i {
  font-size: 0.9rem;
}

.benefit-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-pill:hover {
  border-color: var(--purple-light);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(139, 86, 190, 0.2);
}

.benefit-pill i {
  font-size: 1.5rem;
  color: var(--purple-dark);
}

.benefit-pill span {
  font-weight: 600;
  color: var(--purple-text);
}

/* Responsive Bento Grid */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .bento-large {
    grid-column: span 6;
  }
  
  .bento-medium {
    grid-column: span 6;
  }
  
  .bento-regular {
    grid-column: span 6;
  }
  
  .bento-wide {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .bento-large,
  .bento-medium,
  .bento-regular,
  .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .bento-card {
    padding: 2rem;
  }
  
  .bento-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
  
  .bento-title {
    font-size: 1.3rem;
  }
}

/* ============================================
   SERVICES SECTION - MODERN CARD GRID
   ============================================ */
.services-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f5fc 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card-modern {
  position: relative;
  border-radius: 24px;
  background: white;
  overflow: hidden;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(139, 86, 190, 0.06);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card-modern:hover::before {
  transform: scaleX(1);
}

.service-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 25px 60px rgba(139, 86, 190, 0.25),
    0 0 0 1px rgba(139, 86, 190, 0.12);
}

.service-card-inner {
  padding: 2.5rem;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-icon-modern {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(139, 86, 190, 0.3);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card-modern:hover .service-icon-modern {
  transform: scale(1.15) rotate(10deg);
}

.service-label {
  background: linear-gradient(135deg, #8b56be, #a87cce);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(139, 86, 190, 0.3);
}

.service-label.trending {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.service-label.premium {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.service-label.new {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.service-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-description {
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple-text);
  margin-bottom: 0.75rem;
}

.service-detail {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-benefits {
  margin: 1.5rem 0;
}

.benefits-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--purple-text);
  line-height: 1.6;
}

.benefits-list i {
  color: #4caf50;
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.service-action {
  margin-top: auto;
  padding-top: 1.5rem;
}

.btn-service-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 86, 190, 0.3);
}

.btn-service-modern:hover {
  color: white;
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(139, 86, 190, 0.4);
}

.btn-service-modern i {
  transition: transform 0.3s ease;
}

.btn-service-modern:hover i {
  transform: translateX(5px);
}

/* Service Card Variants */
.watch-time-card .service-icon-modern {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.subscribers-card .service-icon-modern {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.views-card .service-icon-modern {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.engagement-card .service-icon-modern {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.monetisation-card .service-icon-modern {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.livestream-card .service-icon-modern {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.seo-card .service-icon-modern {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.shares-card .service-icon-modern {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.shorts-card .service-icon-modern {
  background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card-inner {
    padding: 1.5rem;
  }
}
/* ============================================
   PRICING SECTION - INTERACTIVE TABLE
   ============================================ */
.pricing-section {
  background: linear-gradient(135deg, #f8f5fc 0%, #ffffff 100%);
  position: relative;
}

.pricing-table-modern {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-table-modern table {
  width: 100%;
  margin: 0;
}

.pricing-table-modern thead {
  background: var(--gradient-primary);
}

.pricing-table-modern thead th {
  color: white;
  font-weight: 700;
  padding: 1.5rem 1rem;
  border: none;
  text-align: left;
}

.pricing-table-modern tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(139, 86, 190, 0.1);
}

.pricing-table-modern tbody tr:hover {
  background: rgba(139, 86, 190, 0.05);
  transform: scale(1.01);
}

.pricing-table-modern tbody td {
  padding: 1.25rem 1rem;
  color: var(--purple-text);
  font-weight: 500;
}

.pricing-table-modern tbody td:first-child {
  font-weight: 700;
  color: var(--purple-dark);
}

.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ============================================
   MONETISATION SECTION - SPLIT SCREEN
   ============================================ */
.monetisation-section {
  background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
  position: relative;
  overflow: hidden;
}

.monetisation-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.monetisation-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.monetisation-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-box-modern {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-box-modern:hover {
  border-color: var(--purple-light);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(139, 86, 190, 0.2);
}

.stat-number-modern {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label-modern {
  color: var(--purple-text);
  font-weight: 600;
  font-size: 1.1rem;
}

.monetisation-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-box-modern {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: start;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.feature-box-modern:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(139, 86, 190, 0.2);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(139, 86, 190, 0.3);
}

.feature-content-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 0.5rem;
}

.feature-content-box p {
  color: var(--purple-text);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .monetisation-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .monetisation-stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   WHO CAN USE SECTION - PROFILE CARDS
   ============================================ */
.who-can-use-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f5fc 100%);
  position: relative;
}

.profile-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.profile-card-modern {
  position: relative;
  height: 400px;
  perspective: 1000px;
}

.profile-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.profile-card-modern:hover .profile-card-inner {
  transform: rotateY(180deg);
}

.profile-card-front,
.profile-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.profile-card-front {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.profile-icon-large {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 15px 40px rgba(139, 86, 190, 0.4);
}

.profile-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 1rem;
}

.profile-card-subtitle {
  color: var(--purple-text);
  font-size: 1rem;
}

.profile-card-back {
  background: var(--gradient-primary);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-card-back h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.profile-card-back p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.profile-card-back ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-card-back li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.profile-card-back li:last-child {
  border-bottom: none;
}

.profile-card-back li i {
  font-size: 1.1rem;
}

/* Profile Card Color Variants */
.profile-card-modern:nth-child(1) .profile-icon-large {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.profile-card-modern:nth-child(2) .profile-icon-large {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.profile-card-modern:nth-child(3) .profile-icon-large {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.profile-card-modern:nth-child(4) .profile-icon-large {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

@media (max-width: 768px) {
  .profile-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .profile-card-modern {
    height: auto;
    min-height: 350px;
  }
}

/* About Feature Box */
.about-feature-box {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(139, 86, 190, 0.1);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 86, 190, 0.2);
  border-color: rgba(139, 86, 190, 0.3);
  background: rgba(255, 255, 255, 0.8);
}

.about-feature-box h5 {
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 1.25rem;
}

.about-feature-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}
