/* Product page specific styles */
.product-view-plans {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
}

.hero {
  padding: 140px 2rem 80px;
  background: linear-gradient(135deg, var(--bg-light) 0%, #E8F0F7 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px var(--shadow);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #B8941F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-cta .btn {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.trust-line {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-line span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.screenshots {
  padding: 100px 2rem;
  background: white;
}

.screenshots-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.screenshot-card {
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
}

.screenshot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-lg);
}

.screenshot-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.screenshot-caption {
  padding: 1.5rem;
  text-align: center;
  color: var(--text-dark);
  font-weight: 600;
}

.screenshots-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-light);
  font-weight: 500;
}

.capabilities {
  padding: 100px 2rem;
  background: var(--bg-light);
}

.capabilities-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.capability-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid var(--border);
  transition: all 0.4s ease;
}

.capability-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 20px 60px var(--shadow-lg);
  transform: translateY(-8px);
}

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

.capability-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.capability-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.capability-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.how-it-works {
  padding: 100px 2rem;
  background: white;
}

.steps-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card::after {
  content: '→';
  position: absolute;
  right: -1.5rem;
  top: 2rem;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
}

.step-card:last-child::after {
  display: none;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent) 0%, #B8941F 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.user-types {
  padding: 100px 2rem;
  background: var(--bg-light);
}

.user-types-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.user-type-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
}

.user-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-lg);
}

.user-type-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.user-type-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.disclaimer {
  background: #FEF3C7;
  border-left: 4px solid #F59E0B;
  padding: 2rem;
  border-radius: 12px;
  margin: 4rem auto;
  max-width: 1200px;
}

.disclaimer-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.disclaimer-icon {
  flex-shrink: 0;
  color: #F59E0B;
}

.disclaimer-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #92400E;
  margin-bottom: 0.5rem;
}

.disclaimer-text p {
  color: #78350F;
  font-size: 0.95rem;
  line-height: 1.7;
}

.final-cta {
  padding: 100px 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.final-cta p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}


@media (max-width: 1200px) {

  .capabilities-grid,
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .user-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 968px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .capabilities-grid,
  .screenshots-grid,
  .steps-container,
  .user-types-grid {
    grid-template-columns: 1fr;
  }

  .step-card::after {
    display: none;
  }
}