/* Page-specific CSS for index.html */
@import url('styles.css');

/* Add index-specific overrides below */

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 100px 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.problem-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    color: #fff;
}

.solution-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.feature-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.revenue-example {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid var(--accent-color);
}

.revenue-example h3 {
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.example-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.example-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
}

.step-number {
    background: var(--accent-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.example-step p {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
}

.example-result {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.example-result h4 {
    color: #fff;
    margin-bottom: 10px;
}

.result-amount {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

/* Market Section */
.market-section {
    padding: 100px 0;
    background: #fff;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.industry-breakdown {
    text-align: center;
    margin-top: 60px;
}

.industry-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.industry-tag {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.industry-tag:hover {
    transform: scale(1.05);
}

/* Business Model */
.model-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.model-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.model-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.model-card h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.model-percent {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 20px 0;
    font-family: 'Montserrat', sans-serif;
}

.model-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Traction Section */
.traction-section {
    padding: 100px 0;
    background: #fff;
}

.traction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.traction-item {
    text-align: center;
    padding: 40px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.traction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.traction-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.traction-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.traction-item p {
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
     background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    min-width: 250px;
}

.cta-note {
    /* color: rgba(255, 255, 255, 0.8); */
    font-size: 0.9rem;
}

.cta-note a {
    /* color: #fff; */
    text-decoration: underline;
}

/* Investor Section */
.investor-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.investor-logos {
    overflow: hidden;
    margin: 40px 0;
    position: relative;
}

.investor-scroll {
    display: flex;
    animation: scroll-investors 20s linear infinite;
    gap: 40px;
    padding: 20px 0;
}

.investor-name {
    background: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

.investor-cta {
    text-align: center;
    margin-top: 40px;
}

.investor-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Animations */
@keyframes scroll-investors {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .problem-grid,
    .solution-features,
    .market-stats,
    .model-grid,
    .traction-grid {
        grid-template-columns: 1fr;
    }
    
    .example-step,
    .example-result {
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        min-width: 100%;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .industry-tags {
        gap: 10px;
    }
    
    .industry-tag {
        padding: 8px 20px;
        font-size: 1rem;
    }
}