/* Product Pages (PinkyBill, PinkyMed, AAFileShare, AATranscript) */
.aatranscript-hero {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
  padding: var(--space-16) 0 var(--space-12);
  position: relative;
  overflow: hidden;
}
.aatranscript-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.aatranscript-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.aatranscript-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: var(--space-3);
  text-align: center;
  font-weight: 800;
}
.aatranscript-hero .subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: var(--space-5);
  font-weight: 600;
}
.aatranscript-hero .intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.aatranscript-content {
  background: var(--white);
  padding: var(--space-16) 0;
}
.service-section {
  max-width: 1000px;
  margin: 0 auto var(--space-6);
  padding: var(--space-8);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: var(--transition);
}
.service-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-blue);
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}
.service-section:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.service-section h2 {
  color: var(--gray-900);
  font-size: 28px;
  margin-bottom: var(--space-4);
  padding-left: var(--space-4);
  font-weight: 700;
}
.service-section p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  padding-left: var(--space-4);
  margin-bottom: 0;
}
.cta-section {
  background: var(--primary-navy);
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 2;
  font-weight: 700;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: var(--space-6);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}
.cta-section a {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .aatranscript-hero {
    padding: var(--space-12) 0 var(--space-10);
  }
  .service-section {
    padding: var(--space-6);
  }
  .cta-section {
    padding: var(--space-8);
  }
}