/* product.css - Specific styles for product detail landing pages */

.product-hero {
  background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
}

.product-hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(3,105,255,0.08);
  color: var(--primary);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.product-hero-ai {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.product-hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.product-hero-desc {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 800px;
}

/* Hero Premium Buttons */
.product-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}
.btn-product-primary {
  background: var(--primary);
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(3,105,255, 0.25);
  border: 2px solid var(--primary);
}
.btn-product-primary:hover {
  background: transparent;
  color: var(--primary) !important;
  transform: translateY(-2px);
}
.btn-product-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(37,211,102, 0.25);
  border: 2px solid #25D366;
}
.btn-product-whatsapp:hover {
  background: transparent;
  color: #25D366 !important;
  transform: translateY(-2px);
}
.btn-product-call {
  background: var(--secondary);
  color: var(--white) !important;
  border: 2px solid var(--secondary);
  box-shadow: 0 8px 20px rgba(11,27,50, 0.25);
}
.btn-product-call:hover {
  background: transparent;
  color: var(--secondary) !important;
  transform: translateY(-2px);
}

/* Statistics Bar */
.product-stats-bar {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  padding: 2rem;
  margin-top: 3rem;
  border: 1px solid var(--line);
}

.p-stat-item {
  text-align: center;
  padding: 0.5rem;
}

.p-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
  display: block;
}

.p-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Features Grid */
.feature-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(3,105,255,0.06);
  border-color: rgba(3,105,255,0.2);
}

.feature-icon {
  width: 54px;
  height: 54px;
  background: rgba(3,105,255,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Modules Grid */
.module-card {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.module-card:hover {
  border-color: rgba(3,105,255,0.3);
  box-shadow: 0 8px 20px rgba(3,105,255,0.05);
  transform: translateY(-3px);
}

.module-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(3,105,255,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 50%;
  margin-right: 1.25rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.module-card:hover .module-card-icon {
  background: var(--primary);
  color: var(--white);
}

.module-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.module-card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Why Choose Us & Industries */
.why-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--line);
  height: 100%;
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--sun);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.why-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.why-content p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Tech Highlights */
.tech-pill {
  background: #f8fafc;
  border: 1px solid var(--line);
  padding: 1rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  margin: 0.4rem;
}
.tech-pill i {
  color: var(--primary);
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

@media (max-width: 767.98px) {
  .product-hero-title {
    font-size: 2.25rem;
  }
  .p-stat-item {
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.custom-accordion .faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.custom-accordion .faq-item-active {
  border-color: var(--primary);
  box-shadow: 0 5px 20px rgba(3,105,255,0.08);
}
.custom-accordion .faq-header {
  margin: 0;
}
.custom-accordion .faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  transition: all 0.3s ease;
}
.custom-accordion .faq-btn:not(.collapsed) {
  color: var(--primary);
  background: rgba(3,105,255,0.02);
}
.custom-accordion .faq-q-text {
  padding-right: 1rem;
}
.custom-accordion .faq-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(3,105,255,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.custom-accordion .faq-btn:not(.collapsed) .faq-plus {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}
.custom-accordion .faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}


