* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #3b82f6;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 0 8rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  margin-bottom: 0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: #fbbf24;
  color: #1f2937;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

/* How It Works */
.how-it-works {
  padding: 6rem 0;
  background: white;
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: none;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1f2937;
}

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

.step {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.step:hover::before {
  transform: scaleX(1);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.1);
}

.step-number {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border-radius: 16px;
  line-height: 70px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.step p {
  color: #6b7280;
  line-height: 1.6;
}

/* Why Many Candidates */
.why-section {
  padding: 6rem 0;
  background: #f8fafc;
  margin-bottom: 0;
  border-radius: 0;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.1);
}

.benefit h4 {
  color: #3b82f6;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.benefit p {
  color: #6b7280;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
  background: white;
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: none;
}

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

.testimonial {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.testimonial:hover::before {
  transform: scaleX(1);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #374151;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #6b7280;
}

/* Pricing */
.pricing {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  margin-bottom: 0;
  border-radius: 0;
  text-align: center;
}

.pricing .section-title {
  color: white;
  margin-bottom: 1rem;
}

.pricing-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-journey {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.journey-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  color: #1f2937;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.journey-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.journey-header {
  text-align: center;
  margin-bottom: 3rem;
}

.journey-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.journey-subtitle {
  color: #6b7280;
  font-size: 1.1rem;
}

.journey-phases {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.phase {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 280px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.phase:hover {
  border-color: #3b82f6;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.phase-header {
  margin-bottom: 1.5rem;
}

.phase-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.phase-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.phase-price {
  font-size: 2rem;
  font-weight: 700;
  color: #3b82f6;
}

.phase-features {
  text-align: left;
}

.phase-features .feature {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0;
}

.phase-features .feature-icon {
  font-size: 1rem;
  margin-right: 0.8rem;
  width: 20px;
  text-align: center;
}

.phase-features .feature span:last-child {
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
}

.phase-arrow {
  font-size: 2rem;
  color: #3b82f6;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.journey-cta {
  text-align: center;
}

.cta-button.primary {
  background: #3b82f6;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  background: #2563eb;
}

.pricing-note {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.pricing-note p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

/* Honest Results */
.honest-results {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: none;
}

.honest-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Promise Card */
.promise-card.main-promise {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.promise-card.main-promise:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
}

.promise-card .card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.promise-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.promise-card p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Deal Cards Grid */
.deal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  width: 100%;
}

.deal-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.deal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.1);
}

.deal-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.deal-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1f2937;
  font-weight: 600;
}

.deal-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}

/* Summary Card */
.summary-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.summary-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.summary-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1f2937;
  font-weight: 600;
}

.summary-content p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Footer CTA */
.footer-cta {
  text-align: center;
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 0;
  margin-bottom: 0;
}

.footer-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.footer-cta p {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.final-cta {
  background: #3b82f6;
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.final-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Footer */
footer {
  background: #1f2937;
  color: #9ca3af;
  text-align: center;
  padding: 3rem 0;
  border-radius: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .pricing-journey {
    margin: 0 1rem 2rem;
  }

  .journey-card {
    padding: 2rem 1.5rem;
  }

  .journey-phases {
    flex-direction: column;
    gap: 1.5rem;
  }

  .phase {
    min-width: auto;
  }

  .phase-arrow {
    transform: rotate(90deg);
    min-width: 40px;
  }

  .container {
    padding: 0 15px;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Add subtle section dividers */
.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #e2e8f0 50%,
    transparent 100%
  );
  margin: 0;
  border: none;
}
