/* Pricing Page Styles */
/* Pricing-specific wrapper override */
.wrapper {
  max-width: 1075px;
  padding: 0 20px;
}

.content {
  width: 100%;
  flex-grow: 1;
  padding-bottom: 48px;
}

/* Hero Section */
.hero {
  padding-top: 100px;
  padding-bottom: 120px;
  text-align: center;
  background: #f8f9fa;
  color: #2c3e50;
  border-radius: 30px;
  margin-bottom: 80px;
  border: 1px solid #e9ecef;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 {
  margin: 0 0 24px 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
  color: #2c3e50;
}

.hero .subtitle {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: #5a6c7d;
}

/* Pricing-specific button overrides */
.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #2c3e50;
  border: 2px solid #2c3e50;
}

.btn-outline:hover {
  background: #2c3e50;
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: #ff6b35;
  border: 2px solid white;
}

.btn-white:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Pricing Options */
.pricing-options {
  margin-bottom: 80px;
}

.pricing-options h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #2c3e50;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.option-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 600px;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.option-header {
  text-align: center;
  margin-bottom: 32px;
}

.option-header h3 {
  margin: 0 0 16px 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.option-description {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 0;
}

.price {
  text-align: center;
  margin-bottom: 48px;
  margin-top: 24px;
}

.price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ff6b35;
}

.price .period {
  font-size: 1.2rem;
  color: #5a6c7d;
  margin-left: 8px;
}

.features-container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.option-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.option-features li {
  padding: 12px 0;
  color: #2c3e50;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

.option-cta {
  text-align: center;
  margin-top: auto;
}

/* Subscription Plans */
.subscription-plans {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.subscription-plan {
  padding: 24px;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  background: #f8f9fa;
}

.subscription-plan.featured {
  border: 2px solid #ff6b35;
  background: white;
}

.subscription-plan h4 {
  margin: 0 0 12px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 16px;
}

.plan-price span {
  font-size: 1rem;
  color: #5a6c7d;
  margin-left: 8px;
}

.subscription-plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subscription-plan li {
  padding: 4px 0;
  color: #2c3e50;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Perfect For Section */
.perfect-for {
  margin-bottom: 80px;
}

.perfect-for h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #2c3e50;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.use-case-card {
  background: white;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.use-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.use-case-card h3 {
  margin: 0 0 16px 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
}

.use-case-card p {
  margin: 0 0 20px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #5a6c7d;
  flex-grow: 1;
}

.use-case-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.use-case-features span {
  font-size: 0.95rem;
  color: #2c3e50;
  font-weight: 500;
}

.use-case-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff6b35;
  margin-top: auto;
}

/* Job Outreach Special */
.job-outreach-special {
  margin-bottom: 80px;
  padding: 60px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 20px;
  color: white;
}

.special-content {
  margin-bottom: 40px;
}

.special-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
  text-align: center;
}

.special-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.special-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.special-feature-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.special-feature-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.feature-text {
  font-size: 1rem;
  font-weight: 500;
  color: white;
  line-height: 1.4;
}

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

/* SEO Content Section */
.seo-content {
  margin-bottom: 80px;
}

.seo-content h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #2c3e50;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.seo-card {
  background: white;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease;
}

.seo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.seo-card h3 {
  margin: 0 0 16px 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
}

.seo-card p {
  margin: 0 0 16px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #5a6c7d;
}

.seo-card p:last-child {
  margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 80px;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #2c3e50;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-item {
  background: white;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.faq-item h3 {
  margin: 0 0 16px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
}

.faq-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #5a6c7d;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 80px 60px;
  background: #f8f9fa;
  border-radius: 20px;
  border: 1px solid #e9ecef;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #2c3e50;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #5a6c7d;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .options-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .use-cases-grid,
  .seo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .special-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.1rem;
  }
  
  .pricing-options h2,
  .perfect-for h2,
  .special-content h2,
  .seo-content h2,
  .faq-section h2,
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .job-outreach-special {
    padding: 40px 24px;
  }
  
  .special-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .final-cta {
    padding: 60px 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .wrapper {
    padding: 0 16px;
  }
  
  .hero {
    padding: 80px 24px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
  
  .pricing-options h2,
  .perfect-for h2,
  .special-content h2,
  .seo-content h2,
  .faq-section h2,
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .option-card,
  .use-case-card,
  .seo-card,
  .faq-item {
    padding: 24px;
  }
  
  .price .amount {
    font-size: 2.5rem;
  }
  
  .option-card {
    min-height: auto;
  }
}