/* Hero Section */
.hero-creation {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #000000 0%, #1F2937 100%);
    color: white;
    text-align: center;
}

.hero-creation .hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-creation .title-accent {
    color: #DC2626;
    font-weight: 300;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-creation .title-main {
    font-size: 3.5rem;
    text-transform: uppercase;
    color: white;
}

.hero-creation .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
}

.service-card.featured {
    border: 2px solid #f0f0f0;
}

.service-card.highlight {
    border: 2px solid #DC2626;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

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

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

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

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.service-description {
    font-size: 1.05rem;
    color: #6B7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.service-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #374151;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: #DC2626;
    font-size: 0.9rem;
}

.service-price {
    margin: 30px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.service-price .price {
    font-size: 2rem;
    font-weight: 800;
    color: #DC2626;
    display: block;
}

.service-price .old-price {
    font-size: 1.2rem;
    color: #9CA3AF;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.service-price .discount {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

/* Advantages Section */
.advantages-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

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

.advantage-card {
    padding: 35px 25px;
    background: #f9fafb;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

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

.advantage-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.advantage-card p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    margin-top: 15px;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #DC2626, #B91C1C);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.step-content p {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1F2937 100%);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-creation .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-creation .title-main {
        font-size: 2.5rem;
    }
    
    .hero-creation .title-accent {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-timeline::before {
        left: 35px;
    }
    
    .process-step {
        flex-direction: row !important;
        padding-left: 90px;
    }
    
    .step-number {
        position: absolute;
        left: 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

