/* Homepage-specific hero styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-asymmetric {
    position: relative;
    overflow: hidden;
}

.hero-asymmetric::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: skewX(-15deg);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-decorative-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-circle-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 200px;
    height: 200px;
    background: white;
    bottom: -50px;
    left: 15%;
    animation-delay: 2s;
}

.hero-circle-3 {
    width: 150px;
    height: 150px;
    background: white;
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4299e1, transparent);
    margin: 1rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-diagonal-cut {
    position: relative;
    overflow: hidden;
}

.hero-diagonal-cut::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, #f9fafb 50%);
    z-index: 1;
}

.hero-split-left {
    position: relative;
    z-index: 2;
}

.hero-visual-element {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-geometric-shape {
    position: absolute;
    opacity: 0.15;
}

.shape-1 {
    width: 200px;
    height: 200px;
    border: 3px solid white;
    transform: rotate(45deg);
    top: 20%;
    right: 10%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    border: 3px solid white;
    border-radius: 50%;
    bottom: 20%;
    left: 10%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: white;
    transform: rotate(45deg);
    top: 50%;
    right: 20%;
}
