/* Free ERP Assessment Landing Page Styles */

:root {
  --primary-color: #3a86ff;
  --primary-dark: #2667d6;
  --secondary-color: #8338ec;
  --accent-color: #ff006e;
  --success-color: #38b000;
  --warning-color: #ff9e00;
  --danger-color: #ef233c;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
  --border-radius: 10px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* Hero Section */
.erp-assessment-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e1effe 100%);
  position: relative;
  overflow: hidden;
}

.erp-assessment-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(58, 134, 255, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.erp-assessment-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--success-color), #2dc653);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.erp-assessment-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
  line-height: 1.2;
}

.erp-assessment-hero h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray-color);
  margin-bottom: 30px;
  max-width: 90%;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.hero-features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-color);
  font-weight: 500;
}

.hero-features .feature i {
  color: var(--success-color);
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 30px;
  font-size: 1.1rem;
}

.trust-indicators {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.trust-item span {
  font-weight: 500;
  color: var(--dark-color);
}

.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
  max-width: 300px;
  border-top: 5px solid var(--primary-color);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.card-icon i {
  color: white;
  font-size: 1.5rem;
}

.floating-card h4 {
  margin: 0 0 15px 0;
  color: var(--dark-color);
}

.floating-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.floating-card li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: var(--gray-color);
}

.floating-card li:last-child {
  border-bottom: none;
}

/* Problem Section */
.problem-section {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.problem-card {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  border-left: 4px solid var(--danger-color);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.problem-icon {
  width: 70px;
  height: 70px;
  background: rgba(239, 35, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.problem-icon i {
  color: var(--danger-color);
  font-size: 1.8rem;
}

.problem-card h3 {
  margin: 0 0 15px 0;
  color: var(--dark-color);
  font-size: 1.3rem;
}

.problem-card p {
  color: var(--gray-color);
  margin: 0;
  line-height: 1.6;
}

.solution-announcement {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: white;
}

.solution-icon {
  flex-shrink: 0;
}

.solution-icon i {
  font-size: 3rem;
}

.solution-content h3 {
  font-size: 1.8rem;
  margin: 0 0 15px 0;
}

.solution-content p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  background: #f8fafc;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.process-step {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 5px solid #f8fafc;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.step-icon i {
  color: var(--primary-color);
  font-size: 2rem;
}

.process-step h3 {
  margin: 0 0 15px 0;
  color: var(--dark-color);
  font-size: 1.5rem;
}

.process-step p {
  color: var(--gray-color);
  margin-bottom: 25px;
  line-height: 1.6;
}

.step-details {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.step-details li {
  padding: 8px 0;
  color: var(--dark-color);
}

.step-details li i {
  color: var(--success-color);
  margin-right: 10px;
}

.process-cta {
  text-align: center;
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.process-cta p {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
  border-top-color: var(--primary-color);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.benefit-card h3 {
  margin: 0 0 15px 0;
  color: var(--dark-color);
  font-size: 1.3rem;
}

.benefit-card p {
  color: var(--gray-color);
  margin: 0;
  line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
  padding: 80px 0;
  background: #f8fafc;
}

.comparison-table {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  background: var(--primary-color);
  color: white;
  padding: 20px;
  text-align: left;
  font-weight: 600;
}

.comparison-table th:first-child {
  background: var(--dark-color);
}

.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid #eee;
  color: var(--dark-color);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: #f8f9fa;
}

.red-icon {
  color: var(--danger-color);
  margin-right: 10px;
}

.green-icon {
  color: var(--success-color);
  margin-right: 10px;
}

/* Industries Section */
.industries-section {
  padding: 80px 0;
  background: white;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.industry-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid #eee;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
  border-color: var(--primary-color);
}

.industry-icon {
  width: 60px;
  height: 60px;
  background: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.industry-icon i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.industry-card h4 {
  margin: 0 0 10px 0;
  color: var(--dark-color);
  font-size: 1.2rem;
}

.industry-card p {
  color: var(--gray-color);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Add-on Services */
.addon-services {
  padding: 80px 0;
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.service-card h3 {
  margin: 0 0 15px 0;
  color: var(--dark-color);
  font-size: 1.3rem;
}

.service-card p {
  color: var(--gray-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 8px 0;
  color: var(--dark-color);
  border-bottom: 1px solid #eee;
}

.service-features li:last-child {
  border-bottom: none;
}

/* Assessment Form */
.assessment-form-section {
  padding: 80px 0;
  background: white;
}

.form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.form-header {
  grid-column: 1 / -1;
  padding: 40px 40px 0;
}

.form-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.form-header p {
  color: var(--gray-color);
  font-size: 1.1rem;
}

.assessment-form {
  padding: 0 40px 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--primary-color);
}

.checkbox-group label {
  margin: 0;
  font-weight: normal;
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 20px;
}

.form-disclaimer {
  margin-top: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
  color: var(--gray-color);
  font-size: 0.9rem;
}

.form-disclaimer i {
  color: var(--success-color);
  margin-right: 8px;
}

.form-sidebar {
  background: #f8fafc;
  padding: 40px;
  border-left: 1px solid #eee;
}

.form-sidebar h3 {
  margin: 0 0 25px 0;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-sidebar h3 i {
  color: var(--primary-color);
}

.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.deliverables-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.deliverables-list li i {
  color: var(--success-color);
}

.deliverables-list li:last-child {
  border-bottom: none;
}

.delivery-time,
.support-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.delivery-time i,
.support-info i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 5px;
}

.delivery-time h4,
.support-info h4 {
  margin: 0 0 5px 0;
  color: var(--dark-color);
  font-size: 1rem;
}

.delivery-time p,
.support-info p {
  margin: 0;
  color: var(--gray-color);
  font-size: 0.9rem;
}

.support-info a {
  color: var(--primary-color);
  text-decoration: none;
}

.support-info a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--dark-color);
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  color: var(--gray-color);
  line-height: 1.6;
}

/* Final CTA */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
}

.final-cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
}

.cta-features .feature i {
  color: white;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-disclaimer {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cta-disclaimer i {
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .erp-assessment-hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .erp-assessment-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-image {
    order: -1;
  }
  
  .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  
  .form-container {
    grid-template-columns: 1fr;
  }
  
  .form-sidebar {
    border-left: none;
    border-top: 1px solid #eee;
  }
  
  .comparison-table {
    overflow-x: auto;
  }
  
  .comparison-table table {
    min-width: 700px;
  }
}

@media (max-width: 768px) {
  .erp-assessment-hero {
    padding: 60px 0;
  }
  
  .erp-assessment-hero h1 {
    font-size: 2.2rem;
  }
  
  .erp-assessment-hero h2 {
    font-size: 1.5rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-large {
    width: 100%;
    text-align: center;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-header,
  .assessment-form {
    padding: 30px;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-large {
    width: 100%;
    text-align: center;
  }
  
  .final-cta h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .problem-grid,
  .benefits-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .solution-announcement {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* Print Styles */
@media print {
  .erp-assessment-hero,
  .final-cta,
  .whatsapp-float,
  .back-to-top {
    display: none;
  }
  
  .assessment-form-section {
    page-break-before: always;
  }
}