/* Modern Hero Section - Dribbble Inspired */
.hero-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 2rem;
}

.hero-content {
    max-width: 600px;
}

.hero-modern h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-modern p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 2.5rem;
    text-align: center;
}

.cta-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: #389f58;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(56, 159, 88, 0.25);
    white-space: nowrap;
}

.cta-primary:hover {
    background: #2f8549;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(56, 159, 88, 0.35);
}

.cta-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: #f59e0b;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.25);
    white-space: nowrap;
}

.cta-orange:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.35);
}

.cta-orange svg {
    transition: transform 0.3s ease;
}

.cta-orange:hover svg {
    transform: translateX(4px);
}

.cta-primary svg {
    transition: transform 0.3s ease;
}

.cta-primary:hover svg {
    transform: translateX(4px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.25rem;
    background: white;
    color: #334155;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-secondary:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Hero Image with Glow Effect */
.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(56, 159, 88, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Modern Feature Cards */
.features-modern {
    max-width: 1400px;
    margin: 1rem auto 4rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card-modern {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
}

.feature-card-modern:hover h3 {
    color: #ff6b35;
}

.feature-card-modern:hover .card-link {
    color: #ff6b35;
}

.card-header {
    margin-bottom: 1.5rem;
}

.feature-card-modern h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

.feature-card-modern p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.card-link svg {
    transition: transform 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-modern {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 5rem 2rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-modern h1 {
        font-size: 3rem;
    }

    .cta-group {
        justify-content: center;
    }

    .image-wrapper img {
        height: 400px;
    }

    .features-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 4rem 1.5rem;
    }

    .hero-modern h1 {
        font-size: 2.5rem;
    }

    .hero-modern p {
        font-size: 1.125rem;
    }

    .image-wrapper img {
        height: 300px;
    }

    .feature-card-modern {
        padding: 2.5rem 2rem;
    }
}