/* ===============================
   Upload Page - Beautiful Design
   =============================== */

/* Hero Section */
.hero-section {
  background: var(--gradient-hero);
  min-height: 600px; /* Reasonable minimum height */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: calc(var(--space-3xl) * 1.5) 0; /* Increased vertical padding */
}

/* Animated Background */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: backgroundMove 60s linear infinite;
  opacity: 0.3;
}

@keyframes backgroundMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Floating Shapes */
.hero-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-shape {
  position: absolute;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.floating-shape:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 15%;
  animation-delay: 2s;
}

.floating-shape:nth-child(3) {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(2deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
  75% {
    transform: translateY(-8px) rotate(5deg);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl); /* Reduced from var(--space-3xl) */
  align-items: center;
}

/* Left Column - Text Content */
.hero-text {
  animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-xs); /* Reduced from var(--space-md) */
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.hero-text h1 span {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6; /* Reduced from 1.8 */
  margin-bottom: var(--space-sm); /* Reduced from var(--space-lg) */
  text-shadow: 0 1px 10px rgba(0,0,0,0.1);
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs); /* Reduced from var(--space-sm) */
  margin-bottom: var(--space-sm); /* Reduced from var(--space-lg) */
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  font-weight: 500;
}

.feature-item i {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-sm); /* Reduced from var(--space-lg) */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  z-index: 20;
  animation: fadeInUp 1s ease 0.5s both;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-base);
  animation: bounce 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.scroll-indicator:hover .scroll-arrow {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.scroll-text {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  transition: opacity var(--transition-base);
}

.scroll-indicator:hover .scroll-text {
  opacity: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Right Column - Upload Card */
.upload-section {
  animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.upload-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--space-sm); /* Reduced from var(--space-md) */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.upload-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-200%); }
  50% { transform: translateX(200%); }
  100% { transform: translateX(-200%); }
}

.upload-header {
  text-align: center;
  margin-bottom: var(--space-xs); /* Reduced from var(--space-sm) */
}

.upload-header h2 {
  font-size: 1.75rem; /* Slightly reduced from 2rem */
  color: var(--gray-900);
  margin-bottom: var(--space-xs); /* Reduced from var(--space-sm) */
}

.upload-header p {
  color: var(--gray-600);
  font-size: 1rem; /* Reduced from 1.125rem */
}

/* Dropzone */
.dropzone {
  border: 3px dashed transparent;
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md); /* Reduced vertical padding */
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  background: linear-gradient(var(--gray-50), var(--gray-50)) padding-box,
              linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea) border-box;
  background-size: 400% 100%;
  animation: marquee-border 3s linear infinite;
  overflow: hidden;
}

.dropzone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--primary) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.dropzone:hover {
  background: linear-gradient(rgba(102, 126, 234, 0.15), rgba(102, 126, 234, 0.15)) padding-box,
              linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea) border-box;
  transform: translateY(-2px);
  animation: marquee-border-fast 1.5s linear infinite;
  border: 3px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2), 
              inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.dropzone:hover .upload-text h3 {
  color: var(--white);
}

.dropzone:hover .upload-text p {
  color: rgba(255, 255, 255, 0.9);
}

.dropzone:hover .file-types {
  color: rgba(255, 255, 255, 0.8);
}

.dropzone:hover .upload-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

.dropzone.active {
  background: linear-gradient(rgba(102, 126, 234, 0.2), rgba(102, 126, 234, 0.2)) padding-box,
              linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea) border-box;
  box-shadow: 0 0 0 6px rgba(102, 126, 234, 0.1),
              0 12px 40px rgba(102, 126, 234, 0.3),
              inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  animation: marquee-border-active 1s linear infinite;
  border: 3px solid rgba(255, 255, 255, 0.8);
  transform: translateY(-4px);
}

.dropzone.active::before {
  opacity: 0.1;
}

.dropzone.active .upload-text h3 {
  color: var(--white);
}

.dropzone.active .upload-text p {
  color: rgba(255, 255, 255, 0.95);
}

.dropzone.active .file-types {
  color: rgba(255, 255, 255, 0.9);
}

.dropzone.active .upload-icon {
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* Focus state for accessibility */
.dropzone:focus-within {
  outline: 3px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
  border: 3px solid rgba(255, 255, 255, 0.5);
}

.dropzone:focus-within .upload-text h3 {
  color: var(--white);
}

.dropzone:focus-within .upload-text p {
  color: rgba(255, 255, 255, 0.9);
}

.dropzone:focus-within .file-types {
  color: rgba(255, 255, 255, 0.8);
}

@keyframes marquee-border {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}

@keyframes marquee-border-fast {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

@keyframes marquee-border-active {
  0% { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}

.upload-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto var(--space-xs);
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  animation: pulse 2s ease infinite;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.upload-text h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
  font-weight: 700;
}

.upload-text p {
  color: var(--gray-600);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.upload-button {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.upload-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.file-types {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: var(--space-xs);
  font-weight: 500;
}

/* File Preview */
.file-preview {
  display: none;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-top: var(--space-md);
  position: relative;
  animation: fadeIn 0.3s ease;
}

.file-preview.show {
  display: block;
}

.file-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.file-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.file-details h4 {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.file-details p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

.remove-file {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--danger);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  font-size: 1rem;
}

.remove-file:hover {
  background: #dc2626;
  transform: scale(1.1);
}

/* Contact Form */
.contact-info {
  margin-top: var(--space-xl);
  border-top: 1px solid var(--gray-200);
  padding-top: var(--space-xl);
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  font-weight: 500;
  transition: all var(--transition-base);
  pointer-events: none;
  background: var(--white);
  padding: 0 0.25rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.75rem;
  color: var(--primary);
}

.form-group input {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.form-group .form-icon {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 1.125rem;
}

/* Pricing Section */
.pricing-section {
  background: #e9ecef;
  border-radius: var(--radius-lg);
  padding: var(--space-xs); /* Reduced from var(--space-sm) */
  margin-top: var(--space-xs); /* Reduced from var(--space-sm) */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.pricing-header {
  position: relative;
  z-index: 1;
}

.pricing-header h3 {
  font-size: 1.5rem; /* Reduced from 1.75rem */
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: var(--space-sm); /* Reduced from var(--space-md) */
}

.price-tag .currency {
  font-size: 1.5rem;
  color: var(--gray-600);
}

.price-tag .amount {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-tag .period {
  font-size: 1.25rem;
  color: var(--gray-600);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-xs) 0;
  color: var(--gray-700);
}

.pricing-features i {
  color: var(--secondary);
  font-size: 1.125rem;
}

/* Submit Button */
.submit-section {
  margin-top: var(--space-sm); /* Reduced from var(--space-md) */
  text-align: center;
}

.submit-btn {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transition: left var(--transition-slow);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* How It Works */
.how-it-works {
    padding: calc(var(--space-3xl) * 1.5) 0 calc(var(--space-3xl) * 1.5); /* Increased vertical padding */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    margin-bottom: 0; /* Remove bottom margin */
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: var(--space-xl); /* Increased for better proportion */
    color: var(--gray-900);
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Fixed 4 equal columns */
    gap: var(--space-lg); /* Increased for better spacing */
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-200) 0%, 
        var(--primary-500) 25%, 
        var(--secondary-500) 50%, 
        var(--primary-500) 75%, 
        var(--primary-200) 100%);
    z-index: 1;
    display: none;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

/* Tablet layout: 2 columns */
@media (max-width: 991px) and (min-width: 769px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .step-card {
        min-height: 320px; /* Adjusted height for tablet */
    }
}

@media (min-width: 768px) {
    .steps-grid::before {
        display: block;
    }
}

.step-card {
    background: var(--white);


    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all var(--transition-base);
    z-index: 2;
    overflow: hidden; /* Changed from visible to prevent overflow */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 400px;
    gap: 0; /* Remove gap, using custom positioning */
}

.step-card:nth-child(1) .step-number {
    animation-delay: 0s;
}

.step-card:nth-child(2) .step-number {
    animation-delay: 0.5s;
}

.step-card:nth-child(3) .step-number {
    animation-delay: 1s;
}

.step-card:nth-child(4) .step-number {
    animation-delay: 1.5s;
}

.step-card:nth-child(1) .step-icon {
    animation-delay: 0.2s;
}

.step-card:nth-child(2) .step-icon {
    animation-delay: 0.7s;
}

.step-card:nth-child(3) .step-icon {
    animation-delay: 1.2s;
}

.step-card:nth-child(4) .step-icon {
    animation-delay: 1.7s;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 64px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.step-card:hover::before {
    opacity: 1;
}

.step-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
    border: 2px solid var(--white);
    animation: bounce-float 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes bounce-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-3px) scale(1.02);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
    75% {
        transform: translateY(-2px) scale(1.03);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.15;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.step-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(251, 191, 36, 0.15);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon-container {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateY(-2px);
}

.step-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float-icon 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(-6px);
    }
    75% {
        transform: translateY(-1px);
    }
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.step-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
}

/* Pricing Features Animation */
.pricing-features {
    position: relative;
    height: 75px; /* Reduced height for compact display */
    overflow: visible;
    border-radius: 0; /* Remove border radius */
    background: transparent; /* Make background transparent */
    padding: 0; /* Remove padding */
    margin: var(--space-sm) 0; /* Keep margin */
}

/* Enhanced gradient fade overlays for seamless edges */
.pricing-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 25px; /* Adjusted fade height */
    background: linear-gradient(to bottom, 
    #e9ecef 0%, 
    rgba(233, 236, 239, 0.98) 20%,
    rgba(233, 236, 239, 0.8) 60%,
    rgba(233, 236, 239, 0) 100%);
    z-index: 3;
    pointer-events: none;
}

.pricing-features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25px; /* Adjusted fade height */
    background: linear-gradient(to top, 
        #e9ecef 0%, 
        rgba(233, 236, 239, 0.98) 20%,
        rgba(233, 236, 239, 0.8) 60%,
        rgba(233, 236, 239, 0) 100%);
    z-index: 3;
    pointer-events: none;
}

.pricing-features-scroll {
    display: flex;
    flex-direction: column;
    animation: pricing-scroll 12s linear infinite;
    padding: var(--space-sm) var(--space-md); /* Add padding to scroll container */
}

.pricing-features li {
    display: flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md); /* Reduced from var(--space-md) */
    background: rgba(255, 255, 255, 0.85); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Add blur effect */
    border-radius: var(--radius-lg); /* Larger border radius for floating effect */
    margin-bottom: var(--space-sm); /* Increased spacing between items */
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08); /* Softer, more subtle shadow */
    height: 50px; /* Reduced from 60px */
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
    transition: all var(--transition-base);
    transform: translateX(0); /* Reset any transforms */
}

.pricing-features li:hover {
    transform: translateY(-2px) scale(1.02); /* Floating hover effect */
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.pricing-features li i {
    color: #10b981; /* Bright green checkmarks */
    margin-right: var(--space-sm);
    font-size: 1.2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(16, 185, 129, 0.3));
}

.pricing-features li:hover .pricing-features-scroll {
    animation-play-state: paused;
}

@keyframes pricing-scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-250px); /* Updated for 5 items × 50px height */
    }
}

/* Progress indicator */
.steps-indicators {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  position: relative;
}

.progress-bar-container {
  width: 200px;
  height: 4px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  animation: progress-fill 16s linear infinite;
}

@keyframes progress-fill {
  0% {
    width: 0%;
    transform: translateX(0);
  }
  100% {
    width: 100%;
    transform: translateX(0);
  }
}

/* Trust Indicators */
.trust-indicators {
  background: var(--gray-50);
  padding: var(--space-3xl) 0;
}

.trust-content {
  text-align: center;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.trust-badge i {
  font-size: 2rem;
  color: var(--primary);
}

.trust-badge span {
  font-weight: 600;
  color: var(--gray-900);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  color: var(--gray-600);
  font-weight: 500;
}

/* Analysis Progress */
.analysis-progress {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-lg);
  animation: fadeIn 0.5s ease;
}

.analysis-progress.show {
  display: block;
}

.progress-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.progress-header h3 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
  position: relative;
  overflow: hidden;
}

.progress-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 1.5s ease infinite;
}

.analysis-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.analysis-step {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.analysis-step.active {
  background: rgba(102, 126, 234, 0.05);
}

.analysis-step.completed {
  opacity: 0.7;
}

.step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.analysis-step.active .step-indicator {
  border-color: var(--primary);
  color: var(--primary);
  animation: pulse 1.5s ease infinite;
}

.analysis-step.completed .step-indicator {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.step-content h4 {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

/* Results Display */
.results-display {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-lg);
  animation: fadeIn 0.5s ease;
}

.results-display.show {
  display: block;
}

.results-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.results-header .success-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  margin: 0 auto var(--space-md);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.dispute-items {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.dispute-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.dispute-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.dispute-item:last-child {
  margin-bottom: 0;
}

.item-info h4 {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.item-info p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

.item-badge {
  padding: 0.375rem 0.75rem;
  background: var(--danger);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Error States */
.error-display {
  display: none;
  background: #fef2f2;
  border: 2px solid #fee2e2;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.error-display.show {
  display: block;
}

.error-icon {
  width: 60px;
  height: 60px;
  background: var(--danger);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin: 0 auto var(--space-md);
}

.error-display h3 {
  color: var(--danger);
  margin-bottom: var(--space-sm);
}

.error-display p {
  color: #991b1b;
  margin-bottom: var(--space-md);
}

/* Payment Modal Styles */
.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.payment-modal {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.payment-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.payment-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.payment-content {
    padding: 30px;
}

.payment-summary {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.service-description h4 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-weight: 600;
}

.service-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-description li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #4a5568;
}

.service-description li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.payment-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
}

.total-row.final {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    border-top: 1px solid #e2e8f0;
    padding-top: 10px;
    margin-top: 10px;
}

.payment-form {
    margin-bottom: 25px;
}

.form-section h4 {
    color: var(--primary-color);
    margin: 0 0 20px 0;
    font-weight: 600;
}

.mock-payment-info {
    background: #e6f3ff;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #b3d9ff;
}

.mock-notice {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
}

.mock-notice i {
    color: #856404;
    margin-right: 10px;
    margin-top: 2px;
}

.mock-notice p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.mock-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    background: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
}

.payment-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.payment-actions .btn {
    flex: 1;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.9rem;
}

.security-badge i {
    color: var(--success-color);
}

/* Payment Success Styles */
.payment-success {
    text-align: center;
    padding: 40px 20px;
}

.success-header {
    margin-bottom: 30px;
}

.success-header .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color), #38a169);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-header .success-icon i {
    color: white;
    font-size: 2.5rem;
}

.success-header h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.success-header p {
    color: #6b7280;
    font-size: 1.1rem;
    margin: 0;
}

.transaction-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    color: #6b7280;
    font-weight: 500;
}

.detail-row span:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

.status-success {
    color: var(--success-color) !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-warning {
    color: #f59e0b !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mailing-status {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    text-align: left;
}

.mailing-status h4 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-weight: 600;
    text-align: center;
}

.next-steps {
    background: #f0f8ff;
    border: 2px solid #b3d9ff;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    text-align: left;
}

.next-steps h4 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-weight: 600;
    text-align: center;
}

.next-steps ol {
    margin: 0;
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0 20px;
    justify-content: center;
}

.success-actions .btn {
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 10px;
    min-width: 160px;
}

.support-note {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.support-note p {
    margin: 0;
    color: #4a5568;
    text-align: left;
}

/* Modal Open Body */
body.modal-open {
    overflow: visible;
}

/* Inline Payment Flow Styles */
.payment-flow {
    text-align: left;
}

.payment-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.payment-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.payment-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.file-confirmation {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.file-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.file-info i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.file-info span {
    flex: 1;
    color: var(--gray-700);
    font-weight: 500;
}

.change-file-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all 0.2s ease;
}

.change-file-btn:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
}

.payment-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    align-items: start;
}

.service-description h3 {
    color: var(--gray-900);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.service-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-description li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-700);
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
}

.service-description li i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.payment-total {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    min-width: 200px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
}

.total-row.final {
    border-top: 1px solid var(--gray-300);
    padding-top: var(--space-xs);
    margin-top: var(--space-sm);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.mock-notice {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.mock-notice i {
    color: #3498db;
    font-size: 1.2rem;
}

.mock-notice p {
    margin: 0;
    color: #2980b9;
    font-size: 0.9rem;
}

.mock-input {
    background-color: var(--gray-100) !important;
    color: var(--gray-600) !important;
    cursor: not-allowed;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-md);
}

.payment-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-lg);
}

.payment-actions .btn {
    padding: var(--space-md) var(--space-lg);
    font-size: 1.1rem;
    font-weight: 600;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--gray-600);
    font-size: 0.9rem;
}

.security-badge i {
    color: var(--success-color);
}

/* Mobile Payment Flow */
@media (max-width: 768px) {
    .payment-summary {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .payment-total {
        min-width: auto;
    }
    
    .file-info {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .security-badges {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* ===============================
   World-Class Pricing Section
   =============================== */

.pricing-section {
    padding: calc(var(--space-3xl) * 1.5) 0 calc(var(--space-3xl) * 1.5); /* Increased vertical padding */
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden; /* Changed from visible to hidden to prevent overflow */
    margin-top: 0; /* Clean transition from how-it-works */
    border-radius: 0; /* Remove any border radius */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 226, 0.1) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-10px) translateY(-5px); }
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.pricing-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}



/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

/* Pricing Card Base */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3.5rem 2.5rem 3rem; /* Added top padding for badge */
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
    overflow: visible; /* Changed from visible to prevent overflow */
    display: flex;
    flex-direction: column;
    min-height: auto;
    max-height: none;
    height: auto;
    transform: scale(1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Consistent Hover Effects for Both Cards */
.pricing-card.basic-plan {
    border: 1px solid rgba(156, 163, 175, 0.3);
    transform: scale(1);
}

.pricing-card.basic-plan:hover {
    transform: scale(1.02) translateY(-5px);
    border-color: rgba(156, 163, 175, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Featured Plan Styling */
.pricing-card.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border: 2px solid rgba(102, 126, 234, 0.5);
    transform: scale(1);
    position: relative;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    border-radius: 26px;
    z-index: -1;
    opacity: 0.5;
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Plan Badges */
.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(156, 163, 175, 0.9);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.popular-badge i {
    font-size: 1rem;
}

/* Plan Headers */
.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.plan-price .amount {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price .period {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.plan-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
}

/* Process Timeline & Basic Timeline */
.process-timeline,
.basic-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.timeline-item i {
    color: #f59e0b;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.timeline-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Plan Features */
.plan-features {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.5rem 0;
    font-weight: 500;
}

.plan-features li i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.plan-features li.featured-item i {
    color: #f59e0b;
}

/* Plan Actions */
.plan-action {
    text-align: center;
    margin-top: auto;
    position: relative;
    z-index: 1;
    padding-top: 1rem;
}

.btn-pricing {
    width: 100%;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
    position: relative;
}



.btn-pricing.basic {
    background: #6b7280;
    color: white;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.btn-pricing.basic:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.3);
}

.btn-pricing.featured {
    background: #667eea;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.btn-pricing.featured:hover {
    background: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

.guarantee i {
    color: #10b981;
}

/* Value Proposition */
.value-proposition {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.value-item i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.value-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

/* Social Proof & Trust Indicators */
.social-proof {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial .rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial .rating i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-indicators {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
    padding: calc(var(--space-2xl) * 1.25) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 0;
}

/* Ensure all trust indicator text is white */
.trust-indicators * {
    color: #ffffff;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-section .stat-item {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2)) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    padding: 2rem 1.5rem !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
    transition: all 0.3s ease !important;
    min-width: 180px !important;
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-section .stat-number {
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
    line-height: 1 !important;
    text-shadow: 0 2px 0px rgb(255 190 190 / 50%) !important;
    white-space: nowrap !important; /* Prevent text wrapping */
}

.pricing-section .stat-label {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
    white-space: nowrap !important; /* Prevent text wrapping */
    text-align: center !important;
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-section .security-badge {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.15)) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    transition: all 0.3s ease !important;
}

.security-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-section .security-badge i {
    font-size: 2rem !important;
    color: #10b981 !important;
    flex-shrink: 0 !important;
}

.pricing-section .security-badge div strong {
    color: #ffffff !important;
    display: block !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.25rem !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.pricing-section .security-badge div span {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.disclaimer {
    text-align: center;
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 2.5rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.disclaimer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.disclaimer strong {
    color: #fbbf24;
}

.pricing-footer {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Remove conflicting trust section styles - using new dedicated styles above */

.pricing-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.pricing-note i {
    color: #f39c12;
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.pricing-note p {
    margin: 0;
    color: #d68910;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features-comparison {
    text-align: center;
}

.pricing-features-comparison h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.comparison-item {
    text-align: center;
    padding: var(--space-md);
}

.comparison-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    display: block;
}

.comparison-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.comparison-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Animation Classes */
.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pulse-glow {
    animation: pulseGlow 1s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2) drop-shadow(0 0 20px rgba(167, 139, 250, 0.5)); }
}

.btn-pricing.clicked {
    transform: scale(0.98);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Mobile Pricing Styles */
@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-header h2 {
        font-size: 2.2rem;
    }
    
    .pricing-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
        max-width: 500px;
    }
    
    .pricing-card {
        padding: 2.5rem 2rem;
        min-height: auto;
        max-height: none;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 1rem;
    }
    
    .plan-price .amount {
        font-size: 3.2rem;
    }
    
    .process-timeline {
        gap: 0.5rem;
    }
    
    .timeline-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .plan-features ul {
        gap: 1.25rem;
    }
    
    .plan-features li {
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 2rem 1.5rem;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .security-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .security-badge {
        padding: 1.5rem;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .security-badge i {
        font-size: 2.5rem;
    }
    
    .value-proposition {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .disclaimer {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0;
    }
}

@media (max-width: 480px) {
    .pricing-header h2 {
        font-size: 1.8rem;
    }
    
    .plan-price .amount {
        font-size: 2.5rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
} 