
/* Base Styles */
body {
    line-height: 1.6;
}

/* Hero Section */
.hero-bg {
    background-attachment: fixed;
}

/* Cards */
.feature-card {
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* Case Studies */
.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2ecc71;
}

/* Pros/Cons Grid */
.pro-con-item {
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

/* Buttons */
a[href*="/creation.html"] {
    transition: transform 0.2s ease;
}
a[href*="/creation.html"]:hover {
    transform: translateY(-2px);
}

/* Mobile First Adjustments */
@media (max-width: 767px) {
    .hero-bg {
        background-attachment: scroll;
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .highlight-number {
        font-size: 2rem;
    }
}

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

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