/* ==========================================================================
   VOICE AGENT PAGE STYLES - QUANTUMPOLO (DARK THEME + NEON ACCENT)
   ========================================================================== */

   :root {
    --va-bg: #050505;
    --va-bg-light: #111111;
    --va-bg-lighter: #1a1a1a;
    --va-accent: #10b981; /* Emerald / Cyber Green */
    --va-accent-glow: rgba(16, 185, 129, 0.4);
    --va-text-main: #ffffff;
    --va-text-muted: #a1a1aa;
    --va-border: rgba(255, 255, 255, 0.08);
    --va-border-highlight: rgba(255, 255, 255, 0.15);
  }
  
  .voice-agent-page {
    background-color: var(--va-bg);
    color: var(--va-text-main);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  .va-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* Typography */
  .voice-agent-page h1, .voice-agent-page h2, .voice-agent-page h3, .voice-agent-page h4 {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
  }
  
  .va-accent {
    color: var(--va-accent);
  }
  
  /* Buttons */
  .va-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .va-btn--primary {
    background-color: var(--va-accent);
    color: #000;
    box-shadow: 0 0 20px var(--va-accent-glow);
  }
  
  .va-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--va-accent-glow);
    background-color: #0fa373;
  }
  
  .va-btn--secondary {
    background-color: transparent;
    color: var(--va-text-main);
    border: 1px solid var(--va-border-highlight);
  }
  
  .va-btn--secondary:hover {
    background-color: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
  }
  
  .full-width {
    width: 100%;
  }
  
  /* ===================== HERO SECTION ===================== */
  .va-hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .va-hero__bg-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, var(--va-accent-glow) 0%, transparent 60%);
    filter: blur(100px);
    z-index: 0;
    opacity: 0.5;
  }
  
  .va-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
  }
  
  .va-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--va-border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--va-text-muted);
    margin-bottom: 32px;
  }
  
  .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--va-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--va-accent);
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
  }
  
  .va-hero__title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  
  .va-hero__desc {
    font-size: 1.125rem;
    color: var(--va-text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 90%;
  }
  
  .va-lang-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
  }
  
  .lang-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--va-bg-light);
    border: 1px solid var(--va-border);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
  }
  
  .lang-tag svg {
    width: 14px;
    height: 14px;
    color: var(--va-accent);
  }
  
  .tag-outline {
    background: transparent;
    color: var(--va-text-muted);
  }
  
  .va-hero__actions {
    display: flex;
    gap: 16px;
  }
  
  /* PLAYER WRAPPER */
  .va-hero__player-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
  }
  
  .va-interactive-player {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--va-border-highlight);
    border-radius: 32px;
    padding: 32px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
  }
  
  .va-interactive-player::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 33px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
  
  .player-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .engine-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--va-accent);
  }
  
  .lang-selector {
    display: flex;
    background: var(--va-bg);
    border-radius: 100px;
    padding: 4px;
    border: 1px solid var(--va-border);
  }
  
  .lang-btn {
    background: transparent;
    border: none;
    color: var(--va-text-muted);
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .lang-btn:hover {
    color: #fff;
  }
  
  .lang-btn.active {
    background: var(--va-bg-lighter);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  
  .player-center {
    text-align: center;
    padding: 20px 0;
  }
  
  .player-title {
    font-size: 2.5rem;
    margin-bottom: 8px;
    background: linear-gradient(to bottom, #ffffff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .player-subtitle {
    font-size: 0.9rem;
    color: var(--va-text-muted);
  }
  
  .player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  
  .play-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--va-accent);
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--va-accent-glow);
  }
  
  .play-circle:hover {
    transform: scale(1.05);
    background: #0fa373;
  }
  
  .play-circle svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
  }
  
  .visualizer {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
  }
  
  .vis-bar {
    width: 4px;
    background-color: var(--va-accent);
    border-radius: 4px;
    height: 4px;
    transition: height 0.1s ease;
  }
  
  /* ===================== PROBLEM SECTION ===================== */
  .va-problem {
    padding: 100px 0;
    border-top: 1px solid var(--va-border);
    background: var(--va-bg-light);
  }
  
  .problem-kicker {
    font-size: 0.85rem;
    color: var(--va-text-muted);
    letter-spacing: 0.2em;
    margin-bottom: 24px;
  }
  
  .problem-title {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 32px;
  }
  
  .highlight-issue {
    color: var(--va-accent);
    text-decoration: underline;
    text-decoration-color: rgba(16, 185, 129, 0.4);
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
  }
  
  .problem-desc {
    font-size: 1.25rem;
    color: var(--va-text-muted);
  }
  
  .problem-desc strong {
    color: var(--va-accent);
    font-weight: 700;
  }
  
  /* ===================== WORKFLOW SECTION ===================== */
  .va-workflow {
    padding: 120px 0;
    background: var(--va-bg);
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  
  .section-header p {
    font-size: 1.125rem;
    color: var(--va-text-muted);
  }
  
  .text-center {
    text-align: center;
  }
  
  .workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }
  
  .workflow-card {
    background: var(--va-bg-light);
    border: 1px solid var(--va-border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s;
  }
  
  .workflow-card:hover {
    border-color: var(--va-border-highlight);
    background: var(--va-bg-lighter);
    transform: translateY(-5px);
  }
  
  .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--va-text-muted);
    margin-bottom: 24px;
  }
  
  .icon-wrapper.accent {
    background: rgba(16, 185, 129, 0.1);
    color: var(--va-accent);
  }
  
  .workflow-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  
  .workflow-card p {
    font-size: 0.95rem;
    color: var(--va-text-muted);
    line-height: 1.6;
  }
  
  /* ===================== CAPABILITIES ===================== */
  .va-capabilities {
    padding: 100px 0;
    background: var(--va-bg-light);
    border-top: 1px solid var(--va-border);
    border-bottom: 1px solid var(--va-border);
  }
  
  .cap-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cap-item {
    background: var(--va-bg);
    border: 1px solid var(--va-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
  }
  
  .cap-item:hover {
    border-color: var(--va-border-highlight);
  }
  
  .cap-info {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  
  .cap-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--va-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .cap-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .cap-item h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  
  .cap-item p {
    font-size: 1rem;
    color: var(--va-text-muted);
    line-height: 1.5;
  }
  
  /* ===================== PRICING SECTION ===================== */
  .va-pricing {
    padding: 120px 0;
    background: var(--va-bg);
  }
  
  .pricing-card {
    background: var(--va-bg-light);
    border: 1px solid var(--va-border);
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }
  
  .pricing-card__left {
    padding: 60px;
  }
  
  .pricing-card__left h3 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  
  .pricing-card__left p {
    font-size: 1.1rem;
    color: var(--va-text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #fff;
  }
  
  .pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--va-accent);
  }
  
  .pricing-card__right {
    background: var(--va-bg-lighter);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--va-border);
  }
  
  .price-tier {
    margin-bottom: 24px;
  }
  
  .price-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--va-accent);
    display: block;
    margin-bottom: 8px;
  }
  
  .price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: #fff;
  }
  
  .per-min {
    font-size: 1.5rem;
    color: var(--va-text-muted);
    font-weight: 500;
  }
  
  .price-sub {
    font-size: 0.9rem;
    color: var(--va-text-muted);
  }
  
  .price-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: var(--va-text-muted);
    font-size: 0.8rem;
    font-weight: 700;
  }
  
  .price-divider::before,
  .price-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--va-border);
  }
  
  .price-divider span {
    padding: 0 16px;
  }
  
  .usage-tier {
    margin-bottom: 40px;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .va-hero__grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .va-hero__player-wrapper {
      justify-content: center;
    }
    
    .va-lang-tags {
      justify-content: center;
    }
    
    .va-hero__actions {
      justify-content: center;
    }
    
    .va-hero__desc {
      margin-left: auto;
      margin-right: auto;
    }
    
    .pricing-card {
      grid-template-columns: 1fr;
    }
    
    .pricing-card__right {
      border-left: none;
      border-top: 1px solid var(--va-border);
    }
  }
  
  @media (max-width: 768px) {
    .va-hero__title {
      font-size: 2.5rem;
    }
    
    .problem-title {
      font-size: 1.8rem;
    }
    
    .pricing-card__left,
    .pricing-card__right {
      padding: 40px 24px;
    }
    
    .cap-info {
      flex-direction: column;
      gap: 16px;
    }
  }
  
  