/* Hero Section */
.startup-hero {
    background: linear-gradient(135deg, #6c757d 0%, #8a9199 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.startup-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.startup-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.startup-hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #f36522;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid white;
}

.cta-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-button-alt {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.cta-button-alt:hover {
    background: white;
    color: #f36522;
}

/* Value Proposition Cards */
.value-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(243, 101, 34, 0.2);
    border-color: #f36522;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f36522 0%, #ff8650 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
}

/* What's Included Section */
.included-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #f36522 0%, #ff8650 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f36522;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f36522 0%, #ff8650 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.feature-text {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f36522 0%, #ff8650 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
}

.why-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #f36522;
    color: white;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    border-top: 5px solid #f36522;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 35px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f36522 0%, #ff8650 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stars {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    font-style: italic;
    margin-bottom: 25px;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
}

.testimonial-role {
    text-align: center;
    color: #6c757d;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f36522 0%, #ff8650 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid white;
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.guarantee-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.guarantee-text {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .startup-hero {
        padding: 60px 0 40px;
    }
    
    .value-section,
    .included-section,
    .why-choose-section,
    .testimonials-section {
        padding: 50px 0;
    }
}
