/* Homepage Specific Styles */

/* Hero Section Enhancements - Modern Interactive Design with Sci-Fi Grid */
.hero.home-page {
    background: linear-gradient(135deg, #020617 0%, #0a0f1e 30%, #0f172a 60%, #020617 100%);
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Animated Grid Lines - Sci-Fi Style */
.hero.home-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 150, 213, 0.4) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 150, 213, 0.4) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: grid-move 15s linear infinite;
    z-index: 1;
    opacity: 0.5;
}

@keyframes grid-move {
    0% {
        transform: perspective(600px) rotateX(65deg) translateY(0);
    }
    100% {
        transform: perspective(600px) rotateX(65deg) translateY(60px);
    }
}

/* Neon Glow Effects - Subtiel */
.hero.home-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 150, 213, 0.25) 0%, transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(0, 150, 213, 0.2) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(0, 150, 213, 0.15) 0%, transparent 50%);
    animation: neon-pulse 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes neon-pulse {
    0%, 100% {
        opacity: 0.4;
        filter: blur(60px);
    }
    50% {
        opacity: 0.6;
        filter: blur(80px);
    }
}

/* ZOZO Logo Hologram Effect - Achtergrond (via ::before verwijderd) */

/* Klein Logo - Dynamische beweging */
.logo-hologram-small {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 250px;
    height: 250px;
    background-image: url('/zozo-assets/images/zozo-blauw.webp?v=2');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    animation: logo-float-small 8s ease-in-out infinite;
    z-index: 2;
}

/* Bewegende Tagline */
.hero-tagline {
    position: absolute;
    top: 65%;
    right: 10%;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 600;
    color: rgba(59, 130, 246, 0.9);
    text-shadow: 
        0 0 10px rgba(59, 130, 246, 1),
        0 0 20px rgba(59, 130, 246, 0.8),
        0 0 30px rgba(59, 130, 246, 0.6),
        0 0 40px rgba(168, 85, 247, 0.4);
    letter-spacing: 2px;
    animation: tagline-float 10s ease-in-out infinite;
    z-index: 2;
    white-space: nowrap;
}

@keyframes tagline-float {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    15% {
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -30px);
        opacity: 1;
        text-shadow: 
            0 0 15px rgba(59, 130, 246, 1),
            0 0 30px rgba(59, 130, 246, 1),
            0 0 45px rgba(59, 130, 246, 0.8),
            0 0 60px rgba(168, 85, 247, 0.6);
    }
    85% {
        opacity: 0.8;
    }
    100% {
        transform: translate(15px, 20px);
        opacity: 0;
    }
}

@keyframes logo-float-small {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 0.15;
    }
    50% {
        transform: translate(-30px, -40px) rotate(15deg) scale(1.2);
        opacity: 0.18;
    }
    80% {
        opacity: 0.15;
    }
    100% {
        transform: translate(20px, 30px) rotate(-10deg) scale(0.8);
        opacity: 0;
    }
}

/* Expanding Wave Effect - Ook rechts */
.floating-elements::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 250px;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(59, 130, 246, 0.6);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: wave-expand 5s ease-out infinite;
    z-index: 1;
    box-shadow: 
        0 0 20px rgba(59, 130, 246, 0.6),
        inset 0 0 20px rgba(59, 130, 246, 0.3);
}

@keyframes wave-expand {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.8;
        border-width: 3px;
    }
    50% {
        width: 400px;
        height: 400px;
        opacity: 0.4;
        border-width: 2px;
    }
    100% {
        width: 800px;
        height: 800px;
        opacity: 0;
        border-width: 1px;
    }
}

/* Floating Elements - Neon Orbs */
.hero.home-page .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
}

.floating-element {
    position: absolute;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, rgba(59, 130, 246, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(12px);
    animation: float-random 15s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(59, 130, 246, 0.5),
        0 0 60px rgba(59, 130, 246, 0.3);
}

.floating-element:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.7) 0%, rgba(59, 130, 246, 0.3) 40%, transparent 70%);
}

.floating-element:nth-child(2) {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    animation-duration: 22s;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, rgba(168, 85, 247, 0.2) 40%, transparent 70%);
    box-shadow: 
        0 0 30px rgba(168, 85, 247, 0.5),
        0 0 60px rgba(168, 85, 247, 0.3);
}

.floating-element:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 75%;
    left: 25%;
    animation-delay: 10s;
    animation-duration: 16s;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.7) 0%, rgba(14, 165, 233, 0.3) 40%, transparent 70%);
    box-shadow: 
        0 0 30px rgba(14, 165, 233, 0.5),
        0 0 60px rgba(14, 165, 233, 0.3);
}

.floating-element:nth-child(4) {
    width: 140px;
    height: 140px;
    top: 35%;
    right: 30%;
    animation-delay: 13s;
    animation-duration: 20s;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.65) 0%, rgba(168, 85, 247, 0.3) 40%, transparent 70%);
    box-shadow: 
        0 0 40px rgba(99, 102, 241, 0.5),
        0 0 80px rgba(99, 102, 241, 0.3);
}

/* Code-like floating elements - Neon Style */
.code-element {
    position: absolute;
    color: rgba(59, 130, 246, 0.6);
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 600;
    animation: code-float 18s ease-in-out infinite;
    z-index: 2;
    text-shadow: 
        0 0 10px rgba(59, 130, 246, 0.8),
        0 0 20px rgba(59, 130, 246, 0.5);
}

.code-element:nth-child(1) {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.code-element:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: 7s;
}

.code-element:nth-child(3) {
    top: 50%;
    left: 15%;
    animation-delay: 14s;
}

/* Animations */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float-random {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.9;
    }
    25% { 
        transform: translateY(-40px) translateX(30px) scale(1.1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-80px) translateX(-20px) scale(0.9);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-30px) translateX(-40px) scale(1.05);
        opacity: 1;
    }
}

@keyframes code-float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.5;
    }
    33% { 
        transform: translateY(-50px) translateX(20px);
        opacity: 1;
    }
    66% {
        transform: translateY(-25px) translateX(-15px);
        opacity: 0.7;
    }
}

/* Wave Separator */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.hero-content {
    position: relative;
    z-index: 500;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(0, 150, 213, 0.5),
        0 0 40px rgba(0, 150, 213, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    position: relative;
}

.hero-title .highlight-red {
    color: #0096d5;
}

.hero-title .highlight-yellow {
    color: #33aade;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 500;
}

.hero-cta {
    background: linear-gradient(135deg, #0096d5, #33aade);
    color: white;
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 
        0 8px 25px rgba(0, 150, 213, 0.5),
        0 0 40px rgba(0, 150, 213, 0.3);
    border: 1px solid rgba(0, 150, 213, 0.5);
    position: relative;
    z-index: 500;
}

.hero-cta:hover {
    background: linear-gradient(135deg, #007ab3, #0096d5);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(0, 150, 213, 0.6),
        0 0 60px rgba(0, 150, 213, 0.5);
}

.button-secondary {
    background: rgba(30, 41, 59, 0.8);
    color: #0096d5;
    border: 2px solid rgba(0, 150, 213, 0.5);
    backdrop-filter: blur(10px);
    font-weight: 600;
    box-shadow: 
        0 0 20px rgba(59, 130, 246, 0.2),
        inset 0 0 20px rgba(0, 150, 213, 0.1);
    position: relative;
    z-index: 500;
}

.button-secondary:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: #3b82f6;
    color: #60a5fa;
    box-shadow: 
        0 4px 15px rgba(59, 130, 246, 0.4),
        0 0 40px rgba(59, 130, 246, 0.3),
        inset 0 0 30px rgba(59, 130, 246, 0.2);
}

/* Hero Stats - Removed from design */
/*
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}
*/

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    margin-top: var(--spacing-md);
}

/* Service Cards Enhanced */
.service-card {
    position: relative;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-12px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: white;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    transform: scale(1.1);
}

.service-features {
    margin: var(--spacing-lg) 0;
}

.service-features li {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Featured Solutions Section */
.featured-solutions {
    background: var(--bg-secondary);
}

.solution-card {
    overflow: hidden;
    transition: var(--transition-normal);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.solution-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: calc(-1 * var(--spacing-xl)) calc(-1 * var(--spacing-xl)) var(--spacing-lg) calc(-1 * var(--spacing-xl));
}

.solution-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-content h3 {
    margin-bottom: var(--spacing-md);
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
}

.feature-badge {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
}

.solution-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.solution-link:hover {
    color: var(--primary-dark);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.about-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.about-feature {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.about-actions {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-xl);
    color: white;
}

.overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.overlay-content p {
    opacity: 0.9;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-2xl);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: var(--spacing-xl);
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: var(--spacing-lg);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.author-info h4 {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 150, 213, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.newsletter-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.newsletter-form {
    flex: 1;
    max-width: 450px;
}

/* Newsletter Form Override for Homepage */
.newsletter-section .newsletter-form .input-group {
    background: white;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 0;
}

.newsletter-section .newsletter-form .newsletter-input {
    border: none;
    background: transparent;
    padding: 14px 20px;
    font-size: 15px;
    color: #1f2937;
}

.newsletter-section .newsletter-form .newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-section .newsletter-form .newsletter-input:focus {
    box-shadow: none;
    border-color: transparent;
}

.newsletter-section .newsletter-form .newsletter-btn {
    border-radius: 50px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.newsletter-section .newsletter-form .newsletter-btn:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a4190 100%);
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
    }
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.02"><polygon points="0,0 1000,100 1000,0"/></svg>');
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.cta-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

/* Responsive Design for Homepage */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .about-image {
        order: -1;
    }
    
    /* .hero-stats {
        gap: var(--spacing-lg);
    } */
}

@media (max-width: 768px) {
    .hero.home-page {
        padding: 120px 0 80px;
    }
    
    /* Hide elements that cause horizontal overflow on mobile */
    .logo-hologram-small,
    .hero-tagline,
    .floating-elements::after {
        display: none;
    }
    
    /* Adjust floating elements for mobile */
    .floating-element:nth-child(2),
    .floating-element:nth-child(4) {
        display: none;
    }
    
    .floating-element:nth-child(1) {
        left: 5%;
        width: 80px;
        height: 80px;
    }
    
    .floating-element:nth-child(3) {
        left: 20%;
        width: 70px;
        height: 70px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .hero-buttons .button {
        padding: var(--spacing-lg) var(--spacing-2xl);
        margin: 5px;
    }
    
    /* Hero stats removed
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: center;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: var(--spacing-md);
    }
    */
    
    .about-features {
        gap: var(--spacing-md);
    }
    
    .about-feature {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .about-actions {
        justify-content: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 var(--spacing-md);
    }
    
    .section-header {
        margin-bottom: var(--spacing-2xl);
    }
    
    .solution-image {
        margin: calc(-1 * var(--spacing-lg)) calc(-1 * var(--spacing-lg)) var(--spacing-md) calc(-1 * var(--spacing-lg));
    }
    
    .testimonial-card {
        padding: var(--spacing-lg);
    }
}

/* Animation Delays for Staggered Effects */
.grid .card:nth-child(1) { animation-delay: 0s; }
.grid .card:nth-child(2) { animation-delay: 0.1s; }
.grid .card:nth-child(3) { animation-delay: 0.2s; }
.grid .card:nth-child(4) { animation-delay: 0.3s; }
.grid .card:nth-child(5) { animation-delay: 0.4s; }
.grid .card:nth-child(6) { animation-delay: 0.5s; }


}