/* Non-Critical Styles - Loaded After Initial Paint */

/* Enhanced Typography */
h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

/* Service Cards Enhancement */
.service-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
.pricing-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s;
}

.pricing-card:hover {
    border-color: #fbbf24;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #171717;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #171717;
    margin: 1rem 0;
}

.pricing-card ul {
    text-align: left;
    margin: 1.5rem 0;
    list-style: none;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #404040;
}

.pricing-card li::before {
    content: "✓ ";
    color: #10b981;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background: #171717;
    color: #a3a3a3;
    padding: 3rem 1rem 2rem;
}

footer a {
    color: #d4d4d4;
    transition: color 0.2s;
}

footer a:hover {
    color: #fbbf24;
}

/* Utility Classes */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 1rem;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {
    header, footer, .mobile-btn {
        display: none;
    }
}
