/* =====================================================================
   SUBSCRIPTION WIZARD - JOBNAV CAROUSEL VERSION
   Beautiful carousel-based pricing with structured cards
   ===================================================================== */

/* =====================================================================
   LAYOUT & CONTAINER
   ===================================================================== */

.pricing-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #010080 0%, #0a1570 50%, #1a2a60 100%);
  position: relative;
  overflow-x: hidden;
}

.pricing-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 204, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(95, 155, 220, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

/* =====================================================================
   HERO SECTION - REDESIGNED
   ===================================================================== */

.hero-section {
  padding: 6rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* Animated Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #010080 0%, #001a4d 50%, #0a1570 100%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 204, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(95, 155, 220, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
  animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 204, 0, 0.15);
  border: 1px solid rgba(255, 204, 0, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  color: #ffcc00;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease;
  backdrop-filter: blur(10px);
}

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

/* Hero Title */
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #ffcc00 0%, #ff9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.6s ease 0.3s backwards;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

/* Hero Highlight Box - Redesigned */
.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.98);
  padding: 1.25rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 204, 0, 0.3);
  transition: all 0.3s ease;
}

.hero-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffcc00 0%, #ff9500 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 1.75rem;
  color: #010080;
}

.highlight-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.highlight-label {
  font-size: 0.875rem;
  color: #757575;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.highlight-price {
  font-size: 2rem;
  font-weight: 800;
  color: #010080;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.highlight-unit {
  font-size: 1rem;
  font-weight: 500;
  color: #757575;
}

/* Hero CTA Button */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-cta-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: #ffffff;
}

.hero-cta-btn i {
  font-size: 1.125rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

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


/* =====================================================================
   BENEFITS SECTION
   ===================================================================== */

.benefits-section {
  padding: 5rem 1.5rem;
  background: #ffffff;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, #0a1570 0%, #ffffff 100%);
}

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

.section-label {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #e2efff 0%, #d4e7ff 100%);
  color: #010080;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  color: #010080;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  padding: 0 1.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  text-align: center;
  color: #757575;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
  line-height: 1.5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(1, 0, 128, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #010080 0%, #5F9BDC 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(1, 0, 128, 0.15);
  border-color: #e2efff;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e2efff 0%, #d4e7ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, #010080 0%, #1a3fb8 100%);
  transform: scale(1.1) rotate(-5deg);
}

.benefit-icon i {
  font-size: 2rem;
  color: #010080;
  transition: color 0.4s ease;
}

.benefit-card:hover .benefit-icon i {
  color: #ffffff;
}

.benefit-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #010080;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.benefit-card p {
  color: #616161;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* =====================================================================
   PRICING SECTION
   ===================================================================== */

.pricing-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(1, 0, 128, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(1, 0, 128, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-section .container {
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Billing Toggle */
.billing-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.billing-toggle {
  display: inline-flex;
  background: #ffffff;
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(1, 0, 128, 0.1);
  border: 1px solid #e0e0e0;
}

.billing-toggle input {
  display: none;
}

.billing-toggle label {
  padding: 12px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.2s ease;
  color: #757575;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
}

.billing-toggle input:checked + label {
  background: #010080;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(1, 0, 128, 0.3);
}

.save-badge {
  background: #10b981;
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* =====================================================================
   CAROUSEL SYSTEM
   ===================================================================== */

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}

.carousel-wrapper {
  overflow: visible;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 100%;
  padding: 0;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  justify-content: flex-start;
  padding: 0 60px;
}

/* Carousel Buttons - Positioned Inside Cards */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(1, 0, 128, 0.2);
  color: #010080;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(1, 0, 128, 0.2);
}

.carousel-btn:hover:not(:disabled) {
  background: #010080;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(1, 0, 128, 0.4);
  border-color: #010080;
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: rgba(224, 224, 224, 0.5);
  color: #9e9e9e;
  background: rgba(255, 255, 255, 0.7);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator:hover {
  background: #bdbdbd;
  transform: scale(1.2);
}

.indicator.active {
  background: #010080;
  width: 32px;
  border-radius: 6px;
}

/* =====================================================================
   PRICING CARDS
   ===================================================================== */

.pricing-card {
  min-width: 450px;
  max-width: 450px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(1, 0, 128, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(1, 0, 128, 0.2);
}

.pricing-card.selected {
  border-color: #010080;
  box-shadow: 0 12px 40px rgba(1, 0, 128, 0.25);
}

/* Card Badge */
.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.starter-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

.popular-badge {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #ffffff;
}

.sprint-badge {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: #ffffff;
}

.scale-badge {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: #ffffff;
}

/* Card Header */
.card-header {
  background: linear-gradient(135deg, #010080 0%, #1a3fb8 100%);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.plan-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.plan-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.plan-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

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

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 4px;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.period {
  font-size: 1rem;
  opacity: 0.9;
  margin-left: 4px;
}

.intro-offer {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.intro-offer i {
  font-size: 1rem;
}

/* Card Body - Structured & Clean */
.card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}

.features-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.95rem;
  color: #424242;
  line-height: 1.5;
  transition: background 0.2s ease;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li:hover {
  background: #fafafa;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
  border-radius: 8px;
}

/* Feature Icons - Color Coded */
.feature-icon {
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.license-icon {
  background: #e3f2fd;
  color: #1976d2;
}

.addon-icon {
  background: #f3e5f5;
  color: #7b1fa2;
}

.job-icon {
  background: #e8f5e9;
  color: #388e3c;
}

.unlimited-icon {
  background: #fff3e0;
  color: #f57c00;
}

.payment-icon {
  background: #fce4ec;
  color: #c2185b;
}

.extra-icon {
  background: #e0f2f1;
  color: #00796b;
}

.bulk-icon {
  background: #f1f8e9;
  color: #689f38;
}

.database-icon {
  background: #ede7f6;
  color: #5e35b1;
}

.shift-icon {
  background: #e1f5fe;
  color: #0288d1;
}

.boost-icon {
  background: #fff8e1;
  color: #ffa000;
}

.ai-icon {
  background: #fce4ec;
  color: #e91e63;
}

.features-list li:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.features-list strong {
  color: #010080;
  font-weight: 600;
}

/* Select Button */
.btn-select {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #010080 0%, #1a3fb8 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(1, 0, 128, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-select:hover {
  background: linear-gradient(135deg, #000066 0%, #001a4d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 0, 128, 0.35);
}

.btn-select:active {
  transform: translateY(0);
}

/* =====================================================================
   PAYMENT SECTION (STEP 2)
   ===================================================================== */

.payment-container {
  max-width: 700px;
  margin: 0 auto;
}

.payment-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(1, 0, 128, 0.1);
}

.selected-plan-summary {
  background: linear-gradient(135deg, #e2efff 0%, #d4e7ff 100%);
  border-left: 4px solid #010080;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.selected-plan-summary h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #010080;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.selected-plan-summary h4 i {
  color: #10b981;
  font-size: 1.5rem;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-label {
  color: #757575;
  font-weight: 500;
}

.summary-value {
  color: #010080;
  font-weight: 600;
  font-size: 1.05rem;
}

.payment-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #010080;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-title i {
  color: #010080;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #010080;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  background: #ffffff;
}

.form-control:focus {
  outline: none;
  border-color: #010080;
  box-shadow: 0 0 0 3px rgba(1, 0, 128, 0.1);
}

.card-element {
  padding: 14px 16px;
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #757575;
}

.security-badge i {
  color: #10b981;
  font-size: 1.5rem;
}

/* =====================================================================
   CONFIRMATION SECTION (STEP 3)
   ===================================================================== */

.confirmation-container {
  max-width: 600px;
  margin: 0 auto;
}

.confirmation-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 4rem 3rem;
  box-shadow: 0 4px 20px rgba(1, 0, 128, 0.1);
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: scaleIn 0.5s ease;
}

.success-icon i {
  font-size: 3rem;
  color: #ffffff;
}

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

.confirmation-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #010080;
  margin-bottom: 1rem;
}

.confirmation-card p {
  font-size: 1.125rem;
  color: #757575;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.confirmation-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  border: none;
}

.btn-primary {
  background: #010080;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(1, 0, 128, 0.2);
}

.btn-primary:hover {
  background: #000066;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(1, 0, 128, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #010080;
  border: 2px solid #010080;
}

.btn-secondary:hover {
  background: #010080;
  color: #ffffff;
}

/* =====================================================================
   WIZARD NAVIGATION
   ===================================================================== */

.wizard-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 700px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.btn-back,
.btn-next {
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-back {
  background: #ffffff;
  color: #010080;
  border: 2px solid #e0e0e0;
}

.btn-back:hover:not(:disabled) {
  background: #f8f9fa;
  border-color: #d0d0d0;
}

.btn-back:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-next {
  background: #010080;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(1, 0, 128, 0.2);
}

.btn-next:hover:not(:disabled) {
  background: #000066;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(1, 0, 128, 0.3);
}

.btn-next:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* =====================================================================
   TRUST SECTION
   ===================================================================== */

.trust-section {
  padding: 4rem 1.5rem;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
}

.trust-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.trust-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #010080;
  margin-bottom: 1rem;
}

.trust-content p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #757575;
  margin-bottom: 3rem;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700;
  color: #010080;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #757575;
  font-weight: 500;
}

/* =====================================================================
   WIZARD STEPS
   ===================================================================== */

.wizard-step {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =====================================================================
   RESPONSIVE DESIGN
   ===================================================================== */

/* Large Desktop - Show 3 cards */
@media (min-width: 1400px) {
  .carousel-container {
    padding: 0 100px;
  }
  
  .carousel-wrapper {
    max-width: none;
    overflow: visible;
  }
  
  .carousel-track {
    justify-content: flex-start;
    padding: 0;
  }
  
  .pricing-card {
    min-width: 420px;
    max-width: 420px;
  }
}

/* Medium Desktop - Show 2-3 cards */
@media (min-width: 1200px) and (max-width: 1399px) {
  .carousel-container {
    padding: 0 100px;
  }
  
  .carousel-wrapper {
    max-width: none;
    overflow: visible;
  }
  
  .carousel-track {
    justify-content: flex-start;
    padding: 0;
  }
  
  .pricing-card {
    min-width: 400px;
    max-width: 400px;
  }
}

/* Desktop - Show 2 cards */
@media (min-width: 1025px) and (max-width: 1199px) {
  .carousel-container {
    padding: 0 80px;
  }
  
  .carousel-wrapper {
    max-width: none;
    overflow: visible;
  }
  
  .carousel-track {
    justify-content: flex-start;
    padding: 0;
  }
  
  .pricing-card {
    min-width: 400px;
    max-width: 400px;
  }
}

@media (max-width: 1024px) {
  .carousel-container {
    padding: 0 60px;
  }
  
  .pricing-card {
    min-width: 400px;
    max-width: 400px;
  }
  
  .carousel-wrapper {
    max-width: none;
    overflow: visible;
  }
  
  .carousel-track {
    justify-content: flex-start;
    padding: 0;
  }
  
  .carousel-btn {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
  }
  
  .carousel-prev {
    left: 15px;
  }
  
  .carousel-next {
    right: 15px;
  }
  
  /* Hero adjustments */
  .hero-section {
    padding: 5rem 1.5rem 4rem;
    min-height: 60vh;
  }
  
  .hero-badge {
    font-size: 0.8125rem;
    padding: 8px 16px;
  }
  
  .hero-cta-group {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 1rem 3rem;
    min-height: auto;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 8px 14px;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta-group {
    gap: 1rem;
  }
  
  .hero-highlight {
    flex-direction: row;
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
  
  .highlight-icon {
    width: 50px;
    height: 50px;
  }
  
  .highlight-icon i {
    font-size: 1.5rem;
  }
  
  .highlight-price {
    font-size: 1.75rem;
  }
  
  .hero-cta-btn {
    padding: 12px 28px;
    font-size: 0.9375rem;
  }
  
  .benefits-section {
    padding: 4rem 1rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-card {
    padding: 2rem;
  }
  
  /* Mobile Carousel Adjustments - Single Card */
  .carousel-container {
    padding: 0;
  }
  
  .carousel-wrapper {
    padding: 0;
    max-width: 100%;
    overflow: hidden;
  }
  
  .carousel-track {
    padding: 0;
    justify-content: flex-start;
  }
  
  .pricing-card {
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }
  
  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
  
  /* Carousel Indicators - Mobile Spacing */
  .carousel-indicators {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
  
  /* Wizard Navigation - Ensure proper spacing */
  .wizard-navigation {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .card-header {
    padding: 2rem 1.5rem;
  }
  
  .amount {
    font-size: 2.75rem;
  }
  
  .card-body {
    padding: 2rem 1.5rem;
  }
  
  .payment-card {
    padding: 2rem 1.5rem;
  }
  
  .confirmation-card {
    padding: 3rem 2rem;
  }
  
  .btn-back,
  .btn-next {
    width: 100%;
    justify-content: center;
  }
  
  .trust-stats {
    gap: 2rem;
  }
  
  .billing-toggle label {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .confirmation-actions {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .carousel-wrapper {
    padding: 0;
  }
  
  .carousel-track {
    padding: 0 15px;
  }
  
  .pricing-card {
    min-width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
  
  .carousel-prev {
    left: 8px;
  }
  
  .carousel-next {
    right: 8px;
  }
  
  .card-badge {
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    font-size: 0.7rem;
  }
  
  .billing-toggle {
    flex-direction: column;
    width: 100%;
  }
  
  .billing-toggle label {
    width: 100%;
    text-align: center;
  }
  
  .features-list li {
    font-size: 0.875rem;
    padding: 10px 0;
  }
  
  .feature-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .amount {
    font-size: 2.5rem;
  }
}

/* =====================================================================
   LOADING STATES
   ===================================================================== */

.btn-next:disabled i.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* =====================================================================
   ACCESSIBILITY
   ===================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .carousel-track {
    transition: none !important;
  }
}