/* ============================================
   WHY WEB SECTION - PREMIUM COLOR SCHEME
   ============================================ */

.why-finance-section {
  padding: 60px 20px;
  background: 
    linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
    linear-gradient(225deg, rgba(29, 154, 146, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 143, 107, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(79, 191, 183, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #fef9f6 30%, #fff5f0 60%, #fef3ed 100%);
  position: relative;
  overflow: hidden;
  min-height: fit-content;
}

.why-finance-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ============================================
   SECTION HEADER - VIBRANT
   ============================================ */

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: 
    linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 143, 107, 0.1) 50%, rgba(29, 154, 146, 0.15) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid;
  border-image: linear-gradient(135deg, rgba(255, 107, 53, 0.4), rgba(29, 154, 146, 0.4)) 1;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  background-clip: padding-box;
  color: #FF6B35;
  margin-bottom: 16px;
  box-shadow: 
    0 4px 20px rgba(255, 107, 53, 0.2),
    0 0 30px rgba(29, 154, 146, 0.1);
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.badge-icon {
  font-size: 1rem;
  filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.section-title {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.gradient-text {
  background: linear-gradient(135deg, 
    #FF6B35 0%, 
    #FF8F6B 20%,
    #FFB088 40%,
    #4FBFB7 60%,
    #1D9A92 80%,
    #157A74 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -2px!important;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    #FF6B35 0%, 
    #FF8F6B 25%,
    #1D9A92 75%,
    #157A74 100%
  );
  border-radius: 2px;
  animation: underlineExpand 2s ease-in-out infinite;
}

@keyframes underlineExpand {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.7); }
}

.section-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 750px;
  margin: 0 auto;
}

/* ============================================
   FEATURES GRID - UNIQUE COLORED ICONS
   ============================================ */
.feature-card {
  position: relative;
  padding: 28px 24px;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Different gradient glow for each card */
.feature-card:nth-child(1) .card-glow {
  background: radial-gradient(circle at 50% 0%, 
    rgba(255, 107, 53, 0.25) 0%, 
    transparent 70%
  );
}

.feature-card:nth-child(2) .card-glow {
  background: radial-gradient(circle at 50% 0%, 
    rgba(255, 193, 7, 0.25) 0%, 
    transparent 70%
  );
}

.feature-card:nth-child(3) .card-glow {
  background: radial-gradient(circle at 50% 0%, 
    rgba(29, 154, 146, 0.25) 0%, 
    transparent 70%
  );
}

.feature-card:nth-child(4) .card-glow {
  background: radial-gradient(circle at 50% 0%, 
    rgba(139, 92, 246, 0.25) 0%, 
    transparent 70%
  );
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 12px 36px rgba(0, 0, 0, 0.1),
    0 0 0 2px rgba(255, 255, 255, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.feature-card:hover .card-glow {
  opacity: 1;
}

.feature-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

/* Card 1 - Explosive Growth (Rocket) - Orange to Red */
.feature-card:nth-child(1) .icon-inner {
  background: linear-gradient(135deg, #FF6B35 0%, #FF4444 100%);
  box-shadow: 
    0 6px 20px rgba(255, 107, 53, 0.5),
    0 0 0 4px rgba(255, 107, 53, 0.15),
    inset 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(1):hover .icon-inner {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 
    0 10px 28px rgba(255, 68, 68, 0.6),
    0 0 0 6px rgba(255, 107, 53, 0.2);
}

.feature-card:nth-child(1) .icon-ring {
  border: 3px solid rgba(255, 107, 53, 0.4);
}

/* Card 2 - Dominate Rankings (Crown) - Gold to Amber */
.feature-card:nth-child(2) .icon-inner {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  box-shadow: 
    0 6px 20px rgba(255, 215, 0, 0.5),
    0 0 0 4px rgba(255, 215, 0, 0.15),
    inset 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(2):hover .icon-inner {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 
    0 10px 28px rgba(255, 165, 0, 0.6),
    0 0 0 6px rgba(255, 215, 0, 0.2);
}

.feature-card:nth-child(2) .icon-ring {
  border: 3px solid rgba(255, 215, 0, 0.4);
}

/* Card 3 - Laser-Focused (Bullseye) - Teal to Cyan */
.feature-card:nth-child(3) .icon-inner {
  background: linear-gradient(135deg, #1D9A92 0%, #00D4FF 100%);
  box-shadow: 
    0 6px 20px rgba(29, 154, 146, 0.5),
    0 0 0 4px rgba(29, 154, 146, 0.15),
    inset 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(3):hover .icon-inner {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 
    0 10px 28px rgba(0, 212, 255, 0.6),
    0 0 0 6px rgba(29, 154, 146, 0.2);
}

.feature-card:nth-child(3) .icon-ring {
  border: 3px solid rgba(29, 154, 146, 0.4);
}

/* Card 4 - Brand Authority (Shield) - Purple to Violet */
.feature-card:nth-child(4) .icon-inner {
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  box-shadow: 
    0 6px 20px rgba(139, 92, 246, 0.5),
    0 0 0 4px rgba(139, 92, 246, 0.15),
    inset 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(4):hover .icon-inner {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 
    0 10px 28px rgba(99, 102, 241, 0.6),
    0 0 0 6px rgba(139, 92, 246, 0.2);
}

.feature-card:nth-child(4) .icon-ring {
  border: 3px solid rgba(139, 92, 246, 0.4);
}

@keyframes ringPulse {
  0%, 100% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  50% {
    width: 120%;
    height: 120%;
    opacity: 0;
  }
}

.feature-card h3 {
  font-size: 1.1875rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.5;
  margin-bottom: auto;
  flex-grow: 1;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

/* Different colored stats for each card */
.feature-card:nth-child(1) .stat-number {
  background: linear-gradient(135deg, #FF6B35 0%, #FF4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card:nth-child(2) .stat-number {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card:nth-child(3) .stat-number {
  background: linear-gradient(135deg, #1D9A92 0%, #00D4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card:nth-child(4) .stat-number {
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   STATS DASHBOARD - PREMIUM DESIGN
   ============================================ */

.stats-dashboard {
  margin-bottom: 36px;
}

.dashboard-card {
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 0.98) 0%, 
      rgba(254, 251, 248, 0.95) 50%,
      rgba(255, 247, 242, 0.98) 100%
    );
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 32px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 12px 36px rgba(255, 107, 53, 0.08),
    0 0 60px rgba(29, 154, 146, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 0 20px rgba(255, 143, 107, 0.02);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, 
    rgba(255, 107, 53, 0.2) 0%, 
    rgba(29, 154, 146, 0.2) 100%
  ) 1;
}

.dashboard-header h4 {
  font-size: 1.375rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, 
    rgba(16, 185, 129, 0.2) 0%, 
    rgba(5, 150, 105, 0.15) 100%
  );
  border: 2px solid rgba(16, 185, 129, 0.4);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #059669;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.metric-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 0.98) 0%, 
      rgba(255, 250, 247, 0.95) 100%
    );
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.4s ease;
}

.metric-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Different colored metric icons */
.metric-item:nth-child(1) .metric-icon {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8F6B 100%);
  box-shadow: 
    0 5px 16px rgba(255, 107, 53, 0.4),
    0 0 0 3px rgba(255, 107, 53, 0.1);
}

.metric-item:nth-child(1):hover {
  box-shadow: 
    0 10px 28px rgba(255, 107, 53, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.metric-item:nth-child(2) .metric-icon {
  background: linear-gradient(135deg, #1D9A92 0%, #4FBFB7 100%);
  box-shadow: 
    0 5px 16px rgba(29, 154, 146, 0.4),
    0 0 0 3px rgba(29, 154, 146, 0.1);
}

.metric-item:nth-child(2):hover {
  box-shadow: 
    0 10px 28px rgba(29, 154, 146, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.metric-item:nth-child(3) .metric-icon {
  background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
  box-shadow: 
    0 5px 16px rgba(139, 92, 246, 0.4),
    0 0 0 3px rgba(139, 92, 246, 0.1);
}

.metric-item:nth-child(3):hover {
  box-shadow: 
    0 10px 28px rgba(139, 92, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.metric-item:nth-child(4) .metric-icon {
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  box-shadow: 
    0 5px 16px rgba(245, 158, 11, 0.4),
    0 0 0 3px rgba(245, 158, 11, 0.1);
}

.metric-item:nth-child(4):hover {
  box-shadow: 
    0 10px 28px rgba(245, 158, 11, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.metric-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.metric-item:hover .metric-icon {
  transform: scale(1.1) rotate(-5deg);
}

.metric-content {
  flex: 1;
}

.metric-value {
  display: flex;
  align-items: baseline;
  margin-bottom: 5px;
}

.counter {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

/* Different colored counters */
.metric-item:nth-child(1) .counter,
.metric-item:nth-child(1) .metric-suffix {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8F6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-item:nth-child(2) .counter,
.metric-item:nth-child(2) .metric-suffix {
  background: linear-gradient(135deg, #1D9A92 0%, #4FBFB7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-item:nth-child(3) .counter,
.metric-item:nth-child(3) .metric-suffix {
  background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-item:nth-child(4) .counter,
.metric-item:nth-child(4) .metric-suffix {
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-suffix {
  font-size: 1.25rem;
  font-weight: 800;
  margin-left: 3px;
}

.metric-title {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-bar {
  height: 5px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  border-radius: 10px;
  width: var(--width);
  animation: fillBar 2s ease forwards;
  position: relative;
  overflow: hidden;
}

/* Different colored progress bars */
.metric-item:nth-child(1) .metric-fill {
  background: linear-gradient(90deg, #FF6B35 0%, #FF8F6B 100%);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.metric-item:nth-child(2) .metric-fill {
  background: linear-gradient(90deg, #1D9A92 0%, #4FBFB7 100%);
  box-shadow: 0 0 10px rgba(29, 154, 146, 0.5);
}

.metric-item:nth-child(3) .metric-fill {
  background: linear-gradient(90deg, #8B5CF6 0%, #A78BFA 100%);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.metric-item:nth-child(4) .metric-fill {
  background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 100%);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.metric-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 100%
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes fillBar {
  from { width: 0; }
  to { width: var(--width); }
}

/* ============================================
   CTA BANNER - DRAMATIC GRADIENT
   ============================================ */

/* ============================================
   CTA BANNER - ULTRA PROFESSIONAL DESIGN
   ============================================ */

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 48px 56px;
  background: 
    linear-gradient(135deg, 
      rgba(15, 23, 42, 0.97) 0%, 
      rgba(30, 41, 59, 0.95) 30%,
      rgba(51, 65, 85, 0.97) 70%,
      rgba(30, 41, 59, 0.98) 100%
    );
  backdrop-filter: blur(10px);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 0 100px rgba(255, 107, 53, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  margin-top: -23px!important;
}

/* Sophisticated overlay effects */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 0% 0%, rgba(255, 107, 53, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(29, 154, 146, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  opacity: 1;
}

/* Subtle animated grid pattern */
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Gradient accent for heading */
.cta-content h3::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #FF6B35 0%, #1D9A92 100%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.cta-content p {
  font-size: 1.0625rem;
  color: #cbd5e1;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Highlighted text in paragraph */
.cta-highlight {
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, #FF8F6B 0%, #4FBFB7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-actions {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Primary Button - Premium Gradient */
.cta-button.primary {
  background: linear-gradient(135deg, 
    #FF6B35 0%, 
    #FF8F6B 25%,
    #FF7A52 50%,
    #1D9A92 100%
  );
  background-size: 200% auto;
  color: white;
  box-shadow: 
    0 8px 24px rgba(255, 107, 53, 0.4),
    0 0 40px rgba(255, 107, 53, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  transition: left 0.6s ease;
}

.cta-button.primary:hover::before {
  left: 100%;
}

.cta-button.primary:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 36px rgba(255, 107, 53, 0.5),
    0 0 60px rgba(255, 107, 53, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cta-button.primary:active {
  transform: translateY(-1px) scale(1);
}

/* Secondary Button - Glass Morphism */
.cta-button.secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-button.secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.1) 0%, 
    rgba(29, 154, 146, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 14px;
}

.cta-button.secondary:hover::after {
  opacity: 1;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 28px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:active {
  transform: translateY(-1px);
}

/* Button Icons */
.cta-button i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.cta-button.primary:hover i {
  transform: translateX(4px);
}

.cta-button.secondary:hover i {
  transform: scale(1.1);
}

/* Stats Badge (optional enhancement) */
.cta-stats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6ee7b7;
}

.cta-stats i {
  font-size: 0.875rem;
}

/* Decorative elements */
.cta-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
}

.cta-decoration-1 {
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  filter: blur(40px);
}

.cta-decoration-2 {
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(29, 154, 146, 0.15) 0%, transparent 70%);
  filter: blur(40px);
}

/* ============================================
   RESPONSIVE DESIGN FOR CTA
   ============================================ */

@media (max-width: 968px) {
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
    gap: 32px;
    margin-top: -8px !important;
  }

  .cta-content {
    max-width: 100%;
  }
  
  .cta-content h3 {
    font-size: 1.75rem;
  }

  .cta-content h3::before {
    display: none;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 36px 28px;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 0.9375rem;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 32px 24px;
    border-radius: 24px;
  }
  
  .cta-content h3 {
    font-size: 1.375rem;
  }
  
  .cta-content p {
    font-size: 0.875rem;
  }
  
  .cta-button {
    padding: 13px 24px;
    font-size: 0.8125rem;
  }

  .cta-button i {
    font-size: 1rem;
  }
}

/* ============================================
   FLOATING SHAPES - COLORFUL
   ============================================ */

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(100px);
}

.shape-1 {
  width: 450px;
  height: 450px;
  background: 
    radial-gradient(circle, 
      rgba(255, 107, 53, 0.6) 0%, 
      rgba(255, 143, 107, 0.4) 50%,
      transparent 100%
    );
  top: -180px;
  right: -180px;
  animation: float1 20s ease-in-out infinite;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: 
    radial-gradient(circle, 
      rgba(29, 154, 146, 0.6) 0%, 
      rgba(79, 191, 183, 0.4) 50%,
      transparent 100%
    );
  bottom: -130px;
  left: -130px;
  animation: float2 18s ease-in-out infinite;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: 
    radial-gradient(circle, 
      rgba(139, 92, 246, 0.5) 0%, 
      rgba(167, 139, 250, 0.3) 50%,
      transparent 100%
    );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float3 15s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(40px, -40px) rotate(120deg); }
  66% { transform: translate(-40px, 40px) rotate(240deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-35px, 35px) rotate(-120deg); }
  66% { transform: translate(35px, -35px) rotate(-240deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 968px) {
  .why-finance-section {
    padding: 50px 20px;
  }
  
  .section-header {
    margin-bottom: 36px;
  }
  
  .section-title {
    font-size: 2.25rem;
  }

  .dashboard-card {
    padding: 24px;
    margin-top: 50px;
  }
  
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
   
  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .why-finance-section {
    padding: 40px 16px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 0.9375rem;
  }
 
  .dashboard-card {
    padding: 20px;
    margin-top: 50px;
  }
  
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .dashboard-header h4 {
    font-size: 1.1875rem;
  }
  
  .metric-item {
    padding: 16px;
  }
  
  .counter {
    font-size: 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.375rem;
  }
  
  .cta-content p {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .why-finance-section {
    padding: 36px 14px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .header-badge {
    font-size: 0.75rem;
    padding: 7px 16px;
  }
  
  .feature-card {
    padding: 24px 20px;
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
  }
  
  .icon-inner {
    font-size: 1.375rem;
  }
  
  .feature-card h3 {
    font-size: 1.0625rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .dashboard-card {
    padding: 18px;
    margin-top: 62px !important;
  }
  
  .metric-icon {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
  }
  
  .counter {
    font-size: 1.375rem;
  }
  
  .cta-banner {
    padding: 24px 18px;
  }
  
  .cta-content h3 {
    font-size: 1.1875rem;
  }
  
  .cta-button {
    padding: 12px 20px;
    font-size: 0.8125rem;
  }
}

/* ============================================
   SMOOTH SCROLL ANIMATIONS
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
  .feature-card,
  .metric-item,
  .dashboard-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
  }
  
  .feature-card:nth-child(1) { animation-delay: 0.1s; }
  .feature-card:nth-child(2) { animation-delay: 0.15s; }
  .feature-card:nth-child(3) { animation-delay: 0.2s; }
  .feature-card:nth-child(4) { animation-delay: 0.25s; }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.cta-button:focus-visible,
.feature-card:focus-visible {
  outline: 3px solid #FF6B35;
  outline-offset: 4px;
}