.hero {
    position: relative;
    padding: 120px 0 70px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Content Layout */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Text */
.hero-text {
    animation: fadeInLeft 0.8s ease;
}

.hero-badge {
    margin-bottom: 16px;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: rgba(121, 105, 210, 0.08);
    border: 2px solid rgba(121, 105, 210, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.badge-text:hover {
    background: rgba(121, 105, 210, 0.12);
    border-color: rgba(121, 105, 210, 0.3);
}

.badge-text i {
    color: #ffc107;
    font-size: 0.85rem;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.18;
    margin-bottom: 18px;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.8px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    opacity: 0.15;
    border-radius: 2px;
    z-index: -1;
    display: none;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 520px;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
    padding: 16px;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-stats.mobile {
    display: none;
    margin-top: 22px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 13px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    height: auto;
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--gray-light);
}

.trust-text {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 16px;
    text-align: center;
    font-weight: 500;
}

.company-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.logo-item {
    flex: 1;
    min-width: 70px;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: all 0.35s ease;
    display: flex;
    justify-content: center;
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}

.logo-item img {
    height: 26px;
    width: auto;
    object-fit: contain;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.08;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 160px;
    height: 160px;
    top: -30px;
    right: -30px;
    animation-delay: 0s;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.shape-2 {
    width: 120px;
    height: 120px;
    bottom: 30px;
    left: -30px;
    animation-delay: 2s;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: -10px;
    right: 70px;
    animation-delay: 4s;
    background: linear-gradient(135deg, var(--accent) 0%, var(--info) 100%);
}

.shape-4 {
    width: 60px;
    height: 60px;
    top: 70px;
    left: 30px;
    animation-delay: 1s;
    background: linear-gradient(135deg, var(--info) 0%, var(--info-light) 100%);
}

.shape-5 {
    width: 100px;
    height: 100px;
    top: 100px;
    right: 100px;
    animation-delay: 3s;
    background: linear-gradient(135deg, var(--info-light) 0%, var(--primary) 100%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    transform: perspective(1000px) rotateY(-2deg);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.15);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-main-image {
    transform: scale(1.02);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 11px 14px;
    border-radius: var(--radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: floatCard 3.5s ease-in-out infinite;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0px;
    min-width: 85px;
}

.card-title {
    font-size: 0.65rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.card-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
}

.card-1 {
    top: 0px;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25px;
    right: -20px;
    animation-delay: 1.2s;
}

.card-3 {
    top: 60px;
    right: -25px;
    animation-delay: 2.4s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
    animation: bounce 2.5s infinite;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 2px;
    height: 7px;
    background: var(--primary);
    border-radius: 1px;
    animation: scroll 2s infinite;
}

.arrow {
    color: var(--gray);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.scroll-indicator:hover .arrow {
    color: var(--primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
        opacity: 1;
    }
    40% {
        transform: translateY(-6px) translateX(-50%);
    }
    60% {
        transform: translateY(-3px) translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(14px);
    }
}

/* Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(121, 105, 210, 0.04) 0%, rgba(104, 118, 217, 0.04) 100%);
    border-radius: 50%;
}

.bg-1 {
    width: 320px;
    height: 320px;
    top: -130px;
    right: -70px;
}

.bg-2 {
    width: 230px;
    height: 230px;
    bottom: -80px;
    left: -70px;
}

.bg-3 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 6%;
}

/* Video Modal */
.video-modal .modal-content {
    max-width: 800px;
    background: transparent;
    box-shadow: none;
}

.video-modal .close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal .close-modal:hover {
    transform: scale(1.15);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--dark);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 35px;
}

.video-placeholder i {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder i:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 18px rgba(121, 105, 210, 0.4));
}

.video-placeholder h3 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 1.5rem;
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(35px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 90px 0 50px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 45px;
    }
    
    .hero-title {
        font-size: 2.3rem;
        margin-bottom: 14px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 10px;
    }
    
    .hero-stats.desktop {
        display: none;
    }
    
    .hero-stats.mobile {
        display: grid;
    }
    
    .company-logos {
        justify-content: center;
    }
    
    .logo-item {
        min-width: 50px;
    }
    
    .hero-image-wrapper {
        transform: perspective(1000px) rotateY(0);
    }
    
    .animated-shapes {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 0 40px;
    }
    
    .hero-title {
        font-size: 1.95rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 20px;
    }
    
    .badge-text {
        font-size: 0.75rem;
        padding: 7px 14px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 260px;
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-stats.mobile {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 14px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .trust-indicators {
        margin-top: 24px;
        padding-top: 18px;
    }
    
    .trust-text {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .logo-item {
        min-width: 45px;
    }
    
    .logo-item img {
        height: 22px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0 30px;
    }
    
    .hero-title {
        font-size: 1.65rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .badge-text {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .hero-stats.mobile {
        grid-template-columns: 1fr 1fr;
        padding: 10px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .btn-lg {
        max-width: 100%;
        padding: 11px 22px;
        font-size: 0.85rem;
    }
    
    .company-logos {
        gap: 10px;
    }
}