/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-benefits {
    max-width: 1000px;
    margin: 0 auto 2rem;
    text-align: left;
    list-style: none;
    padding: 0;
}

.hero-benefits li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.hero-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    text-align: center;
}

/* Services Types Section */
.services-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-type-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.service-type-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-type-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.3rem;
    color: #667eea;
    font-weight: 600;
}

.service-price strong {
    font-size: 1.5rem;
    color: #764ba2;
}

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

.process h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Who Needs Section */
.who-needs {
    padding: 80px 0;
    background: #f8f9fa;
}

.who-needs h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.who-needs > .container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #555;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.industry-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: white;
}

.stats h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

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

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.benefits-note {
    max-width: 1000px;
    margin: 3rem auto 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    font-style: italic;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.pricing-table-wrapper {
    overflow-x: auto;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.pricing-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: #f8f9fa;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 1.5rem;
    font-size: 1rem;
    color: #333;
}

.pricing-table td:last-child {
    font-weight: 600;
    color: #667eea;
}

/* Company Advantages Section */
.company-advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.company-advantages h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

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

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

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

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta > .container > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-method a {
    font-size: 1rem;
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.contact-method a:hover {
    opacity: 1;
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-benefits li {
        font-size: 1rem;
    }
    
    .about h2,
    .process h2,
    .who-needs h2,
    .stats h2,
    .benefits h2,
    .pricing h2,
    .company-advantages h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .process-steps,
    .industries-grid,
    .stats-grid,
    .benefits-grid,
    .advantages-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 1rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .about,
    .services-types,
    .process,
    .who-needs,
    .stats,
    .benefits,
    .pricing,
    .company-advantages,
    .cta {
        padding: 60px 0;
    }
}

