/* Webdesign page specific styles */
.webdesign-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.webdesign-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.webdesign-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #000;
    margin-bottom: 20px;
}

.webdesign-hero .highlight {
    color: #ff6b35;
}

.webdesign-hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.webdesign-hero .cta-button {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.webdesign-hero .cta-button:hover {
    background: #e55529;
    transform: translateY(-2px);
}

.webdesign-hero-visual {
    height: 400px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.webdesign-hero-visual::before {
    content: '🎨';
    font-size: 8rem;
    opacity: 0.3;
}

.features-section {
    padding: 80px 0;
    background: #fff;
}

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

.feature-card {
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    background: #f8f8f8;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

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

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.showcase-section {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.showcase-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.showcase-image {
    height: 200px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 1;
}

.showcase-content {
    padding: 30px;
}

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

.showcase-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.showcase-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.showcase-tag {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
}

.showcase-cta {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.showcase-cta:hover {
    background: #e55529;
    transform: translateY(-2px);
}

.process-section {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

.section-description {
    font-size: 19px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.process-section .section-title {
    color: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #ff6b35;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 30px;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.technology-section {
    padding: 80px 0;
    background: #fff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tech-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-5px);
}

.tech-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.tech-item p {
    font-size: 0.9rem;
    color: #666;
    transition: color 0.3s ease;
}

.tech-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 3px solid #ff6b35;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    background: #ff6b35;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 10px;
}

.pricing-period {
    color: #666;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.pricing-button {
    display: block;
    background: #ff6b35;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: #e55529;
}

@media (max-width: 768px) {
    .webdesign-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .webdesign-hero-visual {
        height: 250px;
    }
    
    .features-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}