/* Product Page Styles - Light Mode */

/* Product Hero Section */
.product-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
  padding: 120px 0 80px;
  color: white;
  text-align: center;
  font-family: 'Peridot PE Variable', 'Helvetica Neue', sans-serif;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background-color: var(--color-bg);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-muted);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.product-card {
  background-color: var(--color-surface);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--color-shadow);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--color-shadow);
}

.product-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.product-icon i {
  font-size: 1.8rem;
  color: white;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.product-card p {
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.feature-tag {
  background-color: rgba(0, 166, 142, 0.1);
  color: var(--color-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.product-actions {
  display: flex;
  gap: 1rem;
}

.product-actions .btn {
  flex: 1;
  text-align: center;
  padding: 0.8rem 1rem;
}

/* Technology Section */
.technology-section {
  font-family: 'Peridot PE Variable', 'Helvetica Neue', sans-serif;
  padding: 80px 0;
  background-color: var(--color-surface);
}

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.tech-text p {
  font-size: 1.1rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tech-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.tech-feature i {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: 0.2rem;
}

.tech-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.tech-feature p {
  color: var(--color-muted);
  line-height: 1.5;
  margin: 0;
}

.tech-visual {
  text-align: center;
}

.tech-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--color-shadow);
}

/* Integration Section */
.integration-section {
  padding: 80px 0;
  background-color: var(--color-bg);
}

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

.integration-card {
  background-color: var(--color-surface);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--color-shadow);
}

.integration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--color-shadow);
}

.integration-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.integration-icon i {
  font-size: 2rem;
  color: white;
}

.integration-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.integration-card p {
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.integration-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.integration-link:hover {
  color: var(--color-blue);
}

.integration-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.integration-link:hover i {
  transform: translateX(3px);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  min-width: 150px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .tech-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tech-text {
    text-align: center;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .integration-options {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .product-hero {
    padding: 80px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .product-card {
    padding: 1.5rem;
  }
  
  .product-actions {
    flex-direction: column;
  }
} 