/* ===== NEW HERO REDESIGN STYLES ===== */

/* Hero Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    animation-delay: 0s;
}

.hero-shape-2 {
    top: 60%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    animation-delay: 5s;
}

.hero-shape-3 {
    bottom: 10%;
    left: 30%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    animation-delay: 10s;
}

/* Trust Badge */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.625rem 1.25rem;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: var(--spacing-xl);
    animation: slideDown 0.6s ease-out;
    border: 1px solid var(--primary-100);
}

.trust-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
}

/* New Hero Title Styles */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: var(--spacing-xl);
}

.hero-title-small {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-600);
    font-family: var(--font-primary);
    animation: slideUp 0.7s ease-out;
}

.hero-title-main {
    font-size: 4rem;
    font-weight: 800;
    color: var(--neutral-900);
    font-family: var(--font-display);
    line-height: 1;
    animation: slideUp 0.9s ease-out;
}

.hero-title-highlight {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    line-height: 1;
    animation: slideUp 1.1s ease-out;
}

/* Subtitle Enhancements */
.hero-subtitle strong {
    color: var(--primary-600);
    font-weight: 700;
}

.highlight-name {
    color: var(--primary-600);
    font-weight: 700;
    position: relative;
}

.highlight-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

/* Button Pulse Effect */
.btn-pulse {
    position: relative;
    overflow: hidden;
}

.btn-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-pulse:hover::before {
    width: 300px;
    height: 300px;
}

/* Hero Features Grid */
.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
    animation: slideUp 1.6s ease-out;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.hero-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin: 0;
}

.feature-content p {
    font-size: 0.75rem;
    color: var(--neutral-600);
    margin: 0;
}

/* Hero Visual Side */
.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeIn 1s ease-out;
}

.hero-image-card {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-main {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.hero-image-main::before {
    /* Emoji placeholder removed to show actual image */
    display: none;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-xl);
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-800);
}

/* Floating Stat Cards */
.floating-stat-card {
    position: absolute;
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.stat-card-1 {
    top: 15%;
    left: -15%;
    animation-delay: 0s;
}

.stat-card-2 {
    top: 50%;
    right: -15%;
    animation-delay: 1s;
}

.stat-card-3 {
    bottom: 20%;
    left: -10%;
    animation-delay: 2s;
}

.stat-card-icon {
    font-size: 2.5rem;
}

.stat-card-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-600);
    font-family: var(--font-display);
    line-height: 1;
}

.stat-card-label {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin-top: 0.25rem;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    z-index: 5;
}

.deco-1 {
    top: 5%;
    right: 5%;
}

.deco-2 {
    bottom: 10%;
    right: 15%;
}

.deco-circle {
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-200);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--neutral-400);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--neutral-400);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--neutral-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Additional Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Updates for New Hero */
@media (max-width: 1024px) {

    .hero-title-main,
    .hero-title-highlight {
        font-size: 3rem;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        height: 400px;
    }

    .floating-stat-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title-small {
        font-size: 1.125rem;
    }

    .hero-title-main,
    .hero-title-highlight {
        font-size: 2.25rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-decoration {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {

    .hero-title-main,
    .hero-title-highlight {
        font-size: 1.875rem;
    }

    .hero-trust-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .hero-feature-item {
        padding: var(--spacing-sm);
    }

    .feature-icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}