/* ParakeetAI-inspired styles */

/* Video Demo Section */
.video-demo {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.video-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.video-placeholder {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.video-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.video-placeholder i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 1.1rem;
    color: #f1f5f9;
    font-weight: 600;
    margin: 0;
}

.video-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.video-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #0f172a;
    font-weight: 600;
}

.stat-icon {
    font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.featured-testimonial {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #10b981;
}

.testimonial-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #10b981;
    color: #ffffff;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Comparison Section */
.comparison {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.comparison-table {
    max-width: 1000px;
    margin: 3rem auto 0;
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-bottom: 2px solid #e5e7eb;
}

.comparison-item {
    text-align: center;
}

.comparison-item.highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
}

.comparison-item.highlight i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.comparison-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: inherit;
    margin: 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: #fafbfc;
}

.comparison-feature {
    font-weight: 600;
    color: #0f172a;
}

.comparison-value {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
}

.comparison-value.highlight {
    color: #10b981;
    font-weight: 700;
}

.comparison-value i.fa-check-circle {
    color: #10b981;
    font-size: 1.5rem;
}

.comparison-value i.fa-times-circle {
    color: #cbd5e1;
    font-size: 1.5rem;
}

/* Trust Section */
.trust-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-badge {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: #10b981;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.trust-badge i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.trust-badge h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.trust-badge p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content > p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.1rem 2.75rem;
    font-size: 1.1rem;
}

.btn-secondary-light {
    background: #ffffff;
    color: #0f172a;
    border: 2px solid #ffffff;
}

.btn-secondary-light:hover {
    background: transparent;
    color: #ffffff;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features span {
    color: #f1f5f9;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-features i {
    color: #10b981;
}

/* Feature Number Badges */
.feature-number {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #10b981;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.feature-card {
    position: relative;
    padding-top: 2.5rem;
}

/* Key Features List Grid */
.key-features {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #10b981;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-item i {
    font-size: 1.5rem;
    color: #10b981;
    min-width: 24px;
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Simple Pricing Card */
.pricing-grid-simple {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Three Card Pricing Grid */
.pricing-grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card-main {
    max-width: 480px;
    width: 100%;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #10b981;
}

/* Featured Plan */
.pricing-card-main.featured-plan {
    border-color: #10b981;
    border-width: 3px;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
}

.pricing-card-main.featured-plan:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 16px 48px rgba(16, 185, 129, 0.25);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.plan-name {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-main .currency {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-top: 0.5rem;
}

.price-main .amount {
    font-size: 5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.price-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-desc {
    text-align: center;
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.pricing-card-main .features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-card-main .features-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-card-main .features-list li:last-child {
    border-bottom: none;
}

.pricing-card-main .features-list li i {
    color: #10b981;
    font-size: 1.1rem;
}

.pricing-card-main .card-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-card-main .guarantee {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-card-main .guarantee i {
    color: #10b981;
}

/* Download Section */
.download {
    padding: 4rem 2rem;
    background: #f8fafc;
}

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

.download-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: #10b981;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.download-icon {
    font-size: 3.5rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.download-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.download-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.btn-download {
    background: #10b981;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-download:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.download-info {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* FAQ Section */
.guide {
    padding: 4rem 2rem;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    padding: 2rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #10b981;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .features-list-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid-three {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-main.featured-plan {
        transform: scale(1);
    }
    
    .pricing-card-main.featured-plan:hover {
        transform: scale(1.02) translateY(-8px);
    }
    
    .pricing-card-main {
        padding: 2rem 1.5rem;
    }
    
    .price-main .amount {
        font-size: 4rem;
    }
    
    .plan-name {
        font-size: 1.3rem;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-number {
        top: -10px;
        left: 15px;
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .video-placeholder {
        padding: 5rem 2rem;
    }
    
    .video-placeholder i {
        font-size: 3.5rem;
    }
    
    .video-stats {
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        font-size: 0.85rem;
    }
    
    .comparison-item h4 {
        font-size: 0.9rem;
    }
    
    .comparison-value {
        font-size: 0.9rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content > p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .comparison-item,
    .comparison-value {
        text-align: left;
        margin-bottom: 0.5rem;
    }
    
    .comparison-item.highlight {
        margin-bottom: 1rem;
    }
}

/* Dark Mode */
html.dark .key-features {
    background: #0f172a;
}

html.dark .feature-item {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(148, 163, 184, 0.1);
}

html.dark .feature-item:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: #10b981;
}

html.dark .feature-item h4 {
    color: #f1f5f9;
}

html.dark .feature-item p {
    color: #cbd5e1;
}

html.dark .pricing-card-main {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(148, 163, 184, 0.2);
}

html.dark .pricing-card-main.featured-plan {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(16, 185, 129, 0.4);
}

html.dark .plan-name {
    color: #f1f5f9;
}

html.dark .price-main .amount,
html.dark .price-subtitle {
    color: #f1f5f9;
}

html.dark .pricing-card-main .features-list li {
    color: #f1f5f9;
    border-bottom-color: rgba(148, 163, 184, 0.1);
}

html.dark .download {
    background: #020617;
}

html.dark .download-card {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(148, 163, 184, 0.1);
}

html.dark .download-card:hover {
    border-color: #10b981;
}

html.dark .download-card h3 {
    color: #f1f5f9;
}

html.dark .download-card p {
    color: #cbd5e1;
}

html.dark .guide {
    background: #0f172a;
}

html.dark .faq-item {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(148, 163, 184, 0.1);
}

html.dark .faq-item:hover {
    background: rgba(30, 41, 59, 0.8);
}

html.dark .faq-item h4 {
    color: #f1f5f9;
}

html.dark .faq-item p {
    color: #cbd5e1;
}

/* Dark mode for new sections */
html.dark .video-placeholder {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-color: rgba(148, 163, 184, 0.1);
}

html.dark .video-placeholder:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

html.dark .video-stat {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(148, 163, 184, 0.1);
}

html.dark .video-stat h4 {
    color: #f1f5f9;
}

html.dark .video-stat p {
    color: #cbd5e1;
}

html.dark .testimonial-card {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(148, 163, 184, 0.1);
}

html.dark .testimonial-card.featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

html.dark .testimonial-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

html.dark .testimonial-text {
    color: #cbd5e1;
}

html.dark .testimonial-author h4,
html.dark .testimonial-author p {
    color: #f1f5f9;
}

html.dark .testimonials {
    background: #0f172a;
}

html.dark .comparison,
html.dark .comparison-section {
    background: #0f172a;
}

html.dark .comparison-table {
    background: #1e293b;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

html.dark .comparison-header {
    background: #0f172a;
    border-color: rgba(148, 163, 184, 0.2);
}

html.dark .comparison-row {
    border-color: rgba(148, 163, 184, 0.1);
}

html.dark .comparison-row:hover {
    background: rgba(30, 41, 59, 0.5);
}

html.dark .comparison-item.highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

html.dark .comparison-item h4 {
    color: #f1f5f9;
}

html.dark .comparison-feature {
    color: #f1f5f9;
}

html.dark .comparison-value {
    color: #cbd5e1;
}

html.dark .comparison-value.highlight {
    color: #10b981;
}

html.dark .comparison-value i.fa-times-circle {
    color: #64748b;
}

html.dark .trust-section {
    background: #020617;
}

html.dark .trust-badge {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(148, 163, 184, 0.1);
}

html.dark .trust-badge:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

html.dark .trust-badge h4 {
    color: #f1f5f9;
}

html.dark .trust-badge p {
    color: #cbd5e1;
}

html.dark .final-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

html.dark .final-cta::before {
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

html.dark .cta-content h2,
html.dark .cta-content p {
    color: #f1f5f9;
}

html.dark .cta-features .feature-check {
    color: #cbd5e1;
}
