/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.cta-button.large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section.alt {
    background: #f9fafb;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.card, .feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover, .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

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

.card h3, .feature-card h3 {
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-size: 1.25rem;
}

.card p, .feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

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

.step h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.step p {
    color: #6b7280;
}

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

.pricing-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card.featured {
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.badge {
    background: #2563eb;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 400;
}

.price-sub {
    color: #6b7280;
    margin-bottom: 2rem;
}

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

.pricing-card ul li {
    padding: 0.75rem 0;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: #6b7280;
    font-size: 1rem;
}

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

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-text {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #1f2937;
    font-size: 1rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Contact Form */
.subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: #1f2937;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Built for Service Pros - 2 columns on mobile */
    #who-for .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    #who-for .card {
        padding: 1.25rem 1rem;
    }
    
    #who-for .icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    #who-for .card h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    #who-for .card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* What's Included - 2 columns on mobile */
    #services .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    #services .feature-card {
        padding: 1.25rem 1rem;
    }
    
    #services .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    #services .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    #services .feature-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Testimonials - single column on mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Built for Service Pros */
    #who-for .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    #who-for .card {
        padding: 1rem 0.75rem;
    }
    
    #who-for .icon {
        font-size: 1.75rem;
    }
    
    #who-for .card h3 {
        font-size: 0.9rem;
    }
    
    #who-for .card p {
        font-size: 0.75rem;
    }
    
    /* What's Included */
    #services .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    #services .feature-card {
        padding: 1rem 0.75rem;
    }
    
    #services .feature-icon {
        font-size: 1.75rem;
    }
    
    #services .feature-card h3 {
        font-size: 0.9rem;
    }
    
    #services .feature-card p {
        font-size: 0.75rem;
    }
}
