
    /* Features Page Specific Styles */


.section-title.centered {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-title p {
  color: var(--text-light);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* Features Tabs */
.features-tabs {
  background-color: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 60px;
}

.tabs-navigation {
  display: flex;
  border-bottom: 1px solid var(--border);
  background-color: var(--hover-light);
  padding: 0 20px;
}

.tab-button {
  padding: 20px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-button:hover {
  color: var(--primary);
}

.tab-button.active {
  border-bottom-color: var(--primary);
  color: var(--primary);
}

.tabs-content {
  padding: 40px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-flex {
  display: flex;
  gap: 60px;
  align-items: center;
}

.tab-content {
  flex: 1;
}

.tab-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.tab-content p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin-bottom: 30px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 16px;
  color: var(--text-dark);
}

.feature-check {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.tab-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-illustration {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Stylized illustrations for tab panels */
.security-shield {
  width: 200px;
  height: 240px;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 64, 193, 0.1) 100%);
  border-radius: 100px 100px 30px 30px;
  position: relative;
}

.security-shield::before {
  content: "🔒";
  font-size: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.identity-profile {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 64, 193, 0.1) 100%);
  position: relative;
}

.identity-profile::before {
  content: "👤";
  font-size: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.integration-icons {
  width: 280px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 64, 193, 0.1) 100%);
  border-radius: 20px;
  position: relative;
}

.integration-icons::before {
  content: "🔌";
  font-size: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.compliance-check {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 64, 193, 0.1) 100%);
  position: relative;
}

.compliance-check::before {
  content: "✅";
  font-size: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.admin-dashboard {
  width: 280px;
  height: 200px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 64, 193, 0.1) 100%);
  position: relative;
}

.admin-dashboard::before {
  content: "📊";
  font-size: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Key Benefits section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.benefit-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-light);
}

.benefit-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.benefit-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.benefit-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
  margin-bottom: 60px;
}

.use-cases-slider {
  position: relative;
  overflow: hidden;
}

.use-case {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.use-case-icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uc-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 64, 193, 0.1) 100%);
  position: relative;
}

.uc-icon.enterprise::before {
  content: "🏢";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.uc-icon.customer::before {
  content: "👥";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.uc-icon.healthcare::before {
  content: "🏥";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.use-case-content {
  flex: 1;
}

.use-case-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.use-case-content p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.use-case-features {
  list-style: none;
  margin-bottom: 20px;
}

.use-case-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
  color: var(--text-dark);
}

.use-case-features li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.use-case-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
}

.use-case-link::after {
  content: "→";
  margin-left: 5px;
  transition: all 0.2s;
}

.use-case-link:hover::after {
  margin-left: 8px;
}

.use-cases-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.use-case-nav {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.use-case-nav.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Feature Comparison Table */
.feature-comparison {
  margin-bottom: 60px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  background-color: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-weight: 600;
  color: var(--text-dark);
  background-color: var(--hover-light);
}

.comparison-table th.feature-col {
  text-align: left;
}

.comparison-table th.highlighted {
  background-color: var(--primary-light);
  color: var(--primary);
}

.comparison-table td {
  color: var(--text-dark);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.category-row td {
  background-color: var(--bg-light);
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  padding: 12px 24px;
}

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

/* Testimonials Section */
.testimonials-feature {
  margin-bottom: 60px;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  padding: 20px;
}

.testimonial-box {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--text-dark);
  position: relative;
  padding-left: 25px;
}

.testimonial-quote::before {
  content: """;
  font-family: Georgia, serif;
  font-size: 60px;
  position: absolute;
  top: -20px;
  left: -15px;
  color: var(--primary-light);
  opacity: 0.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
}

.author-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
}

.author-position {
  color: var(--text-light);
  font-size: 14px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-nav-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.testimonial-nav-btn.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Features CTA Section */
.features-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  padding: 60px 40px;
  margin-bottom: 60px;
  text-align: center;
  color: white;
}
.features-cta .cta-buttons .action-button {
  background-color: white !important;
  background-image: none !important;
  color: var(--primary) !important;
  border: none !important;
}

.features-cta .cta-buttons .action-button.secondary {
  background-color: transparent !important;
  background-image: none !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
} 
.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-buttons .action-button {
  background-color: white;
  color: var(--primary);
  border: none;
  padding: 14px 28px;
  font-size: 16px;
}

.cta-buttons .action-button.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-buttons .action-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Additional Resources Section */
.additional-resources {
  margin-bottom: 60px;
}

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

.resource-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-light);
}

.resource-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.resource-icon.doc::before {
  content: "📄";
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.resource-icon.case::before {
  content: "📊";
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.resource-icon.webinar::before {
  content: "🎥";
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.resource-icon.demo::before {
  content: "🖥️";
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.resource-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.resource-description {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .tab-flex {
    flex-direction: column;
    gap: 30px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .use-case {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  
  .use-case-features li {
    padding-left: 0;
  }
  
  .use-case-features li::before {
    display: none;
  }
}

@media (max-width: 768px) {

  .tabs-navigation {
    flex-wrap: wrap;
  }
  
  .tab-button {
    flex: 1 0 auto;
    padding: 15px;
    font-size: 14px;
  }
  
  .tabs-content {
    padding: 30px 20px;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .feature-comparison {
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
  }
  
  .comparison-table-wrapper {
    border-radius: 0;
  }
}
