/* Investors Page Specific Styles */

.investors-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.investors-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.investors-hero .hero-subtitle {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.investment-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-card h3 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 10px;
    font-weight: 700;
}

.highlight-card p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.investment-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.investment-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.investment-overview .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.financial-projections {
    padding: 80px 0;
    background: white;
}

.financial-projections h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.projection-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.year-projection {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.year-projection:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.year-projection h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.revenue, .profit, .valuation {
    margin: 10px 0;
    font-size: 1.1rem;
}

.revenue {
    color: #28a745;
    font-weight: 600;
}

.profit {
    color: #ff6b35;
    font-weight: 600;
}

.valuation {
    color: #007bff;
    font-weight: 600;
}

.capital-allocation {
    padding: 80px 0;
    background: #f8f9fa;
}

.capital-allocation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.allocation-chart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.allocation-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.allocation-item:hover {
    transform: translateY(-5px);
}

.percentage {
    font-size: 2.5rem;
    color: #ff6b35;
    font-weight: 700;
    margin-bottom: 15px;
}

.category {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 10px;
}

.amount {
    font-size: 1rem;
    color: #666;
}

.competitive-advantages {
    padding: 80px 0;
    background: white;
}

.competitive-advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.advantage-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 25px;
}

.advantage-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.advantage-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.leadership-team {
    padding: 80px 0;
    background: #f8f9fa;
}

.leadership-team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 700;
}

.team-member .title {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.team-member p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.investor-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
    color: white;
}

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

.investor-cta p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
}

.cta-button.secondary:hover {
    background: #ff6b35;
    color: white;
}

/* Investor Resources Section */
.investor-resources {
    padding: 80px 0;
    background: #f8f9fa;
}

.investor-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.resource-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 25px;
}

.resource-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.resource-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.resource-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Investment Process Section */
.investment-process {
    padding: 80px 0;
    background: white;
}

.investment-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, #ff6b35, #4a90e2);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 180px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .investors-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .investors-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .investment-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .highlight-card h3 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .projection-timeline {
        grid-template-columns: 1fr;
    }
    
    .allocation-chart {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .resource-card {
        padding: 30px 20px;
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .process-timeline::before {
        top: 0;
        left: 30px;
        transform: none;
        width: 2px;
        height: 100%;
    }
    
    .process-step {
        width: 100%;
        flex-direction: row;
        text-align: left;
        padding-left: 80px;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        margin-bottom: 0;
    }
    
    .step-content {
        flex: 1;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .investors-hero {
        padding: 80px 0 60px;
    }
    
    .investment-overview,
    .financial-projections,
    .capital-allocation,
    .competitive-advantages,
    .leadership-team {
        padding: 60px 0;
    }
    
    .investor-cta {
        padding: 80px 0;
    }
    
    .stat-item,
    .advantage-card,
    .team-member {
        padding: 30px 20px;
    }
}