/* natal-chart.css - Styles for natal_chart_landing.html */
/* Extracted from inline <style> block - Phase 3a */

/* Page-specific variables (extending global design tokens) */
.natal-landing {
    --nc-indigo-primary: var(--color-indigo-500);  /* #6366F1 */
    --nc-indigo-dark: #4338CA;
    --nc-indigo-light: #818CF8;
    --nc-gold-primary: var(--color-amber);  /* #F59E0B */
    --nc-gold-dark: #D97706;
    --nc-gold-light: #FBBF24;
    --nc-slate-50: var(--bg-slate-light);  /* #F8FAFC */
    --nc-slate-100: #F1F5F9;
    --nc-slate-600: #475569;
    --nc-slate-900: #0F172A;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: var(--font-body);
}

/* Hero Section */
.natal-landing .hero-section {
    text-align: center;
    padding: 48px 20px 60px;
    background: linear-gradient(135deg, var(--nc-indigo-primary) 0%, var(--nc-indigo-dark) 100%);
    color: white;
    border-radius: var(--radius-xl);
    margin-bottom: 64px;
    position: relative;
    overflow: hidden;
}

.natal-landing .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.natal-landing .hero-content {
    position: relative;
    z-index: 1;
}

.natal-landing .hero-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.15);
    color: var(--nc-gold-light);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    letter-spacing: 0.025em;
}

.natal-landing .hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.natal-landing .hero-title-highlight {
    color: var(--nc-gold-light);
    display: block;
    font-weight: 800;
}

.natal-landing .hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
}

.natal-landing .hero-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--nc-gold-light);
    margin: 24px 0 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Social Proof */
.natal-landing .social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

.natal-landing .stars {
    color: var(--nc-gold-light);
    font-size: 1.125rem;
    letter-spacing: 2px;
}

/* Hero Trust Signals */
.natal-landing .hero-trust-signals {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    align-items: center;
}

.natal-landing .guarantee-primary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(251, 191, 36, 0.4);
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 400px;
}

.natal-landing .guarantee-primary img {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.natal-landing .guarantee-text {
    text-align: left;
    flex: 1;
}

.natal-landing .guarantee-text strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.natal-landing .guarantee-text span {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Mobile CTA in Hero */
.natal-landing .hero-cta-mobile {
    display: none;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .natal-landing .hero-cta-mobile {
        display: block;
    }
}

/* PDF Preview Carousel */
.natal-landing .preview-section {
    background: var(--bg-card);
    padding: 64px 20px;
    margin: 0 -20px 64px;
}

.natal-landing .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.natal-landing .section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--nc-slate-900);
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}

.natal-landing .section-subtitle {
    font-size: 1.125rem;
    color: var(--nc-slate-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.natal-landing .carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.natal-landing .carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.natal-landing .carousel-slide {
    min-width: 100%;
    position: relative;
}

.natal-landing .carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.natal-landing .carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.natal-landing .carousel-btn {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: var(--nc-indigo-primary);
}

.natal-landing .carousel-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.natal-landing .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.natal-landing .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--nc-slate-100);
    border: 2px solid var(--nc-slate-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.natal-landing .carousel-dot.active {
    background: var(--nc-indigo-primary);
    border-color: var(--nc-indigo-primary);
    transform: scale(1.3);
}

/* What's Inside - Simplified */
.natal-landing .whats-inside {
    background: var(--nc-slate-50);
    padding: 64px 32px;
    border-radius: var(--radius-xl);
    margin: 64px 0;
    border: 1px solid var(--nc-slate-100);
}

.natal-landing .checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.natal-landing .checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.natal-landing .checklist-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.natal-landing .checklist-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--nc-indigo-primary) 0%, var(--nc-indigo-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.natal-landing .checklist-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--nc-slate-900);
    margin-bottom: 8px;
}

.natal-landing .checklist-content p {
    font-size: 1rem;
    color: var(--nc-slate-600);
    line-height: 1.5;
    margin: 0;
}

/* Trust Section - Dark Slate */
.natal-landing .trust-section {
    background: var(--nc-slate-900);
    color: white;
    padding: 64px 32px;
    border-radius: var(--radius-xl);
    margin: 64px 0;
    text-align: center;
}

.natal-landing .trust-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.natal-landing .trust-section > p {
    opacity: 0.9;
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.natal-landing .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.natal-landing .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.natal-landing .trust-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.natal-landing .trust-label {
    font-size: 1.125rem;
    font-weight: 600;
}

.natal-landing .trust-description {
    font-size: 0.875rem;
    opacity: 0.85;
    line-height: 1.5;
}

/* CTA Section */
.natal-landing .cta-section {
    background: var(--bg-card);
    padding: 64px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    margin: 64px 0;
    border: 2px solid var(--nc-gold-primary);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.12);
}

.natal-landing .cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--nc-slate-900);
    margin-bottom: 16px;
}

.natal-landing .cta-subtitle {
    font-size: 1.125rem;
    color: var(--nc-slate-600);
    margin-bottom: 32px;
    line-height: 1.5;
}

.natal-landing .main-cta-btn {
    background: linear-gradient(135deg, var(--nc-indigo-primary) 0%, var(--nc-indigo-dark) 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
    position: relative;
    overflow: hidden;
}

.natal-landing .main-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.natal-landing .main-cta-btn:hover::before {
    left: 100%;
}

.natal-landing .main-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
    color: white;
    text-decoration: none;
}

.natal-landing .cta-guarantees {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.natal-landing .cta-guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--nc-slate-600);
    font-size: 0.9375rem;
}

/* Testimonials */
.natal-landing .testimonial {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    margin: 24px 0;
    border-left: 3px solid var(--nc-gold-primary);
}

.natal-landing .testimonial-text {
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--nc-slate-600);
    font-size: 1.0625rem;
}

.natal-landing .testimonial-author {
    font-weight: 700;
    color: var(--nc-slate-900);
    font-size: 0.9375rem;
}

.natal-landing .testimonial-rating {
    color: var(--nc-gold-primary);
    margin-bottom: 12px;
    font-size: 1.125rem;
}

/* FAQ Section */
.natal-landing .faq-section {
    max-width: 720px;
    margin: 48px auto;
    padding: 0 20px;
}

.natal-landing .faq-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e1b4b;
    text-align: center;
    margin-bottom: 32px;
}

.natal-landing .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.natal-landing .faq-item {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    border: 1px solid var(--gray-200);
}

.natal-landing .faq-item summary {
    font-weight: 600;
    color: #1e1b4b;
    cursor: pointer;
    font-size: 1rem;
}

.natal-landing .faq-item p {
    margin-top: 10px;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* @keyframes spin is defined globally in styles.css */

/* Mobile Responsive */
@media (max-width: 768px) {
    .natal-landing .hero-title {
        font-size: 2rem;
    }

    .natal-landing .hero-price {
        font-size: 2.5rem;
    }

    .natal-landing .section-title {
        font-size: 1.75rem;
    }

    .natal-landing .whats-inside,
    .natal-landing .trust-section,
    .natal-landing .cta-section {
        padding: 48px 24px;
    }

    .natal-landing .main-cta-btn {
        width: 100%;
        font-size: 1.125rem;
        padding: 18px 32px;
    }

    .natal-landing .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .natal-landing .guarantee-primary {
        flex-direction: column;
        text-align: center;
    }

    .natal-landing .guarantee-text {
        text-align: center;
    }

    /* Hide desktop CTA on mobile */
    .natal-landing .cta-section {
        display: none;
    }
}

@media (min-width: 769px) {
    .natal-landing .hero-cta-mobile {
        display: none !important;
    }
}
