/*--------------------------------------------------------------
# Barbershop Pro - Sistema para Barbearias
# Arquivo CSS específico para barbershop.html
# Contém estilos para: hero, features, pricing, CTA, dashboard
--------------------------------------------------------------*/

/* Hero Product Section */
#hero-product {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

/* Pricing Cards Duo - Ótica */
.pricing {
  padding: 100px 0;
  background: #f8fafc;
}

.pricing-badge-modern {
  display: inline-block;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

.pricing .section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Plano Único (Compra) */
.pricing-card-buy {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}

.pricing-card-buy:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #10b981;
}

.buy-header {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 25px;
  text-align: center;
}

.buy-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.buy-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

.buy-content {
  padding: 40px 30px 30px;
  text-align: center;
}

.buy-price {
  margin-bottom: 20px;
}

.buy-price-text {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 10px;
}

.buy-price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 5px;
}

.buy-price-info {
  font-size: 14px;
  color: #64748b;
}

/* Plano Mensalidade */
.pricing-card-subscription {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(31, 41, 55, 0.15);
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid #1f2937;
}

.popular-badge-subscription {
  position: absolute;
  top: -5px;
  right: 15px;
  background: #f59e0b;
  color: white;
  padding: 8px 15px;
  border-radius: 0 0 15px 15px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.subscription-header {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  padding: 25px;
  text-align: center;
}

.subscription-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.subscription-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

.subscription-content {
  padding: 40px 30px 30px;
  text-align: center;
}

.subscription-price {
  margin-bottom: 20px;
}

.subscription-price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #1f2937;
}

.subscription-price-period {
  font-size: 1.2rem;
  color: #64748b;
  font-weight: 500;
}

.pricing-features-optica {
  background: white;
  padding: 30px;
}

.feature-item-optica {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.feature-check-optica {
  color: #10b981;
  font-size: 16px;
  flex-shrink: 0;
}

.feature-item-optica span {
  color: #475569;
  font-size: 15px;
}

.pricing-button-optica {
  padding: 0 30px 30px;
  background: white;
}

.btn-pricing-optica {
  color: white;
  padding: 15px 30px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-pricing-optica:hover {
  transform: translateY(-2px);
  color: white;
}

.btn-buy {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.btn-buy:hover {
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-subscription {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.btn-subscription:hover {
  box-shadow: 0 10px 30px rgba(31, 41, 55, 0.4);
}

/* Pricing Footer - Oferta Especial */
.pricing-footer {
  text-align: center;
  margin-top: 50px;
}

.pricing-footer p {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  margin: 0 auto;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
}

/* Garantir visibilidade dos botões hero */
.hero-buttons {
  z-index: 10 !important;
  position: relative !important;
  margin-top: 20px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.btn-primary-modern,
.btn-secondary-modern {
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-flex !important;
}

/* Ajustes responsivos para o título */
@media (max-width: 768px) {
  .hero-title .gradient-text {
    white-space: normal;
    display: block;
  }
  
  .hero-title {
    line-height: 1.2 !important;
  }
}

/* Hero Product Section */
#hero-product {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

#hero-product::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff08" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  z-index: 0;
}

#hero-product .container {
  position: relative;
  z-index: 1;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(134, 66, 202, 0.1);
  border: 1px solid rgba(134, 66, 202, 0.3);
  color: #8642ca;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.product-badge i {
  font-size: 16px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin: 30px 0 40px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8642ca 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Dashboard Preview */
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.dashboard-preview {
  width: 100%;
  max-width: 600px;
  background: #f8fafc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.dashboard-header {
  background: #e2e8f0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #cbd5e1;
}

.dashboard-controls {
  display: flex;
  gap: 8px;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.dashboard-title {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

.dashboard-body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dashboard-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
}

.dashboard-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
  z-index: 1;
}

.dashboard-logo {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.dashboard-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

/* Features Section Styles */
/* Benefits Section Styles */
.benefits {
  padding: 100px 0;
  background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff08" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  z-index: 0;
}

.benefits .container {
  position: relative;
  z-index: 1;
}

.benefits-content {
  padding-right: 30px;
}

.benefits-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.benefits-intro {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-left: 4px solid #10b981;
  padding-left: 20px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.2);
  border: 2px solid #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
}

.benefit-icon i {
  font-size: 24px;
}

.benefit-text h4 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.benefit-text p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  font-size: 16px;
}

/* Metric Cards Flutuantes */
.benefits-metrics {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
}

.metric-float {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 200px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.metric-float:nth-child(2) {
  animation-delay: -2s;
  margin-right: 40px;
}

.metric-float:nth-child(3) {
  animation-delay: -4s;
  margin-right: 20px;
}

.metric-float-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.metric-float-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-float:nth-child(1) .metric-float-number {
  color: #8b5cf6;
}

.metric-float:nth-child(2) .metric-float-number {
  color: #10b981;
}

.metric-float:nth-child(3) .metric-float-number {
  color: #f59e0b;
}

.metric-float-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.features-badge {
  display: inline-block;
  background: rgba(134, 66, 202, 0.1);
  color: #8642ca;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 600px;
  width: 100% !important;
  display: block !important;
}

.features .section-title {
  text-align: center !important;
}

.features .section-title .section-subtitle {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.feature-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(134, 66, 202, 0.1);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(134, 66, 202, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8642ca 0%, #a855f7 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  color: white;
  font-size: 32px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.feature-description {
  color: #64748b;
  line-height: 1.6;
  font-size: 15px;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: #f8fafc;
}

.pricing-badge-modern {
  display: inline-block;
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

.pricing .section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Pricing Cards Trio Design */
.pricing-card-trio {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card-trio:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.popular-badge-trio {
  position: absolute;
  top: -5px;
  right: 15px;
  background: #8b5cf6;
  color: white;
  padding: 8px 15px;
  border-radius: 0 0 15px 15px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.pricing-header-trio {
  color: white;
  padding: 25px;
  text-align: center;
}

.pricing-header-trio h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.pricing-content-trio {
  padding: 40px 30px 30px;
  text-align: center;
  color: white;
}

.price-display-trio {
  margin-bottom: 15px;
}

.price-currency-trio {
  font-size: 1.2rem;
  font-weight: 500;
  vertical-align: top;
}

.price-amount-trio {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.price-period-trio {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.price-tagline-trio {
  font-size: 15px;
  opacity: 0.9;
  margin: 0;
}

.pricing-features-trio {
  background: white;
  padding: 30px;
}

.feature-item-trio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.feature-check-trio {
  color: #10b981;
  font-size: 16px;
  flex-shrink: 0;
}

.feature-item-trio span {
  color: #475569;
  font-size: 14px;
}

.pricing-button-trio {
  padding: 0 30px 30px;
  background: white;
}

.btn-pricing-trio {
  color: white;
  padding: 15px 30px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-pricing-trio:hover {
  transform: translateY(-2px);
  color: white;
}

/* Starter Plan Colors */
.starter .starter-header {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
}

.starter .starter-content {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
}

.starter .starter-btn {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
}

.starter .starter-btn:hover {
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

/* Professional Plan Colors */
.professional {
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.professional .professional-header {
  background: #10b981;
}

.professional .professional-content {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.professional .professional-btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.professional .professional-btn:hover {
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* Enterprise Plan Colors */
.enterprise .enterprise-header {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.enterprise .enterprise-content {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.enterprise .enterprise-btn {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.enterprise .enterprise-btn:hover {
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

/* Pricing Footer - Oferta Especial */
.pricing-footer {
  text-align: center;
  margin-top: 50px;
}

.pricing-footer p {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  margin: 0 auto;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
}

/* Pricing Card Gradient Design */
.pricing-card-gradient {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #7c3aed 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.pricing-header-professional {
  background: #10b981;
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
  border-radius: 20px 20px 0 0;
}

.popular-badge-corner {
  position: absolute;
  top: -5px;
  right: 15px;
  background: #8b5cf6;
  color: white;
  padding: 8px 15px;
  border-radius: 0 0 15px 15px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-header-professional h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.pricing-content-purple {
  padding: 40px 30px 30px;
  text-align: center;
  color: white;
}

.price-display-large {
  margin-bottom: 15px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 500;
  vertical-align: top;
}

.price-amount-big {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.price-period-small {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
}

.price-tagline {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

.pricing-features-section {
  background: white;
  padding: 30px;
}

.feature-item-clean {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
}

.feature-check-green {
  color: #10b981;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-item-clean span {
  color: #475569;
  font-size: 16px;
  font-weight: 500;
}

.pricing-button-section {
  padding: 0 30px 30px;
  background: white;
}

.btn-pricing-gradient {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  color: white;
  padding: 15px 40px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
}

.btn-pricing-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  color: white;
}

.pricing-card-modern {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  max-width: 400px;
  margin: 0 auto;
}

.pricing-header-green {
  background: #10b981;
  color: white;
  padding: 25px;
  text-align: center;
  position: relative;
}

.pricing-badge-green {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 5px;
}

.pricing-header-green h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.pricing-body {
  padding: 40px 30px;
  text-align: center;
}

.price-display {
  margin-bottom: 15px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1e293b;
}

.price-period {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 500;
}

.price-description {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 30px;
}

.features-list-modern {
  text-align: left;
  margin-bottom: 30px;
}

.feature-item-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.feature-item-modern:last-child {
  border-bottom: none;
}

.feature-check {
  color: #10b981;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-item-modern span {
  color: #475569;
  font-size: 15px;
}

.feature-item-modern strong {
  color: #1e293b;
  font-weight: 600;
}

.pricing-card {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #8642ca 0%, #a855f7 100%);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(134, 66, 202, 0.15);
  border-color: #8642ca;
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #8642ca 0%, #a855f7 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

.pricing-plan {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  color: #8642ca;
  line-height: 1;
  margin-bottom: 5px;
}

.pricing-period {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 40px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #475569;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: #8642ca;
  font-size: 16px;
  flex-shrink: 0;
}

.btn-pricing {
  background: linear-gradient(135deg, #8642ca 0%, #a855f7 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(134, 66, 202, 0.3);
  color: white;
}

/* CTA Section */
/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff08" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section .section-title {
  color: white;
  margin-bottom: 30px;
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  margin-bottom: 50px;
}

.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff08" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  z-index: 0;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta .section-title {
  color: white;
  margin-bottom: 30px;
}

.cta .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  margin-bottom: 50px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #8642ca 0%, #a855f7 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(134, 66, 202, 0.3);
  color: white;
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-3px);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.cta-feature i {
  color: #8642ca;
  font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .dashboard-preview {
    max-width: 500px;
  }
  
  .pricing-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  #hero-product {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 50px;
  }
  
  .hero-stats {
    gap: 15px;
    margin: 20px 0 30px 0;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .dashboard-preview {
    max-width: 400px;
  }
  
  .dashboard-body {
    height: 300px;
  }
  
  .features .row {
    row-gap: 40px !important;
  }
  
  .features .col-lg-4,
  .features .col-md-6 {
    margin-bottom: 40px !important;
  }
  
  .feature-box {
    margin-bottom: 30px !important;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 20px;
  }
  
  .benefits-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .benefit-item {
    margin-bottom: 25px;
    padding-left: 15px;
  }
  
  .benefits-content h2 {
    font-size: 2rem;
  }
  
  .benefits-metrics {
    align-items: center;
    gap: 20px;
  }
  
  .metric-float {
    margin-right: 0 !important;
    min-width: 180px;
    padding: 25px;
  }
  
  .metric-float-number {
    font-size: 2rem;
  }
  
  /* Responsive Pricing Cards */
  .pricing-card-trio {
    margin-bottom: 40px;
  }
  
  .price-amount-trio {
    font-size: 3rem;
  }
  
  .pricing-content-trio {
    padding: 30px 25px 25px;
  }
  
  .pricing-features-trio {
    padding: 25px;
  }
  
  .btn-pricing-trio {
    padding: 12px 25px;
    font-size: 14px;
  }
}
