/* Flow Page Specific Styles */

/* Force number text to stay white */
.demo-number span { color:#fff !important; text-decoration:none !important; }
/* In case the browser converts it into a tel: link */
a[href^="tel"] { color:#fff !important; text-decoration:none !important; pointer-events:none; }

/* Flow Benefits List - similar to tech page */
.flow-features-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem auto;
  max-width: 900px;
}

.flow-benefits {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

.flow-benefits li {
  margin: 12px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  color: #e0e0e0;
}

.flow-benefits li i {
  margin-right: 12px;
  margin-top: 3px;
  color: #667eea;
  min-width: 20px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .flow-features-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Plans Section */
.plans-section { 
  margin: 3rem 0; 
  text-align: left; 
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.plan-card {
  background: #2a2a2a;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #000621;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}

.plan-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.plan-subtitle {
  color: #b8c1cc;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 500;
}

.plan-card ul {
  text-align: left;
  padding-left: 0;
  list-style: none;
  margin: 2rem 0;
  flex-grow: 1;
}

.plan-card li {
  color: #e0e0e0;
  margin-bottom: 1rem;
  line-height: 1.7;
  position: relative;
  padding-left: 2.5rem;
  font-size: 0.95rem;
  font-weight: 400;
}

.plan-card li:last-child {
  margin-bottom: 0;
}

.plan-card li i {
  position: absolute;
  left: 0;
  color: #667eea;
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  margin-top: 2px;
}

.plan-card .price {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: auto;
  text-align: center;
  padding-top: 2rem;
  color: #4ade80;
}

.price-period {
  font-size: 1.1rem;
  color: #d0d0d0;
  font-weight: 600;
}

.price-setup {
  display: block;
  font-size: 0.95rem;
  color: #aaaaaa;
  font-weight: 500;
  margin-top: 0.5rem;
}

.price-cta {
  text-align: center;
  margin-top: 1rem;
}

.cta-link {
  display: inline-block;
  color: #3b82f6;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.cta-link:hover {
  color: #2563eb;
  transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .plan-card {
    padding: 2rem;
  }
}

/* Cost estimator specific styles */
.pricing-card .price a {
  color: #4ade80;
  text-decoration: underline;
}

/* Instruction line styling */
.demo-instructions {
  margin-top:14px;
  color:#cfd8e3;
  font-size:0.95rem;
}
.demo-instructions strong {
  color:#ffffff;
}

/* Flow page specific desktop overrides - allow card to expand */
@media (min-width: 768px) {
  .card {
    max-width: none !important;
  }
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(2px);
}

.loading-overlay.show {
  display: flex;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 768px) {
  .mobile-hidden {
    display: none;
  }
}

/* Live Chat Widget */

.feature-dropdown {
  margin-top: 1rem;
}

.feature-dropdown summary {
  cursor: pointer;
  color: #60a5fa;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  list-style: none;
  padding-left: 2.5rem;
  position: relative;
}

.feature-dropdown summary i {
  position: absolute;
  left: 0;
  color: #667eea;
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  margin-top: 2px;
}

.feature-dropdown ul {
  margin: 0;
  padding-left: 0;
}

.feature-dropdown li {
  color: #e0e0e0;
  margin-bottom: 1rem;
  line-height: 1.7;
  position: relative;
  padding-left: 2.5rem;
  font-size: 0.95rem;
  font-weight: 400;
}

.feature-dropdown li i {
  position: absolute;
  left: 0;
  color: #667eea;
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  margin-top: 2px;
}
