.small-business-hero {
    background: var(--gradient-2);
    color: white;
    padding: 12rem 2rem 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.small-business-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,102,255,0.1) 0%, rgba(0,204,255,0.1) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.pricing {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #3498db;
}

.price {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 1rem 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-card li {
    margin: 1rem 0;
}

.pricing-card li i {
    color: #27ae60;
    margin-right: 0.5rem;
}

.process {
    padding: 4rem 2rem;
    background: #fff;
}

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

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

.step-number {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Add a service link style to the main styles.css */
.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.service-link:hover {
    text-decoration: underline;
}

.hero-blurb {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.core-services {
    padding: 8rem 2rem;
    background: var(--white);
    position: relative;
}

.core-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--gradient-2);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
    opacity: 0.05;
}

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

.core-services .service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.core-services .service-card:hover {
    transform: translateY(-5px);
}

.core-services .service-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.core-services .service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.core-services .service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.core-services .service-card ul li {
    margin: 1rem 0;
    padding-left: 2rem;
}

.core-services .service-card ul li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-blurb {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .core-services .services-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-approach {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.pricing-message {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-message > p {
    max-width: 800px;
    margin: 1.5rem auto;
    font-size: 1.1rem;
    color: #555;
}

.pricing-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

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

.point:hover {
    transform: translateY(-5px);
}

.point i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.point h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.point p {
    color: #666;
}

.cta-container {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .pricing-points {
        grid-template-columns: 1fr;
    }
    
    .pricing-message > p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

.unique-approach {
    background: var(--gradient-1);
    padding: 8rem 2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.unique-approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.approach-blurb {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.highlight-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.approach-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.approach-point {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.approach-point:hover {
    transform: translateY(-5px);
}

.approach-point i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.approach-point h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .highlight-text {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .approach-points {
        grid-template-columns: 1fr;
    }
} 