* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Inter", sans-serif;
      background: #050507;
      overflow-x: hidden;
      color: white;
    }

    .wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 16px 16px;
      background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.08), transparent 40%),
                  radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.06), transparent 40%);
    }

    .card {
      width: 100%;
      max-width: 1200px;
      background: #07070c;
      border-radius: 32px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      overflow: hidden;
      position: relative;
      padding: 60px;
      box-shadow: 0 0 80px rgba(168, 85, 247, 0.1);
    }

    .grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 60px;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(168, 85, 247, 0.12);
      border: 1px solid rgba(168, 85, 247, 0.25);
      color: #e9d5ff;
      font-size: 13px;
      margin-bottom: 24px;
      font-weight: 600;
    }

    h1 {
      font-size: 54px;
      line-height: 1.1;
      font-weight: 900;
      margin-bottom: 24px;
      letter-spacing: -1px;
    }

    h1 span {
      background: linear-gradient(to right, #ec4899, #a855f7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .desc {
      color: #9ca3af;
      font-size: 17px;
      line-height: 1.7;
      margin-bottom: 36px;
    }

    /* Styled Interactive Player */
    .player-box {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 10px;
      margin-bottom: 36px;
    }

    .player-profile {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .avatar-wrap {
      position: relative;
    }

    .player-img {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #a855f7;
    }

    .play-trigger-btn {
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(to right, #ec4899, #a855f7);
      color: white;
      cursor: pointer;
      font-size: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
    }

    .player-info {
      flex: 1;
    }

    .player-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .player-sub {
      color: #9ca3af;
      font-size: 14px;
    }

    /* Wave Animation */
    .wave {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      height: 30px;
      visibility: hidden;
    }

    .wave.playing {
      visibility: visible;
    }

    .wave span {
      width: 4px;
      border-radius: 999px;
      background: linear-gradient(to top, #ec4899, #a855f7);
      animation: bounce 1s infinite ease-in-out;
    }

    .wave span:nth-child(1) { height: 12px; }
    .wave span:nth-child(2) { height: 25px; animation-delay: .1s; }
    .wave span:nth-child(3) { height: 16px; animation-delay: .2s; }
    .wave span:nth-child(4) { height: 30px; animation-delay: .3s; }
    .wave span:nth-child(5) { height: 18px; animation-delay: .4s; }

    @keyframes bounce {
      0%, 100% { transform: scaleY(1); }
      50% { transform: scaleY(1.4); }
    }

    .btns {
      display: flex;
      gap: 16px;
    }

    .btn-primary, .btn-secondary {
      text-decoration: none;
      padding: 16px 32px;
      border-radius: 18px;
      font-weight: 700;
      transition: 0.3s;
      display: inline-block;
      font-size: 15px;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: linear-gradient(to right, #ec4899, #a855f7);
      color: white;
      box-shadow: 0 4px 20px rgba(168, 85, 247, 0.25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(168, 85, 247, 0.4);
    }
    
    .btn-primary:disabled {
      background: #374151;
      color: #9ca3af;
      cursor: not-allowed;
      box-shadow: none;
      transform: none;
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: white;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
    }

/* Shared Voice Generator Component Styles */
.textarea-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  resize: none;
  outline: none;
  transition: 0.3s;
  margin-top: 8px;
}

.textarea-box:focus {
  border-color: #a855f7;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
}

.output-wrapper {
  display: none; 
  background: rgba(168, 85, 247, 0.05); 
  border: 1px solid rgba(168, 85, 247, 0.15); 
  border-radius: 20px; 
  padding: 16px 20px; 
  margin-bottom: 24px; 
  align-items: center; 
  justify-content: space-between; 
  gap: 16px; 
  flex-wrap: wrap;
}

.output-audio {
  flex: 1; 
  min-width: 240px; 
  height: 40px; 
  outline: none;
}

.download-link {
  text-decoration: none; 
  background: rgba(255, 255, 255, 0.05); 
  border: 1px solid rgba(255, 255, 255, 0.1); 
  color: white; 
  padding: 10px 20px; 
  border-radius: 12px; 
  font-size: 14px; 
  font-weight: 600; 
  transition: 0.3s; 
  white-space: nowrap; 
  text-align: center;
}
.download-link:hover { background: rgba(255, 255, 255, 0.1); }

/* Lead Capture Modal Overlays */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-box {
  background: #07070c;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 32px;
  width: 100%;
  max-width: 480px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 0 80px rgba(168, 85, 247, 0.3);
  position: relative;
  animation: modalPopIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPopIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #4b5563;
  font-size: 20px;
  cursor: pointer;
}

.modal-action-btn {
  display: block;
  text-decoration: none;
  background: linear-gradient(to right, #ec4899, #a855f7);
  color: white;
  padding: 16px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
  transition: 0.3s;
}
.modal-action-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(168, 85, 247, 0.4); }

    /* SEO Informational / FAQ Section */
    .seo-section {
      margin-top: 60px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 50px;
    }

    .seo-section h2 {
      font-size: 28px;
      margin-bottom: 20px;
      font-weight: 800;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 24px;
    }

    .faq-item h3 {
      font-size: 16px;
      color: #ffffff;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .faq-item p {
      color: #9ca3af;
      font-size: 14px;
      line-height: 1.6;
    }

    footer {
      text-align: center;
      margin-top: 40px;
      color: #4b5563;
      font-size: 13px;
    }

    @media(max-width: 991px) {
      .grid { grid-template-columns: 1fr; gap: 40px; }
      h1 { font-size: 42px; }
      .faq-grid { grid-template-columns: 1fr; }
    }

    @media(max-width: 640px) {
      .card { padding: 30px 20px; border-radius: 24px; }
      h1 { font-size: 32px; }
      .btns { flex-direction: column; }
      .btn-primary, .btn-secondary { text-align: center; }
    }