.dev-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.dev-hero-content {
    position: relative;
    z-index: 1;
}

.dev-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dev-hero .subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.dev-hero .tagline-text {
    font-size: 1.2rem;
    opacity: 0.95;
}

.capabilities {
    padding: 80px 20px;
    background: white;
}

.capabilities h2 {
    text-align: center;
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 20px;
}

.capabilities .intro {
    text-align: center;
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.service-card {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #1e40af;
}

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

.service-card .icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #1e40af;
    margin-bottom: 15px;
}

.service-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    padding: 8px 0;
    color: #2d3748;
    font-weight: 500;
}

.service-card ul li::before {
    content: "✓ ";
    color: #48bb78;
    font-weight: bold;
    margin-right: 8px;
}

.process {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

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

.step {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h3 {
    color: #2d3748;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.step p {
    color: #4a5568;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

@media (max-width: 768px) {
    .dev-hero {
        padding: 100px 20px 60px;
    }
    
    .dev-hero h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}
