/* Landing-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: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border-radius: 30px 30px;
  margin-bottom: 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.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;
}

.hero .subtitle {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

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

.stat-preview .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-preview .stat-label {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Landing-specific button overrides */
.btn-primary {
  background: #fff;
  color: #ff6b35;
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

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

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

/* Trust Section */
.trust-section {
  text-align: center;
  margin-bottom: 80px;
}

.trust-content p {
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-placeholder {
  background: #f8f9fa;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 500;
  color: #5a6c7d;
  border: 1px solid #e9ecef;
}

/* Problem Solution Section */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  padding: 60px 90px;
  background: #f8f9fa;
  border-radius: 20px;
}

.problem-side h2,
.solution-side h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #2c3e50;
}

.problem-side h2 {
  color: #2c3e50;
}

.solution-side h2 {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-list,
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-item,
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.problem-icon,
.solution-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 4px;
  color: #333;
}

.problem-content h3,
.solution-content h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.problem-content h3 {
  color: #2c3e50;
}

.solution-content h3 {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-content p,
.solution-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #5a6c7d;
}

/* ROI Calculator */
.roi-calculator {
  margin-bottom: 80px;
  padding: 60px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 20px;
  color: white;
}

.roi-calculator h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group label {
  font-weight: 600;
  font-size: 1.1rem;
}

.input-group input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.input-group span {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.calculator-results {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-item.highlight {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.result-item h3 {
  margin: 0 0 8px 0;
  font-size: 1rem;
  opacity: 0.9;
}

.result-value {
  font-size: 2rem;
  font-weight: 700;
}

/* How It Works */
.how-it-works {
  margin-bottom: 80px;
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

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

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-content h3 {
  margin: 0 0 12px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
}

.step-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5a6c7d;
}

/* Features Section */
.features-section {
  margin-bottom: 80px;
  padding: 60px 90px;
  background: #f8f9fa;
  border-radius: 20px;
}

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

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 36px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.feature-content h3 {
  margin: 0 0 12px 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
}

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

/* Results Section */
.results-section {
  margin-bottom: 80px;
}

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

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

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

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

.result-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e9ecef;
}

.result-header h3 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
}

.industry {
  font-size: 0.9rem;
  color: #000000;
  font-weight: 500;
}

.result-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #28a745;
}

.metric-label {
  font-size: 0.9rem;
  color: #5a6c7d;
}

/* Pricing Section */
.pricing-section {
  margin-bottom: 80px;
  padding: 60px 70px;
  background: #f8f9fa;
  border-radius: 20px;
}

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

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

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e9ecef;
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.pricing-card.featured {
  border-color: #ff6b35;
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-header {
  margin-bottom: 32px;
}

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

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

.price span {
  font-size: 1rem;
  color: #5a6c7d;
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  padding: 8px 0;
  color: #5a6c7d;
  position: relative;
  padding-left: 24px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 600;
}

/* 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: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 20px;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .wrapper {
    padding: 0 16px;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 80px;
    margin-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subtitle {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .problem-solution {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

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

  .roi-calculator {
    padding: 40px 20px;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .features-section {
    padding: 40px 20px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-section {
    padding: 40px 20px;
  }

  .pricing-card {
    padding: 32px 20px;
    min-height: 450px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-header h3 {
    font-size: 1.3rem;
  }

  .price {
    font-size: 2.5rem;
  }

  .price span {
    font-size: 0.9rem;
  }

  .pricing-features li {
    font-size: 0.95rem;
    padding: 6px 0;
    padding-left: 28px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .final-cta {
    padding: 60px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 16px 28px;
    font-size: 1rem;
  }

  .trust-logos {
    gap: 20px;
  }

  .logo-placeholder {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .pricing-card {
    padding: 24px 16px;
    min-height: 400px;
  }

  .pricing-header h3 {
    font-size: 1.2rem;
  }

  .price {
    font-size: 2rem;
  }

  .pricing-features li {
    font-size: 0.9rem;
    padding: 4px 0;
    padding-left: 32px;
  }
}
