/* Reset and Base Styles */
body {
    -webkit-font-smoothing: antialiased;
}


/* Hero Section */
.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #ede9fe;
    color: #7c3aed;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: white;
}



.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.problem-card {
    padding: 32px;
    background: #fef2f2;
    border-radius: 12px;
    border: 1px solid #fecaca;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

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

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

.section-label {
    display: inline-block;
    padding: 6px 12px;
    background: #dbeafe;
    color: var(--primary);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.solution-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.solution-text > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

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

.feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-primary);
}

.feature-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Visual Card */
.visual-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    padding: 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}

.card-dots {
    display: flex;
    gap: 8px;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.card-content {
    padding: 32px;
}

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

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-mock {
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
}

.input-mock.large {
    height: 80px;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 32px;
    background: white;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    font-size: 15px;
}

.step-arrow {
    font-size: 32px;
    color: var(--text-secondary);
}

/* Multi-Product Specific Styles */


.product-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    padding: 48px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 16px;
}

.product-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #22c55e;
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.product-featured h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-tagline {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.product-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.product-features li {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-left: 8px;
}

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.product-card {
    padding: 32px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px var(--shadow);
    border-color: var(--primary);
}

.product-card.coming-soon {
    background: var(--bg-secondary);
    position: relative;
}

.product-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.coming-soon-badge {
    padding: 4px 10px;
    background: #fbbf24;
    color: #78350f;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.product-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features-mini {
    list-style: none;
}

.product-features-mini li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.product-features-mini li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps {
        flex-direction: column;
    }

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

    .product-featured {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px;
    }

    .problem-card {
        justify-items: center;
    }
    
    
}

