/* ==========================================
   Moltbot Setup Pro - Styles
   Dark theme with orange/coral accent
   ========================================== */

/* CSS Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1e1e1e;

    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;

    --accent: #ff6b35;
    --accent-hover: #ff8c5a;
    --accent-light: rgba(255, 107, 53, 0.1);

    --success: #22c55e;
    --error: #ef4444;

    --border-color: #2a2a2a;
    --border-light: #333333;

    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;

    --container-max: 1200px;
    --section-padding: 80px;
    --section-padding-mobile: 48px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--bg-tertiary);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================
   Header
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.header-cta {
    display: block;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--bg-secondary);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--text-secondary);
    font-size: 1.125rem;
    padding: 8px 0;
}

.mobile-nav-cta {
    margin-top: 8px;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    padding: 160px 0 var(--section-padding);
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   Pain Points Section
   ========================================== */
.pain-points {
    padding: var(--section-padding) 0;
    background-color: var(--bg-primary);
}

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

.pain-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.pain-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border-radius: var(--radius-md);
}

.pain-icon svg {
    width: 32px;
    height: 32px;
}

.pain-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.pain-text {
    color: var(--text-secondary);
}

/* ==========================================
   Solution Section
   ========================================== */
.solution {
    padding: var(--section-padding) 0;
    background-color: var(--bg-secondary);
}

.solution-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 200px;
}

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

.step-title {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.step-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.step-arrow {
    color: var(--text-muted);
}

.step-arrow svg {
    width: 32px;
    height: 32px;
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing {
    padding: var(--section-padding) 0;
    background-color: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-period {
    color: var(--text-secondary);
}

.pricing-desc {
    color: var(--text-secondary);
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.feature.included .feature-icon {
    color: var(--success);
}

.feature.not-included {
    color: var(--text-muted);
}

.feature.not-included .feature-icon {
    color: var(--text-muted);
}

/* ==========================================
   How It Works Section
   ========================================== */
.how-it-works {
    padding: var(--section-padding) 0;
    background-color: var(--bg-secondary);
}

.steps-detailed {
    max-width: 700px;
    margin: 0 auto;
}

.step-detailed {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.step-detailed:last-child {
    margin-bottom: 0;
}

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

.step-detailed-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.step-detailed-content p {
    color: var(--text-secondary);
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background-color: var(--bg-primary);
}

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

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
}

.author-title {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq {
    padding: var(--section-padding) 0;
    background-color: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
}

.faq-question {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--accent);
}

/* ==========================================
   Final CTA Section
   ========================================== */
.final-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

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

.cta-note a {
    color: var(--accent);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: 48px 0 24px;
    background-color: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================
   Thank You Page Specific Styles
   ========================================== */
.thank-you-hero {
    padding: 160px 0 var(--section-padding);
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border-radius: 50%;
}

.thank-you-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.thank-you-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Next Steps Timeline */
.next-steps {
    padding: var(--section-padding) 0;
    background-color: var(--bg-secondary);
}

.steps-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    width: 2px;
    height: calc(100% - 16px);
    background-color: var(--border-color);
}

.timeline-marker {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-secondary);
}

.timeline-content a {
    color: var(--accent);
}

/* Scheduler Section */
.scheduler {
    padding: var(--section-padding) 0;
    background-color: var(--bg-primary);
}

.scheduler-embed {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
}

.scheduler-embed iframe {
    border: none;
}

.scheduler-placeholder {
    padding: 80px 40px;
    text-align: center;
    color: var(--text-secondary);
}

.scheduler-note {
    margin-top: 16px;
    font-size: 0.875rem;
}

/* Contact Info */
.contact-info {
    padding: var(--section-padding) 0;
    background-color: var(--bg-secondary);
}

.contact-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.contact-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-email {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
}

.response-time {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .pain-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pain-card:last-child,
    .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pain-grid,
    .testimonials-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pain-card:last-child,
    .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .pricing-card.featured {
        transform: none;
    }

    .solution-steps {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .pricing-card {
        padding: 24px;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .faq-item {
        padding: 20px;
    }
}
