/* PSEO Landing Page Specific Styles */

/* Content Section */
.content-section {
    padding: 64px 0;
    background: rgba(255, 255, 255, 0.7);
}

.prose {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.prose h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin: 2.5rem 0 1rem;
}

.prose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 0.75rem;
}

.prose p {
    margin-bottom: 1.25rem;
}

.prose strong {
    font-weight: 600;
    color: #1f2937;
}

/* Use Cases Section */
.use-cases-section {
    padding: 64px 0;
    background: linear-gradient(135deg, #fdf4ff 0%, #eef2ff 100%);
}

.use-cases-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1f2937;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.use-case-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.use-case-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.use-case-item .check {
    color: #16a34a;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.use-case-item span:last-child {
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 64px 0;
    background: rgba(255, 255, 255, 0.5);
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1f2937;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.0625rem;
    color: #1f2937;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #6366f1;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 24px 20px;
    color: #4b5563;
    line-height: 1.7;
}

/* Final CTA Section */
.cta-final {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #f43f5e 0%, #6366f1 100%);
    color: white;
}

.cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 32px;
}

.btn-cta-white {
    background: white !important;
    color: #f43f5e !important;
}

.btn-cta-white:hover {
    background: #f9fafb !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

/* Related Occasions */
.related-occasions {
    padding: 48px 0;
    background: #f9fafb;
}

.related-occasions h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #1f2937;
}

.occasion-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.occasion-links a {
    padding: 10px 20px;
    background: white;
    color: #4b5563;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.9375rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.occasion-links a:hover {
    background: linear-gradient(to right, #f43f5e, #6366f1);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* How It Works - Numbered Steps */
.how-it-works-new .step-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.how-it-works-new .step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f43f5e, #6366f1);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

/* CTA Simple centered */
.cta-simple {
    text-align: center;
}

.cta-simple .btn-cta {
    display: inline-flex;
    max-width: 400px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-grid {
        text-align: center;
    }

    .feature-list {
        align-items: center;
    }

    .prose {
        padding: 0 16px;
    }

    .use-case-grid {
        grid-template-columns: 1fr;
    }
}
