/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #111827;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1 {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 24px;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 24px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 16px;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 16px;
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-blue {
    color: #2563eb;
}

.text-green {
    color: #10b981;
}

.text-red {
    color: #dc2626;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #6d28d9);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

.btn-outline {
    background: white;
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
    min-height: 56px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f3f4f6;
    z-index: 50;
    padding: 16px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.875rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: #111827;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    padding: 96px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #6b7280;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
}

.image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    border-radius: 24px;
    filter: blur(32px);
    opacity: 0.2;
    transform: scale(1.1);
}

.image-container img {
    position: relative;
    height: 32rem;
    width: auto;
    object-fit: contain;
}

/* Problem Solution Section */
.problem-solution {
    padding: 96px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    margin-bottom: 24px;
}

.section-header p {
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.problem-card, .solution-card {
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.problem-card {
    background: linear-gradient(135deg, #fef2f2, #fce7f3);
    border: 1px solid #fecaca;
}

.solution-card {
    background: linear-gradient(135deg, #ecfdf5, #dbeafe);
    border: 1px solid #bbf7d0;
}

.problem-card h3, .solution-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.problem-card h3::before {
    content: '';
    width: 40px;
    height: 40px;
    background: #dc2626;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card h3::before {
    content: '';
    width: 40px;
    height: 40px;
    background: #10b981;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-list, .solution-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-item, .solution-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.x-icon {
    width: 24px;
    height: 24px;
    color: #dc2626;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Features Section */
.features {
    padding: 96px 0;
    background: linear-gradient(135deg, #f9fafb, #eff6ff);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.feature-icon.indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-icon.gray {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.feature-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon.orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* How It Works Section */
.how-it-works {
    padding: 96px 0;
    background: white;
}

.steps-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.steps-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 12px;
}

.cta-button {
    margin-top: 16px;
}



/* Pricing Section */
.pricing {
    padding: 96px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 72rem;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    background: linear-gradient(135deg, #eff6ff, #f3e8ff);
    border: 2px solid #93c5fd;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 8px 24px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.price span {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #374151;
}

.features-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

/* See Price Section */
.see-price-section {
    padding: 64px 0;
    background: linear-gradient(135deg, #f9fafb, #eff6ff);
    text-align: center;
}

.see-price-content h2 {
    margin-bottom: 16px;
}

.see-price-content p {
    margin-bottom: 32px;
}

/* Contact Section */
.contact {
    padding: 96px 0;
    background: linear-gradient(135deg, #f9fafb, #eff6ff);
}

.contact-content {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    margin-bottom: 16px;
}

.contact-content p {
    margin-bottom: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.contact-form .form-group textarea {
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.char-count {
    text-align: right;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 4px;
}



/* Waitlist Section */
.waitlist {
    padding: 96px 0;
    background: white;
}

.waitlist-content {
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

.waitlist-content h2 {
    margin-bottom: 16px;
}

.waitlist-content p {
    margin-bottom: 48px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-success {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.form-success h3 {
    color: #059669;
    margin-bottom: 8px;
}

.form-success p {
    color: #047857;
}

/* Final CTA Section */
.final-cta {
    padding: 96px 0;
    background: linear-gradient(135deg, #111827, #1e3a8a);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 24px;
}

.cta-content p {
    color: #d1d5db;
    font-size: 1.25rem;
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 64px;
}

.final-cta .btn-outline {
    background: white;
    color: #111827;
    border-color: white;
}

.final-cta .btn-outline:hover {
    background: #f9fafb;
}

.cta-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 64px;
}

.cta-image .image-container {
    position: relative;
}

.cta-image .image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    border-radius: 24px;
    filter: blur(48px);
    opacity: 0.3;
    transform: scale(1.1);
}

.cta-image .image-container img {
    position: relative;
    height: 20rem;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .problem-solution-grid,
    .steps-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 64px 0;
    }
    
    .problem-solution,
    .features,
    .how-it-works,
    .pricing,
    .contact,
    .waitlist,
    .final-cta {
        padding: 64px 0;
    }
    
    .nav {
        display: none;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}
