/* Responsive styles for Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: 30px 0 0 0;
    }
    .hero-content {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }
    .hero-text {
        max-width: 100%;
        text-align: center;
        padding: 0 10px;
    }
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    .hero-description {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .hero-cta {
        flex-direction: row !important;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    .btn, .btn-primary, .btn-secondary {
        width: auto;
        min-width: 160px;
        font-size: 1rem;
        padding: 12px 0;
    }
    .hero-visual {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        min-width: 0;
    }
    #ai-chat-demo {
        max-width: 100%;
        width: 100%;
        padding: 20px 0 0 0;
    }
    #chat-window {
        min-height: 180px;
        max-height: 220px;
        padding: 14px 6px;
    }
    #chat-form {
        flex-direction: column;
        gap: 8px;
    }
    #chat-input {
        font-size: 15px;
        padding: 10px 10px;
    }
    .btn, .btn-primary, .btn-secondary {
        width: 20%;
        font-size: 1rem;
        padding: 12px 0;
    }
}
.comparison-table tbody tr {
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.comparison-table tbody tr:hover {
  background-color: rgba(0, 4, 242, 0.06); /* soft indigo */
  transform: scale(1.005);
}

.hero-visual {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.95) 0%, rgba(219, 234, 254, 0.85) 100%);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 2px solid rgba(219, 234, 254, 0.4);
    box-shadow: 
        0 8px 32px rgba(37, 99, 235, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(219, 234, 254, 0.3);
}


/* Pricing / Engagement Section */
.pricing-engagement {
    padding: 100px 0;
    background: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-step {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.step-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 15px;
    color: #fff;
}

.step-1 .step-badge { background: #34c6a3; }
.step-2 .step-badge { background: #00b4d8; }
.step-3 .step-badge { background: #0d6efd; }
.step-4 .step-badge { background: #ff9800; }

.pricing-step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #111827;
}

.pricing-step ul {
    padding-left: 18px;
}

.pricing-step ul li {
    margin-bottom: 8px;
    color: #374151;
}

.pricing-step p {
    color: #374151;
    line-height: 1.6;
}

.pricing-step .note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #6b7280;
}


/* Audio player styling */
audio::-webkit-media-controls-panel {
    background-color: #e0e7ff;
    border-radius: 8px;
}

audio::-webkit-media-controls-play-button {
    background-color: #2563eb;
    border-radius: 50%;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: #1e40af;
    font-weight: 500;
}

/* Toast animation */
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}