/* ===================================
   VoiceSterize Page Specific Styles
   =================================== */

/* Hero Section */
.vs-hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, #81563D 0%, #996666 100%);
    color: var(--white);
    text-align: center;
}

.vs-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.vs-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.vs-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.vs-tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.vs-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.vs-cta {
    margin-bottom: 1rem;
}

.btn-appstore {
    background-color: var(--white);
    color: #000;
    padding: 14px 40px;
    font-size: 1.125rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-appstore:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.appstore-badge {
    display: inline-block;
}

.vs-price {
    font-size: 1.25rem;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--brand-pale-gray);
}

.vs-platform {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Features Section */
.vs-features {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-highlight {
    background-color: var(--brand-pale-gray);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 3px solid var(--accent-color);
}

.feature-highlight strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

/* Benefits Section */
.vs-benefits {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Use Cases Section */
.vs-usecases {
    padding: 80px 0;
    background-color: var(--white);
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.usecase-card {
    background: linear-gradient(135deg, var(--brand-rose) 0%, var(--brand-light-gray) 100%);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s;
}

.usecase-card:hover {
    transform: scale(1.05);
}

.usecase-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

/* CTA Section */
.vs-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #81563D 0%, #996666 100%);
    color: var(--white);
    text-align: center;
}

.vs-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vs-cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 1.5rem;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.25rem;
}

.cta-info {
    font-size: 1rem;
    opacity: 0.85;
}

/* Specs Section */
.vs-specs {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.spec-item h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.spec-item p {
    color: var(--text-light);
    font-size: 1rem;
}

/* FAQ Section */
.vs-faq {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--brand-pale-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.faq-item h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vs-title {
        font-size: 2.5rem;
    }

    .vs-tagline {
        font-size: 1.25rem;
    }

    .vs-icon {
        width: 100px;
        height: 100px;
    }

    .features-grid,
    .benefits-grid,
    .usecases-grid {
        grid-template-columns: 1fr;
    }

    .vs-cta-content h2 {
        font-size: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .vs-title {
        font-size: 2rem;
    }

    .vs-tagline {
        font-size: 1.125rem;
    }

    .btn-appstore,
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}
