:root {
  --purple: #602e9e;
  --orange: #d68e45;
  --light-purple: #f8f5fc;
  --light-orange: #fef8f3;
  --text-dark: #2d1b4e;
  --text-muted: #5d4a7a;
  --gradient-main: linear-gradient(135deg, #602e9e, #d68e45);
  --gradient-reverse: linear-gradient(135deg, #d68e45, #602e9e);
  --card-shadow: 0 8px 24px rgba(96, 46, 158, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
  background: #faf9fc;
}

/* ============================================================
   ENHANCED HERO SECTION
   ============================================================ */
.services-hero {
  position: relative;
  background: linear-gradient(135deg, #1a0d2e 0%, #2d1b4e 25%, #602e9e 50%, #d68e45 100%);
  color: #fff;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 15px 80px;
  overflow: hidden;
}

/* Animated gradient background */
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(96, 46, 158, 0.4) 0%,
    rgba(214, 142, 69, 0.4) 25%,
    rgba(96, 46, 158, 0.4) 50%,
    rgba(214, 142, 69, 0.4) 75%,
    rgba(96, 46, 158, 0.4) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  opacity: 0.6;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Dynamic overlay with pulsing effect */
.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(
      circle at 20% 50%,
      rgba(214, 142, 69, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(96, 46, 158, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 40%
    );
  pointer-events: none;
  animation: pulseOverlay 8s ease-in-out infinite;
}

@keyframes pulseOverlay {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Floating particles effect */
.services-hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    radial-gradient(circle, rgba(214, 142, 69, 0.1) 1px, transparent 1px),
    radial-gradient(circle, rgba(96, 46, 158, 0.1) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px, 100px 100px;
  background-position: 0 0, 40px 60px, 130px 270px;
  animation: particleFloat 30s linear infinite;
  pointer-events: none;
}

@keyframes particleFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-100px); }
}

.services-hero .container {
  position: relative;
  z-index: 2;
}

/* Enhanced badge with glow effect */
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 28px;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: badgeFloat 3s ease-in-out infinite, badgeGlow 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  animation: badgeShine 3s linear infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 8px 32px rgba(214, 142, 69, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5); }
}

@keyframes badgeShine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* Enhanced title with reveal animation */
.services-hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.8rem, 7vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  animation: titleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
               0 0 40px rgba(214, 142, 69, 0.2);
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Enhanced gradient text with animation */
.gradient-text {
  background: linear-gradient(
    135deg,
    #ffd369 0%,
    #fff 25%,
    #ffd369 50%,
    #fff 75%,
    #ffd369 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientTextFlow 4s linear infinite;
  display: inline-block;
  position: relative;
}

.gradient-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(135deg, #ffd369, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(20px);
  opacity: 0.5;
}

@keyframes gradientTextFlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Enhanced subtitle with stagger animation */
.services-hero-subtitle {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  max-width: 750px;
  margin: 0 auto 48px;
  opacity: 0;
  line-height: 1.8;
  animation: subtitleFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

@keyframes subtitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 0.95;
    transform: translateY(0);
  }
}

/* Decorative elements */
.services-hero .container::before,
.services-hero .container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.services-hero .container::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(214, 142, 69, 0.2) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float1 20s ease-in-out infinite;
  filter: blur(40px);
}

.services-hero .container::after {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(96, 46, 158, 0.3) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float2 15s ease-in-out infinite;
  filter: blur(50px);
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -40px) scale(1.15); }
}

/* ============================================================
   SECTION FRAMEWORK
   ============================================================ */
section {
  padding: 80px 15px;
}

.section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-main);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.light {
  color: #fff;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   WHAT IS REVOPS
   ============================================================ */
.what-is-revops {
  background: #fff;
}

.revops-definition-card {
  background: linear-gradient(135deg, #f8f5fc 0%, #fef8f3 100%);
  border-radius: 24px;
  padding: 48px 40px;
  border: 2px solid rgba(96, 46, 158, 0.1);
  box-shadow: 0 12px 40px rgba(96, 46, 158, 0.08);
  position: relative;
  overflow: hidden;
}

.revops-definition-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-main);
}

.definition-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--gradient-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 28px;
  box-shadow: 0 8px 24px rgba(96, 46, 158, 0.3);
}

.definition-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.definition-text strong {
  color: var(--purple);
  font-weight: 700;
}

.definition-text em {
  color: var(--orange);
  font-style: normal;
  font-weight: 600;
}

.definition-text-secondary {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
   WHY NEEDED
   ============================================================ */
.why-needed {
  background: linear-gradient(180deg, #faf9fc 0%, #f8f5fc 100%);
}

.challenge-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 2px solid rgba(96, 46, 158, 0.1);
  box-shadow: 0 4px 15px rgba(96, 46, 158, 0.08);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.challenge-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.challenge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(96, 46, 158, 0.15);
  border-color: var(--orange);
}

.challenge-card:hover::before {
  opacity: 1;
}

.challenge-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
}

.challenge-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(96, 46, 158, 0.1), rgba(214, 142, 69, 0.1));
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.challenge-card:hover .challenge-icon {
  background: var(--gradient-main);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.challenge-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.challenge-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   WHAT XHUB DOES
   ============================================================ */
.what-xhub-does {
  background: #fff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.solution-card {
  background: linear-gradient(135deg, #f8f5fc 0%, #fef8f3 100%);
  border-radius: 20px;
  padding: 40px 32px;
  border: 2px solid rgba(96, 46, 158, 0.1);
  box-shadow: 0 6px 20px rgba(96, 46, 158, 0.08);
  transition: all 0.4s ease;
  position: relative;
  text-align: center;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(96, 46, 158, 0.18);
  border-color: var(--orange);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-step {
  display: inline-block;
  background: var(--gradient-main);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.solution-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(96, 46, 158, 0.15);
  transition: all 0.3s ease;
}

.solution-card:hover .solution-icon-wrapper {
  background: var(--gradient-main);
  color: #fff;
  transform: scale(1.15);
}

.solution-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.solution-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   IMPACT SECTION
   ============================================================ */
.impact-section {
  background: linear-gradient(135deg, #602e9e 0%, #d68e45 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(0, 0, 0, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.impact-section .container {
  position: relative;
  z-index: 2;
}

.impact-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.impact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.impact-card:hover .impact-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.impact-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #fff;
}

.impact-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.services-faq {
  background: linear-gradient(180deg, #faf9fc 0%, #f8f5fc 100%);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 2px solid rgba(96, 46, 158, 0.12);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(96, 46, 158, 0.08);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.faq-item:hover {
  border-color: rgba(96, 46, 158, 0.28);
  box-shadow: 0 8px 28px rgba(96, 46, 158, 0.14);
  transform: translateY(-3px);
}

.faq-item.open {
  border-color: var(--orange);
  box-shadow: 0 12px 36px rgba(96, 46, 158, 0.18);
}

.faq-item::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.faq-item.open::before {
  opacity: 1;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.faq-badge {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(96, 46, 158, 0.08), rgba(214, 142, 69, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--purple);
  transition: background 0.35s ease, color 0.35s ease;
}

.faq-item.open .faq-badge {
  background: var(--gradient-main);
  color: #fff;
}

.faq-question-text {
  flex: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.45;
  margin: 0;
}

.faq-chevron {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(96, 46, 158, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, background 0.35s ease;
}

.faq-chevron svg {
  width: 16px;
  height: 16px;
  stroke: var(--purple);
  transition: stroke 0.35s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--gradient-main);
}

.faq-item.open .faq-chevron svg {
  stroke: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 24px 84px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.faq-answer-inner strong {
  color: var(--purple);
  font-weight: 700;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, #fef8f3 0%, #f8f5fc 50%, #fef8f3 100%);
  padding: 100px 15px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(96, 46, 158, 0.03) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-30px, -30px) rotate(360deg); }
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.final-cta-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn-final-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-main);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(96, 46, 158, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-final-cta:hover::before {
  width: 300px;
  height: 300px;
}

.btn-final-cta:hover {
  background: var(--gradient-reverse);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(96, 46, 158, 0.4);
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  section {
    padding: 60px 15px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 18px 16px;
    gap: 14px;
  }

  .faq-answer-inner {
    padding: 0 16px 20px 16px;
  }

  .faq-question-text {
    font-size: 0.97rem;
  }

  .faq-badge {
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
  }
}

@media (max-width: 576px) {
  .services-hero {
    padding: 120px 15px 60px;
  }

  .definition-icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }

  .revops-definition-card {
    padding: 36px 24px;
  }

  .definition-text {
    font-size: 1.05rem;
  }

  .challenge-card {
    padding: 28px 20px;
  }

  .solution-card {
    padding: 32px 24px;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f8f5fc;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #602e9e, #d68e45);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d68e45, #602e9e);
}

.btn-cta {
    background: var(--gradient-main);
    color: #fff;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 6px 18px rgba(96, 46, 158, 0.25);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    position: relative;
    overflow: hidden;
}

.btn-cta::before, .hero-cta-primary::before, .cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before, .hero-cta-primary:hover::before, .cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.btn-cta:hover, .hero-cta-primary:hover, .cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(96, 46, 158, 0.35);
  color: #fff;
  background: var(--gradient-reverse);
}

.btn-cta i {
  margin-right: 0.5rem;
}


  
    .hero-shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.1;
      filter: blur(60px);
      pointer-events: none;
      z-index: 1;
    }
    
    .hero-shape-1 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(214, 142, 69, 0.4), transparent);
      top: 10%;
      right: 5%;
      animation: float1 20s ease-in-out infinite;
    }
    
    .hero-shape-2 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(96, 46, 158, 0.5), transparent);
      bottom: 15%;
      left: 10%;
      animation: float2 15s ease-in-out infinite reverse;
    }
    
    .hero-shape-3 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: pulse 10s ease-in-out infinite;
    }
    
    @keyframes pulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
      50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.2; }
    }
    

    
    .hero-trust-indicators {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 50px;
      flex-wrap: wrap;
      animation: trustFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s backwards;
    }
    
    @keyframes trustFadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 24px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 0.9rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.95);
      transition: all 0.3s ease;
    }
    
    .trust-item:hover {
      background: rgba(255, 255, 255, 0.18);
      border-color: rgba(255, 255, 255, 0.4);
      transform: translateY(-3px);
    }
    
    .trust-item i {
      color: #ffd369;
      font-size: 1.1rem;
    }
    
    @media (max-width: 768px) {
      .hero-trust-indicators {
        gap: 15px;
      }
      
      .trust-item {
        padding: 10px 16px;
        font-size: 0.85rem;
      }
      
      .hero-cta-group {
        flex-direction: column;
        width: 100%;
      }
      
      .hero-cta-primary,
      .hero-cta-secondary {
        width: 100%;
        justify-content: center;
      }
    }
  