/* ============================================
   IMPROVED AGENCY - PREMIUM BRANDING
   Strategic branding injection
   ============================================ */

:root {
    --ia-primary: #1A5288;
    --ia-secondary: #378E56;
}

.improved-agency-wrapper {
    position: relative;
}

.designer-credit {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.designer-credit a {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.designer-credit a:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(26, 82, 136, 0.2);
}

/* Scroll reveal refinement */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}