/* Product Page Styles */
.product-hero {
  background: linear-gradient(170deg, var(--dark) 0%, var(--dark-secondary) 100%);
  padding: 12rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/images/grid-overlay.svg');
  opacity: 0.1;
  pointer-events: none;
}

/* Accent elements */
.accent-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--primary-light) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.accent-circle.top-right {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.accent-circle.bottom-left {
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -200px;
}

.floating-stars {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle 6s infinite ease-in-out;
}

.star:nth-child(1) { top: 10%; left: 15%; width: 2px; height: 2px; animation-delay: 0s; }
.star:nth-child(2) { top: 30%; left: 85%; width: 3px; height: 3px; animation-delay: 1s; }
.star:nth-child(3) { top: 60%; left: 75%; width: 2px; height: 2px; animation-delay: 2s; }
.star:nth-child(4) { top: 40%; left: 25%; width: 2px; height: 2px; animation-delay: 3s; }
.star:nth-child(5) { top: 80%; left: 45%; width: 3px; height: 3px; animation-delay: 4s; }
.star:nth-child(6) { top: 15%; left: 60%; width: 2px; height: 2px; animation-delay: 5s; }

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

.product-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.product-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, white, var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.product-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
  animation: pulse 1s infinite;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Product Overview Section */
.product-overview {
  padding: 8rem 0;
  background: var(--dark);
  position: relative;
}

.product-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.3), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, white, var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
}

.section-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  padding-top: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.product-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.5s ease-out forwards;
}

.product-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.3);
  border-color: rgba(129, 140, 248, 0.2);
}

.product-feature::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-feature:hover::after {
  opacity: 1;
}

.product-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
  transition: transform 0.3s ease, background 0.3s ease;
}

.product-feature:hover .product-icon {
  background: rgba(79, 70, 229, 0.2);
  transform: scale(1.1);
}

.product-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.product-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.product-feature p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Platform Architecture */
.platform-architecture {
  padding: 8rem 0;
  background: linear-gradient(170deg, var(--dark-secondary) 0%, var(--dark) 100%);
  position: relative;
}

.platform-architecture::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(79, 70, 229, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.architecture-content {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.architecture-diagram {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.diagram-layer {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  animation: fadeIn 0.5s ease-out forwards;
}

.diagram-layer:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.3);
  border-color: rgba(129, 140, 248, 0.2);
}

.diagram-layer:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  height: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
  z-index: 0;
}

.diagram-layer h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.diagram-layer h4::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 50%;
}

.layer-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.layer-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: default;
  animation: fadeIn 0.5s ease-out forwards;
}

.layer-item:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
}

.architecture-features {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.arch-feature {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.arch-feature:hover {
  transform: translateX(5px);
  border-color: rgba(129, 140, 248, 0.2);
}

.arch-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: white;
}

.arch-feature p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Integration Options */
.integration-options {
  padding: 8rem 0;
  background: var(--dark);
  position: relative;
}

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

.integration-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.integration-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.3);
  border-color: rgba(129, 140, 248, 0.2);
}

.integration-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
}

.integration-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.integration-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.integration-features {
  margin-top: auto;
  list-style: none;
}

.integration-features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.integration-features li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
}

.integration-cta {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Security & Compliance */
.security-compliance {
  padding: 8rem 0;
  background: linear-gradient(170deg, var(--dark-secondary) 0%, var(--dark) 100%);
  position: relative;
}

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

.security-feature {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.security-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.3);
  border-color: rgba(129, 140, 248, 0.2);
}

.security-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
}

.security-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.security-feature p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.security-details {
  margin-top: auto;
  list-style: none;
}

.security-details li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.security-details li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
}

.compliance-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
  align-items: center;
}

.badge {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: scale(1.05);
  border-color: rgba(129, 140, 248, 0.2);
}

/* Customization Options */
.customization {
  padding: 8rem 0;
  background: var(--dark);
  position: relative;
}

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

.customization-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.customization-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.3);
  border-color: rgba(129, 140, 248, 0.2);
}

.customization-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
}

.customization-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.customization-content {
  flex: 1;
}

.customization-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.customization-features {
  list-style: none;
}

.customization-features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.customization-features li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
}

.customization-cta {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Product CTA */
.product-cta {
  padding: 6rem 0;
  background: linear-gradient(170deg, var(--dark) 0%, var(--dark-secondary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/images/stars-overlay.svg');
  opacity: 0.3;
  pointer-events: none;
}

.product-cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(129, 140, 248, 0.2), transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.product-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, white, var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-cta p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  min-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(129, 140, 248, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.stat-icon svg {
  width: 36px;
  height: 36px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.trusted-by {
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.trusted-by p {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.logo-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.logo-grid img {
  height: 30px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.logo-grid img:hover {
  opacity: 1;
}

/* Footer styling specifically for product page */
.site-footer {
  padding: 4rem 0 2rem;
  background-color: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive styles */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .product-hero {
    padding: 8rem 0 4rem;
  }
  
  .product-hero h1 {
    font-size: 2.5rem;
  }
  
  .product-grid, 
  .security-grid, 
  .integration-grid,
  .customization-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .platform-architecture,
  .integration-options,
  .security-compliance,
  .customization,
  .product-overview {
    padding: 4rem 0;
  }
  
  .architecture-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .cta-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .product-hero h1 {
    font-size: 2rem;
  }
  
  .product-hero p,
  .section-header p {
    font-size: 1rem;
  }
  
  .cta-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Add animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.product-feature:nth-child(1) { animation-delay: 0.1s; }
.product-feature:nth-child(2) { animation-delay: 0.2s; }
.product-feature:nth-child(3) { animation-delay: 0.3s; }
.product-feature:nth-child(4) { animation-delay: 0.4s; }
.product-feature:nth-child(5) { animation-delay: 0.5s; }
.product-feature:nth-child(6) { animation-delay: 0.6s; }

.layer-item {
  animation: fadeIn 0.5s ease-out forwards;
}

.diagram-layer:nth-child(1) { animation-delay: 0.1s; }
.diagram-layer:nth-child(2) { animation-delay: 0.3s; }
.diagram-layer:nth-child(3) { animation-delay: 0.5s; }
.diagram-layer:nth-child(4) { animation-delay: 0.7s; } 