/* Global Styles */
:root {
    --primary: #020617;
    --primary-light: #1e293b;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --bg: #0f172a;
    --bg-light: #1e293b;
    --border: #334155;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-upsell {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    font-size: 18px;
    padding: 16px 40px;
}

.btn-upsell:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.video-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 80px 20px;
    text-align: center;
}

.video-placeholder p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.video-note {
    font-size: 0.9rem !important;
    margin-top: 10px;
    color: var(--text-muted);
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--bg);
}

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.problem-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--error);
}

.problem-card h3 {
    color: var(--error);
    margin-bottom: 15px;
}

.problem-summary {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: var(--bg-light);
}

.solution h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.solution-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--accent);
}

/* What's Inside Section */
.whats-inside {
    padding: 80px 0;
    background: var(--bg);
}

.whats-inside h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.chapters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.chapter {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid var(--accent);
}

.chapter h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.chapter ul {
    list-style: none;
}

.chapter li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.chapter li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Who Is This For */
.who-is-this-for {
    padding: 80px 0;
    background: var(--bg-light);
}

.who-is-this-for h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.audience-card {
    background: var(--bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.audience-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

/* About Author */
.about-author {
    padding: 80px 0;
    background: var(--bg);
}

.author-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.author-image {
    width: 300px;
    height: 300px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.author-bio h2 {
    color: var(--accent);
    margin-bottom: 20px;
}

.author-bio p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.testimonial {
    background: var(--bg);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--success);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.testimonial-author {
    color: var(--accent);
    font-weight: 600;
}

.testimonials-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--bg);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--border);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-description {
    color: var(--text-muted);
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.amount {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--accent);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

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

.pricing-card .btn {
    width: 100%;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--bg);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.faq-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--primary);
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
}

/* Checkout Styles */
.checkout-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 50px;
}

.checkout-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.checkout-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.order-summary {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
}

.order-item {
    margin-bottom: 20px;
}

.order-item h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: bold;
    padding-top: 20px;
    border-top: 2px solid var(--border);
}

.total-amount {
    color: var(--accent);
}

.checkout-form {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.secure-checkout {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Thank You Styles */
.thankyou-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.thankyou-content {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.thankyou-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--success);
}

.thankyou-message {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.action-card {
    background: var(--bg);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--border);
}

.action-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

.action-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.action-card .note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.next-steps {
    text-align: left;
    background: var(--bg);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.next-steps h2 {
    color: var(--accent);
    margin-bottom: 20px;
}

.next-steps ol {
    margin-left: 20px;
}

.next-steps li {
    padding: 10px 0;
    font-size: 1.1rem;
}

/* Upsell Styles */
.upsell-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.upsell-content {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 16px;
}

.upsell-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.upsell-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.upsell-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.mentorship-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    color: var(--accent);
    margin-bottom: 8px;
}

.mentorship-pricing {
    text-align: center;
    background: var(--bg);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-tag .currency {
    font-size: 1.5rem;
}

.price-tag .amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
}

.price-tag .period {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.price-note {
    color: var(--text-muted);
}

.mentorship-cta {
    text-align: center;
    margin-bottom: 50px;
}

.guarantee {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.faq-section {
    border-top: 1px solid var(--border);
    padding-top: 50px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.mentorship-includes {
    background: var(--bg);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.mentorship-includes h4 {
    margin-bottom: 10px;
    color: var(--accent);
}

.mentorship-includes ul {
    list-style: none;
}

.mentorship-includes li {
    padding: 5px 0;
}

.upsell-note {
    text-align: center;
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .author-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}
