/* ============================================
   ENHANCED FREE MINI LANDING PAGE STYLES
   Advanced Animations & Modern Design
   ============================================ */

.astro-landing-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.astro-landing-page * {
    box-sizing: border-box;
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Features Container */
.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pricing Container */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 16px;
    background: linear-gradient(135deg, #fff, #a0aec0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: #a0aec0;
    margin: 0;
}

/* ============================================
   HERO SECTION WITH CELESTIAL ANIMATIONS
   ============================================ */

.landing-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0f0f2a 100%);
    position: relative;
    padding: 60px 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Constellation Background */
.constellation-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

.stars-layer {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(255,215,0,0.6), transparent),
        radial-gradient(1px 1px at 240px 90px, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 280px 140px, rgba(255,255,255,0.4), transparent);
    background-size: 300px 200px;
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Shooting Stars */
.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    transform: rotate(-45deg);
    animation: shoot 3s ease-out infinite;
}

.shooting-star:nth-child(2) { top: 20%; left: 70%; }
.shooting-star:nth-child(3) { top: 40%; left: 85%; }
.shooting-star.delay-1 { animation-delay: 1.5s; }
.shooting-star.delay-2 { animation-delay: 2.5s; }

@keyframes shoot {
    0% { transform: rotate(-45deg) translateX(-200px); opacity: 1; }
    70% { opacity: 1; }
    100% { transform: rotate(-45deg) translateX(400px); opacity: 0; }
}

/* Planet Orbits */
.planets-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255,215,0,0.1);
    border-radius: 50%;
    animation: orbit-rotate linear infinite;
}

.orbit-1 { width: 300px; height: 300px; top: -150px; left: -150px; animation-duration: 20s; }
.orbit-2 { width: 500px; height: 500px; top: -250px; left: -250px; animation-duration: 35s; }
.orbit-3 { width: 700px; height: 700px; top: -350px; left: -350px; animation-duration: 50s; }

.planet {
    position: absolute;
    border-radius: 50%;
}

.planet-1 { width: 8px; height: 8px; background: #ffd700; top: -4px; left: 50%; box-shadow: 0 0 15px #ffd700; }
.planet-2 { width: 6px; height: 6px; background: #87ceeb; top: 50%; right: -3px; box-shadow: 0 0 10px #87ceeb; }
.planet-3 { width: 10px; height: 10px; background: #ff6b6b; bottom: 20%; left: -5px; box-shadow: 0 0 20px #ff6b6b; }

@keyframes orbit-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Content */
.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,215,0,0.05));
    border: 1px solid rgba(255,215,0,0.3);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-icon { font-size: 18px; }
.badge-text { font-size: 14px; color: #ffd700; font-weight: 600; }

.hero-title {
    margin: 0 0 24px;
}

.title-line {
    display: block;
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.title-highlight {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: #667eea;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 18px;
    color: #a0aec0;
    margin: 0 0 32px;
    line-height: 1.8;
}

.hero-subtitle strong { color: #fff; }
.hero-subtitle em { font-style: normal; }
.hero-subtitle .highlight {
    color: #ffd700;
    font-weight: 700;
    font-style: normal;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 20px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-item { text-align: center; }
.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
}
.stat-label { font-size: 14px; color: #a0aec0; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Form Card */
.landing-form-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-header h3 {
    font-size: 24px;
    margin: 0 0 8px;
    color: #fff;
}

.form-header h3.form-title-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.form-header p {
    font-size: 14px;
    color: #a0aec0;
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e2e8f0;
    font-size: 14px;
}

.form-group .optional {
    font-size: 12px;
    color: #718096;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(102,126,234,0.1);
}

.form-group input::placeholder { color: #718096; }
.form-group select option { background: #1a1a2e; color: #fff; }

.landing-submit-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(102,126,234,0.4);
}

.landing-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.5);
}

.landing-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-icon {
    font-size: 20px;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-trust {
    margin-top: 20px;
    font-size: 13px;
    color: #718096;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Hero Visual - Chart Preview */
.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-preview {
    position: relative;
}

.chart-wheel-preview {
    width: 400px;
    height: 400px;
    animation: float 6s ease-in-out infinite;
}

.natal-wheel-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(102,126,234,0.3));
}

.zodiac-symbol {
    animation: zodiac-glow 3s ease-in-out infinite;
}

@keyframes zodiac-glow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.planet-dot {
    animation: planet-pulse 2s ease-in-out infinite;
}

.planet-dot.pulse { animation-delay: 0s; }
.planet-dot.delay-1 { animation-delay: 0.3s; }
.planet-dot.delay-2 { animation-delay: 0.6s; }
.planet-dot.delay-3 { animation-delay: 0.9s; }
.planet-dot.delay-4 { animation-delay: 1.2s; }
.planet-dot.delay-5 { animation-delay: 1.5s; }

@keyframes planet-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; filter: brightness(1.3); }
}

.aspect-line {
    animation: aspect-fade 3s ease-in-out infinite;
}

@keyframes aspect-fade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.chart-label {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #a0aec0;
}

/* ============================================
   RESULT SECTION WITH SUCCESS ANIMATION
   ============================================ */

.landing-result {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0f0f2a 0%, #1a1a3a 100%);
    position: relative;
}

/* Success Checkmark Animation */
.success-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #48bb78;
    stroke-miterlimit: 10;
    animation: fill-checkmark 0.4s ease-in-out 0.4s forwards, scale-checkmark 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #48bb78;
    fill: none;
    animation: stroke-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke-check 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke-circle {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes stroke-check {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fill-checkmark {
    100% {
        box-shadow: inset 0px 0px 0px 30px #48bb78;
    }
}

@keyframes scale-checkmark {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

.result-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.result-title {
    font-size: 36px;
    margin: 0 0 16px;
    animation: slide-up 0.6s ease-out;
}

.result-subtitle {
    color: #a0aec0;
    font-size: 18px;
    margin-bottom: 40px;
    animation: slide-up 0.6s ease-out 0.2s both;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.email-confirmation-card {
    background: linear-gradient(135deg, rgba(72,187,120,0.2), rgba(56,161,105,0.2));
    border: 1px solid rgba(72,187,120,0.4);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    animation: slide-up 0.6s ease-out 0.4s both;
}

.email-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.email-icon {
    font-size: 50px;
}

.email-ping {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(72,187,120,0.3);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.email-details {
    text-align: left;
    flex: 1;
}

.email-sent-to {
    font-size: 16px;
    margin: 0 0 12px;
    color: #e2e8f0;
}

.email-sent-to strong {
    color: #48bb78;
}

.email-instruction {
    font-size: 15px;
    margin: 0 0 16px;
    color: #cbd5e0;
    line-height: 1.6;
}

.email-instruction strong {
    color: #ffd700;
}

.birth-info {
    font-size: 14px;
    margin: 0;
    color: #a0aec0;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.birth-icon {
    margin-right: 5px;
}

/* ============================================
   WHAT YOU GET SECTION
   ============================================ */

.what-you-get-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a3a 0%, #0f0f2a 100%);
}

.planets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.planet-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.planet-card.animate-in {
    animation: fade-in-up 0.6s ease-out forwards;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.planet-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,215,0,0.3);
    background: rgba(255,255,255,0.05);
}

.sun-card:hover {
    box-shadow: 0 0 40px rgba(255,215,0,0.2);
}

.jupiter-card:hover {
    box-shadow: 0 0 40px rgba(102,126,234,0.2);
}

.planet-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.planet-card h3 {
    font-size: 24px;
    margin: 0 0 8px;
    color: #fff;
}

.planet-subtitle {
    font-size: 14px;
    color: #667eea;
    margin: 0 0 24px;
    font-weight: 600;
}

.planet-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.planet-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #cbd5e0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-left: 24px;
    position: relative;
}

.planet-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.planet-features li:last-child {
    border-bottom: none;
}

.bonus-feature {
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,215,0,0.02));
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(30px);
}

.bonus-feature.animate-in {
    animation: fade-in-up 0.6s ease-out 0.3s forwards;
}

.bonus-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.bonus-text h4 {
    font-size: 20px;
    margin: 0 0 8px;
    color: #ffd700;
}

.bonus-text p {
    font-size: 15px;
    color: #a0aec0;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   10 PLANETS GRID
   ============================================ */

.ten-planets-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.planet-mini-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.planet-mini-card:hover {
    transform: translateY(-6px);
    border-color: rgba(102,126,234,0.4);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 10px 30px rgba(102,126,234,0.15);
}

.planet-mini-card.featured-planet {
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,215,0,0.02));
    border-color: rgba(255,215,0,0.3);
}

.planet-mini-card.featured-planet:hover {
    border-color: rgba(255,215,0,0.5);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
}

.planet-mini-icon {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1;
}

.planet-mini-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #fff;
}

.planet-mini-info p {
    font-size: 12px;
    color: #a0aec0;
    margin: 0;
    line-height: 1.4;
}

/* Responsive 10 planets grid */
@media (max-width: 1024px) {
    .ten-planets-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }

    .planet-mini-card {
        padding: 20px 12px;
    }

    .planet-mini-icon {
        font-size: 32px;
    }

    .planet-mini-info h4 {
        font-size: 14px;
    }

    .planet-mini-info p {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .ten-planets-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }

    .planet-mini-card {
        padding: 16px 8px;
    }

    .planet-mini-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .planet-mini-info h4 {
        font-size: 12px;
    }

    .planet-mini-info p {
        font-size: 10px;
        display: none;
    }
}

@media (max-width: 480px) {
    .ten-planets-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }

    .planet-mini-card {
        padding: 12px 6px;
        border-radius: 12px;
    }

    .planet-mini-icon {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .planet-mini-info h4 {
        font-size: 10px;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f2a 0%, #12122a 100%);
}

.testimonials-section .section-badge {
    background: rgba(245, 175, 25, 0.15);
    color: #f5af19;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate-in {
    animation: fade-in-up 0.6s ease-out forwards;
}

.testimonial-card:nth-child(2).animate-in {
    animation-delay: 0.15s;
}

.testimonial-card:nth-child(3).animate-in {
    animation-delay: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,215,0,0.3);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: #e2e8f0;
    line-height: 1.7;
    margin: 0 0 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 15px;
}

.author-sign {
    display: block;
    font-size: 13px;
    color: #a0aec0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.landing-faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #12122a 0%, #1a1a3a 100%);
}

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

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

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(102,126,234,0.3);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255,255,255,0.02);
}

.faq-icon {
    font-size: 24px;
    color: #667eea;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    margin: 0;
    color: #a0aec0;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE STYLES & MOBILE OPTIMIZATION
   ============================================ */

@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .chart-wheel-preview {
        width: 320px;
        height: 320px;
    }

    .hero-content {
        text-align: center;
    }

    .planets-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Reduce animation complexity on mobile */
    .shooting-star,
    .planets-orbit,
    .orbit {
        display: none;
    }

    /* Hero fixes for mobile */
    .landing-hero {
        min-height: auto;
        padding: 60px 16px 40px;
    }

    .hero-content-wrapper {
        gap: 30px;
    }

    .section-container,
    .features-container,
    .pricing-container,
    .faq-container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .title-line {
        font-size: 32px;
    }

    .title-highlight {
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 16px 20px;
    }

    .stat-item {
        flex: 0 0 auto;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stat-divider {
        display: none;
    }

    .landing-form-card {
        padding: 20px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 15px;
    }

    .landing-submit-btn {
        padding: 16px;
        font-size: 16px;
    }

    .form-trust {
        font-size: 12px;
    }

    .chart-wheel-preview {
        width: 260px;
        height: 260px;
    }

    .email-confirmation-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 16px;
    }

    .email-details {
        text-align: center;
    }

    .email-sent-to,
    .email-instruction {
        font-size: 14px;
    }

    .birth-info {
        font-size: 13px;
    }

    .bonus-feature {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .planet-card {
        padding: 24px;
    }

    .planet-features li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .landing-hero {
        padding: 40px 16px;
    }

    .section-container,
    .features-container,
    .pricing-container,
    .faq-container {
        padding: 0 16px;
    }

    .hero-badge {
        padding: 6px 12px;
    }

    .badge-text {
        font-size: 11px;
    }

    .title-line {
        font-size: 26px;
        line-height: 1.2;
    }

    .title-highlight {
        font-size: 14px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-stats {
        padding: 12px 16px;
        gap: 8px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
    }

    .landing-form-card {
        padding: 16px;
    }

    .form-header h3 {
        font-size: 20px;
    }

    .form-header p {
        font-size: 13px;
    }

    .landing-submit-btn {
        padding: 14px;
        font-size: 15px;
    }

    .chart-wheel-preview {
        width: 240px;
        height: 240px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .planet-card {
        padding: 20px;
    }

    .planet-icon {
        font-size: 42px;
    }

    .planet-card h3 {
        font-size: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-rating {
        font-size: 14px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}

/* Utility class for scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LANDING FEATURES SECTION
   ============================================ */

.landing-features {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0f0f2a 0%, #12122a 100%);
}

.landing-features .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #fff, #a0aec0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    animation: fade-in-up 0.6s ease-out forwards;
}

.feature-card:nth-child(2).animate-in {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3).animate-in {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4).animate-in {
    animation-delay: 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102,126,234,0.4);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 10px 40px rgba(102,126,234,0.2);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin: 0 0 12px;
    color: #fff;
}

.feature-card p {
    color: #a0aec0;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   LANDING PRICING SECTION
   ============================================ */

.landing-pricing {
    padding: 100px 20px;
    background: linear-gradient(180deg, #12122a 0%, #0f0f2a 100%);
}

.pricing-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, #a0aec0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    text-align: center;
    color: #a0aec0;
    font-size: 18px;
    margin-bottom: 60px;
}

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

.pricing-card {
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102,126,234,0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(102,126,234,0.2), rgba(118,75,162,0.2));
    border: 2px solid rgba(102,126,234,0.5);
}

.pricing-card.featured:hover {
    border-color: rgba(102,126,234,0.8);
    box-shadow: 0 15px 50px rgba(102,126,234,0.3);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f5af19, #f12711);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(245, 175, 25, 0.4);
}

.pricing-card .card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 20px;
    margin: 0 0 8px;
    color: #fff;
}

.pricing-card .card-en {
    color: #718096;
    font-size: 14px;
    margin-bottom: 24px;
}

.pricing-card .card-price {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #fff;
}

.pricing-card.featured .card-price {
    background: linear-gradient(135deg, #f5af19, #f12711);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.card-features li {
    padding: 10px 0;
    font-size: 15px;
    color: #cbd5e0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.card-btn {
    display: block;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.card-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
}

.card-btn.featured-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
}

.card-btn.featured-btn:hover {
    box-shadow: 0 12px 35px rgba(102,126,234,0.5);
}

.card-btn-secondary {
    display: block;
    padding: 12px;
    border-radius: 10px;
    margin-top: 12px;
    background: transparent;
    color: #a0aec0;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.card-btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.guest-checkout-btn {
    cursor: pointer;
    border: none;
}

/* ============================================
   WHAT YOU GOT SECTION (Result page)
   ============================================ */

.what-you-got {
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    animation: slide-up 0.6s ease-out 0.6s both;
}

.what-you-got h3 {
    font-size: 22px;
    margin: 0 0 30px;
    color: #ffd700;
    text-align: center;
}

.mini-report-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.mini-feature {
    background: rgba(102,126,234,0.1);
    border: 1px solid rgba(102,126,234,0.2);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.mini-feature:hover {
    background: rgba(102,126,234,0.2);
    border-color: rgba(102,126,234,0.4);
    transform: translateY(-2px);
}

/* ============================================
   RESULT UPSELL SECTION
   ============================================ */

.result-upsell {
    background: linear-gradient(135deg, rgba(102,126,234,0.2), rgba(118,75,162,0.2));
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(102,126,234,0.3);
    animation: slide-up 0.6s ease-out 0.8s both;
}

.result-upsell h3 {
    font-size: 24px;
    margin: 0 0 12px;
    text-align: center;
    color: #fff;
}

.upsell-desc {
    color: #a0aec0;
    font-size: 16px;
    margin: 0 0 30px;
    text-align: center;
}

.upsell-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.upsell-feature {
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 24px;
    font-size: 14px;
    color: #e2e8f0;
}

.upsell-btn {
    display: inline-block;
    padding: 18px 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(102,126,234,0.4);
    transition: all 0.3s ease;
}

.upsell-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(102,126,234,0.5);
    color: #fff;
}

/* ============================================
   LANDING FOOTER CTA
   ============================================ */

.landing-footer-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    text-align: center;
}

.landing-footer-cta h2 {
    font-size: 36px;
    margin: 0 0 16px;
    color: #fff;
}

.landing-footer-cta p {
    font-size: 18px;
    margin: 0 0 32px;
    opacity: 0.9;
    color: #fff;
}

.footer-cta-btn {
    display: inline-block;
    padding: 18px 56px;
    border-radius: 14px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: #fff;
    color: #667eea;
}

/* ============================================
   GUEST CHECKOUT MODAL
   ============================================ */

.guest-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guest-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}

.guest-modal-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1a1a2e, #0f0c29);
    border-radius: 24px;
    padding: 40px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(102,126,234,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.guest-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guest-modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.guest-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.guest-modal-header h2 {
    font-size: 28px;
    margin: 0 0 12px;
    color: #fff;
}

.guest-modal-header p {
    color: #a0aec0;
    margin: 0;
    font-size: 15px;
}

.guest-checkout-form .guest-form-section {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.guest-checkout-form .guest-form-section h3 {
    font-size: 17px;
    margin: 0 0 20px;
    color: #667eea;
}

.guest-form-group {
    margin-bottom: 18px;
}

.guest-form-group:last-child {
    margin-bottom: 0;
}

.guest-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #e2e8f0;
    font-size: 14px;
}

.guest-form-group .hint {
    font-size: 12px;
    color: #718096;
    font-weight: 400;
}

.guest-form-group input,
.guest-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.guest-form-group input:focus,
.guest-form-group select:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(102,126,234,0.1);
}

.guest-form-group input::placeholder {
    color: #718096;
}

.guest-form-group select option {
    background: #1a1a2e;
    color: #fff;
}

.guest-order-summary {
    background: rgba(102,126,234,0.1);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(102,126,234,0.3);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #e2e8f0;
    font-size: 15px;
}

.summary-row.total {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 10px;
    padding-top: 14px;
    font-size: 20px;
    font-weight: 700;
    color: #48bb78;
}

.guest-submit-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102,126,234,0.4);
}

.guest-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(102,126,234,0.5);
}

.guest-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.guest-form-notice {
    margin-top: 20px;
    font-size: 13px;
    color: #718096;
    text-align: center;
    line-height: 1.7;
}

.guest-success-message {
    text-align: center;
    padding: 24px;
}

.guest-success-message .success-icon {
    font-size: 70px;
    margin-bottom: 24px;
}

.guest-success-message h3 {
    font-size: 26px;
    margin: 0 0 16px;
    color: #48bb78;
}

.guest-success-message p {
    color: #e2e8f0;
    margin: 0 0 12px;
    line-height: 1.6;
    font-size: 16px;
}

.guest-success-message .success-note {
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 28px;
}

.guest-close-btn {
    padding: 16px 48px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guest-close-btn:hover {
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE - Features, Pricing, Modal
   ============================================ */

@media (max-width: 768px) {
    .landing-features {
        padding: 60px 16px;
    }

    .landing-features .section-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-card {
        padding: 24px 16px;
    }

    .feature-icon {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .landing-pricing {
        padding: 60px 16px;
    }

    .pricing-title {
        font-size: 28px;
    }

    .pricing-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card .card-price {
        font-size: 36px;
    }

    .mini-report-features {
        grid-template-columns: 1fr;
    }

    .guest-modal-content {
        padding: 28px 20px;
    }

    .guest-modal-header h2 {
        font-size: 24px;
    }

    .landing-footer-cta h2 {
        font-size: 26px;
    }

    .landing-footer-cta p {
        font-size: 16px;
    }

    .footer-cta-btn {
        padding: 16px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        font-size: 32px;
    }

    .feature-card h3 {
        font-size: 15px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-card .card-price {
        font-size: 32px;
    }

    .card-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .what-you-got {
        padding: 24px;
    }

    .what-you-got h3 {
        font-size: 18px;
    }

    .result-upsell {
        padding: 28px 20px;
    }

    .result-upsell h3 {
        font-size: 20px;
    }

    .upsell-btn {
        padding: 16px 36px;
        font-size: 16px;
    }

    .landing-footer-cta {
        padding: 50px 16px;
    }

    .landing-footer-cta h2 {
        font-size: 22px;
    }

    .footer-cta-btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    .guest-modal-content {
        padding: 24px 16px;
    }

    .guest-checkout-form .guest-form-section {
        padding: 18px;
    }

    .guest-submit-btn {
        padding: 16px;
        font-size: 16px;
    }
}

/* ============================================
   ENHANCED BUNDLE SECTION
   ============================================ */

.bundle-section {
    margin-top: 60px;
    position: relative;
}

.bundle-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(245, 175, 25, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(245, 175, 25, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(245, 175, 25, 0.6);
    }
}

.bundle-card-enhanced {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 24px;
    padding: 40px;
    overflow: hidden;
    border: 2px solid rgba(245, 175, 25, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bundle-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(245, 175, 25, 0.3),
                0 0 60px rgba(241, 39, 17, 0.2);
    border-color: rgba(245, 175, 25, 0.6);
}

/* Background Glow Effect */
.bundle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 175, 25, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glow-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Floating Stars */
.bundle-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bundle-star {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #f5af19, #f12711);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(245, 175, 25, 0.8);
    animation: twinkle-star 3s ease-in-out infinite;
}

.bundle-star:nth-child(1) { animation-delay: 0s; }
.bundle-star:nth-child(2) { animation-delay: 0.7s; }
.bundle-star:nth-child(3) { animation-delay: 1.4s; }
.bundle-star:nth-child(4) { animation-delay: 2.1s; }

@keyframes twinkle-star {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Content Layout */
.bundle-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Section */
.bundle-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bundle-header {
    margin-bottom: 8px;
}

.bundle-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.bundle-emoji {
    font-size: 40px;
    animation: rotate-emoji 3s ease-in-out infinite;
}

@keyframes rotate-emoji {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.bundle-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0 0 0;
}

/* Includes List */
.bundle-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bundle-include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.bundle-include-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(245, 175, 25, 0.5);
    transform: translateX(5px);
}

.include-icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* Savings Highlight */
.bundle-savings-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.2), rgba(56, 161, 105, 0.2));
    border-radius: 12px;
    border: 2px solid rgba(72, 187, 120, 0.4);
    color: #48bb78;
    font-size: 16px;
    font-weight: 600;
    animation: glow-savings 2s ease-in-out infinite;
}

@keyframes glow-savings {
    0%, 100% {
        box-shadow: 0 0 10px rgba(72, 187, 120, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(72, 187, 120, 0.5);
    }
}

.savings-icon {
    color: #48bb78;
    flex-shrink: 0;
    animation: spin-icon 4s linear infinite;
}

@keyframes spin-icon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.savings-amount {
    color: #68d391;
    font-size: 20px;
}

/* Right Section - Pricing */
.bundle-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bundle-pricing-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-compare {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    justify-content: center;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.price-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.old-price-large {
    font-size: 24px;
    font-weight: 600;
    color: #718096;
    text-decoration: line-through;
}

.price-item.featured {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(245, 175, 25, 0.1), rgba(241, 39, 17, 0.1));
    border-radius: 12px;
    border: 2px solid rgba(245, 175, 25, 0.3);
}

.new-price-large {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discount-percent {
    display: inline-block;
    background: #48bb78;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 4px;
}

.price-arrow {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.4);
}

/* Bundle Actions */
.bundle-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bundle-btn-primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(245, 175, 25, 0.4);
    transition: all 0.3s ease;
}

.bundle-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(245, 175, 25, 0.6);
}

.bundle-btn-primary:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 22px;
}

.btn-text {
    font-size: 18px;
}

/* Shine Effect */
.btn-shine {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 200%;
    }
}

.bundle-btn-secondary {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bundle-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Guarantee Badge */
.bundle-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-align: center;
}

.guarantee-icon {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN - Bundle Section
   ============================================ */

@media (max-width: 1024px) {
    .bundle-content {
        gap: 30px;
    }

    .bundle-title {
        font-size: 28px;
    }

    .bundle-includes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bundle-section {
        margin-top: 40px;
    }

    .bundle-card-enhanced {
        padding: 30px 20px;
    }

    .bundle-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bundle-title {
        font-size: 24px;
    }

    .bundle-emoji {
        font-size: 32px;
    }

    .bundle-includes {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pricing-compare {
        flex-direction: column;
        gap: 15px;
    }

    .price-arrow {
        transform: rotate(90deg);
    }

    .bundle-pricing-box {
        padding: 24px 20px;
    }

    .new-price-large {
        font-size: 36px;
    }

    .old-price-large {
        font-size: 20px;
    }

    .bundle-btn-primary {
        padding: 16px 28px;
        font-size: 16px;
    }

    .btn-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .bundle-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .bundle-card-enhanced {
        padding: 24px 16px;
    }

    .bundle-title {
        font-size: 20px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .bundle-subtitle {
        font-size: 14px;
        text-align: center;
    }

    .bundle-include-item {
        font-size: 13px;
        padding: 10px 12px;
    }

    .include-icon {
        font-size: 18px;
    }

    .bundle-savings-highlight {
        flex-direction: column;
        text-align: center;
        font-size: 14px;
        padding: 14px 16px;
    }

    .savings-amount {
        font-size: 18px;
    }

    .new-price-large {
        font-size: 32px;
    }

    .bundle-btn-primary {
        padding: 14px 24px;
        font-size: 15px;
    }

    .btn-text {
        font-size: 15px;
    }

    .btn-icon {
        font-size: 20px;
    }

    .bundle-guarantee {
        font-size: 12px;
    }
}

/* ============================================
   SOCIAL SHARE SECTION
   ============================================ */
.social-share-section {
    margin-top: 20px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.share-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.share-btn {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
}

.share-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.share-btn .check-icon {
    display: none;
    color: #48bb78;
}

.share-btn.copied svg:first-child {
    display: none;
}

.share-btn.copied .check-icon {
    display: block;
}

/* Platform-specific colors */
.share-btn.facebook {
    color: #fff;
}

.share-btn.facebook:hover {
    background: #1877f2;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.share-btn.twitter {
    color: #fff;
}

.share-btn.twitter:hover {
    background: #000;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.share-btn.whatsapp {
    color: #fff;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.share-btn.copy-link {
    color: #fff;
}

.share-btn.copy-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.share-btn.copy-link.copied {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

/* Tooltip */
.share-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.share-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(0, 0, 0, 0.9);
}

.share-btn:hover .share-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -40px;
}

/* Click animation */
.share-btn:active {
    transform: scale(0.9);
}

/* Stagger animation for buttons */
.social-share-buttons .share-btn:nth-child(1) { animation: popIn 0.4s ease-out 0.6s both; }
.social-share-buttons .share-btn:nth-child(2) { animation: popIn 0.4s ease-out 0.7s both; }
.social-share-buttons .share-btn:nth-child(3) { animation: popIn 0.4s ease-out 0.8s both; }
.social-share-buttons .share-btn:nth-child(4) { animation: popIn 0.4s ease-out 0.9s both; }

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ripple effect */
.share-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 0.3s;
}

.share-btn:active::after {
    transform: scale(1.5);
    opacity: 0.3;
    transform: scale(1.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-share-section {
        margin-top: 16px;
    }

    .share-label {
        font-size: 10px;
    }

    .social-share-buttons {
        gap: 6px;
    }

    .share-btn {
        width: 32px;
        height: 32px;
    }

    .share-btn svg {
        width: 14px;
        height: 14px;
    }
}
