
/* Product Hero */
.product-hero {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-medium));
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.product-hero h1 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 0.875rem;
  position: relative;
}

.product-subtitle {
  color: var(--text-light);
  font-size: 1.25rem;
  opacity: 0.95;
  position: relative;
}

/* Product section */
.product-section {
  padding: 4rem 0;
  position: relative;
}

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

.product-text h2 {
  font-size: 2.125rem;
  margin-bottom: 1.25rem;
  color: var(--purple-dark);
  position: relative;
  display: inline-block;
}

.product-text h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-light), var(--purple-medium));
  border-radius: 2px;
}

.product-description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.benefits-title {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.25rem;
  color: var(--purple-medium);
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.875rem 0;
  padding-left: 2.75rem;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: default;
  font-size: 0.95rem;
  line-height: 1.5;
}

.benefits-list li:hover {
  transform: translateX(10px);
  color: var(--purple-medium);
}

.benefits-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-medium));
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-list li:hover:before {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.product-image {
  text-align: center;
  position: relative;
}

.product-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.product-illustration {
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  z-index: 1;
}

.product-illustration:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 30px 80px rgba(139, 92, 246, 0.3);
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--purple-light), var(--purple-medium));
  color: var(--text-light);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 5%) scale(1.1); }
}

.cta-section h2 {
  color: var(--text-light);
  font-size: 2.125rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.cta-section p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  position: relative;
}

.btn-cta {
  background: white;
  color: var(--purple-dark);
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  background: var(--text-light);
}

/* Legislation Section */
.legislation-section {
  padding: 3rem 0;
  background: linear-gradient(to bottom, #f8f9fa, white);
}

.section-title {
  font-size: 1.75rem;
  color: var(--purple-dark);
  margin-bottom: 0.75rem;
}

.separator-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-light), var(--purple-medium));
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.legislation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legislation-item {
  perspective: 1000px;
  height: 220px;
}

.legislation-item > div {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.legislation-item:hover > div {
  transform: rotateY(180deg);
}

.leg-front,
.leg-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 0.875rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.leg-front {
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.legislation-item:hover .leg-front {
  border-color: var(--purple-light);
}

.legislation-item:hover .legislation-icon {
  transform: scale(1.1);
}

.leg-back {
  background: rgb(255, 255, 255);
  color: #8475E4;
  transform: rotateY(180deg);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
  border-color: rgba(170, 118, 206, 0.781);
}

.legislation-hexagon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-medium));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.25);
}

.legislation-icon {
  width: 40px;
  height: 40px;
  color: white;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.legislation-title {
  font-size: 1.125rem;
  color: var(--purple-dark);
  margin: 0;
  text-align: center;
}

.legislation-title span {
  display: block;
  font-size: 0.8125rem;
  color: var(--purple-light);
  margin-top: 0.25rem;
  font-weight: 400;
}

.legislation-description {
  font-size: 0.8125rem;
  line-height: 1.4;
  text-align: center;
  margin: 0;
  
}

/* Responsive */
@media (max-width: 768px) {
  .product-hero {
    padding: 3.5rem 0 2.5rem;
  }

  .product-hero h1 {
    font-size: 1.875rem;
  }

  .product-subtitle {
    font-size: 1.0625rem;
  }

  .product-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-text h2 {
    font-size: 1.625rem;
  }

  .benefits-title {
    font-size: 1.375rem;
  }

  .cta-section h2 {
    font-size: 1.625rem;
  }

  .section-title {
    font-size: 1.625rem;
  }

  .legislation-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .legislation-item {
    height: 260px;
  }
}