/* ==========================================================================
   HERO SECTION - PREVENTED CLASS CONFLICTS
   ========================================================================== */

/* Hero Section Base */
.hero {
    position: relative;
    padding: clamp(70px, 10vh, 120px) 0 clamp(40px, 6vh, 70px);
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    overflow: hidden;
    min-height: min(100vh, 900px);
    display: flex;
    align-items: center;
}

/* Hero Content Layout */
.hero-content {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
    gap: clamp(30px, 4vw, 50px);
    align-items: center;
    position: relative;
    z-index: 2;
}

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

/* Hero Badge */
.hero-badge {
    margin-bottom: clamp(12px, 1.5vw, 16px);
    margin-top: 10px;
}

.hero-badge-text {
    display: inline-flex;
    align-items: center;
    gap: clamp(5px, 0.7vw, 7px);
    padding: clamp(6px, 1vw, 8px) clamp(12px, 1.5vw, 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: clamp(0.7rem, 0.9vw, 0.8rem);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

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

.hero-badge-text i {
    color: #ffc107;
    font-size: clamp(0.75rem, 0.9vw, 0.85rem);
}

/* Hero Title */
.hero-title {
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    line-height: 1.18;
    margin-bottom: clamp(12px, 1.5vw, 18px);
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: clamp(24px, 3vw, 30px);
    max-width: min(520px, 100%);
}

/* Hero Stats - Enhanced Beauty */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 35px;
    padding: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.98) 100%);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 8px 30px rgba(121, 105, 210, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(121, 105, 210, 0.12);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-stat-item {
    text-align: center;
    padding: 12px 8px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius);
}

.hero-stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 20px rgba(121, 105, 210, 0.1);
}

.hero-stat-item::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(121, 105, 210, 0.2) 50%, 
        transparent 100%);
}

.hero-stat-item:last-child::after {
    display: none;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
    position: relative;
    display: inline-block;
}

.hero-stat-number::after {
    content: '+';
    position: absolute;
    right: -10px;
    top: -2px;
    font-size: 1rem;
    opacity: 0.7;
}

.hero-stat-item:nth-child(2) .hero-stat-number::after {
    content: '%';
}

.hero-stat-item:nth-child(4) .hero-stat-number::after {
    content: '+';
    font-size: 0.9rem;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.hero-stat-item:hover .hero-stat-label {
    color: var(--primary);
}

.hero-stats.mobile {
    display: none;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: clamp(12px, 1.5vw, 14px);
    margin-bottom: clamp(24px, 3vw, 30px);
    flex-wrap: wrap;
}

.hero-btn-lg {
    padding: clamp(11px, 1.5vw, 13px) clamp(24px, 3vw, 32px);
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    font-weight: 600;
    min-height: 44px;
}

/* Trust Indicators */
.hero-trust-indicators {
    margin-top: clamp(24px, 3vw, 30px);
    padding-top: clamp(18px, 2.5vw, 22px);
    border-top: 1px solid var(--gray-light);
}

.hero-trust-text {
    font-size: clamp(0.75rem, 0.9vw, 0.8rem);
    color: var(--gray);
    margin-bottom: clamp(12px, 1.5vw, 16px);
    text-align: center;
    font-weight: 500;
}

.hero-company-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(10px, 1.5vw, 14px);
}

.hero-logo-item {
    flex: 1;
    min-width: clamp(45px, 6vw, 70px);
    opacity: 0.55;
    filter: grayscale(100%);
    transition: all 0.35s ease;
    display: flex;
    justify-content: center;
    padding: 5px;
}

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

.hero-logo-item img {
    height: clamp(20px, 3vw, 26px);
    width: auto;
    object-fit: contain;
}

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

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

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

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

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

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

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

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

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

/* Hero Image Container */
.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;
    aspect-ratio: 4/3;
    object-fit: cover;
}

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

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

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

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

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

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

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

.hero-card-1 {
    top: clamp(10px, 2vw, 20px);
    left: clamp(-15px, -2vw, -20px);
    animation-delay: 0s;
}

.hero-card-2 {
    bottom: clamp(20px, 3vw, 25px);
    right: clamp(-15px, -2vw, -20px);
    animation-delay: 1.2s;
}

.hero-card-3 {
    top: clamp(40px, 6vw, 60px);
    right: clamp(-9px, -2.5vw, -25px);
    animation-delay: 2.4s;
}

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

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

.hero-mouse {
    width: clamp(20px, 3vw, 24px);
    height: clamp(30px, 4vw, 38px);
    border: 2px solid var(--gray);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

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

.hero-arrow {
    color: var(--gray);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    transition: color 0.3s ease;
}

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

@keyframes heroBounce {
    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 heroScroll {
    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;
}

.hero-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%;
}

.hero-bg-1 {
    width: clamp(200px, 30vw, 320px);
    height: clamp(200px, 30vw, 320px);
    top: -130px;
    right: -70px;
}

.hero-bg-2 {
    width: clamp(150px, 22vw, 230px);
    height: clamp(150px, 22vw, 230px);
    bottom: -80px;
    left: -70px;
}

.hero-bg-3 {
    width: clamp(120px, 16vw, 160px);
    height: clamp(120px, 16vw, 160px);
    top: 50%;
    left: 6%;
}

/* ==========================================================================
   VIDEO MODAL
   ========================================================================== */
.hero-video-modal .modal-content {
    max-width: min(800px, 90vw);
    background: transparent;
    box-shadow: none;
}

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

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

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

.hero-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: clamp(25px, 3vw, 35px);
}

.hero-video-placeholder i {
    font-size: clamp(2.5rem, 3.5vw, 3.2rem);
    color: var(--primary);
    margin-bottom: clamp(14px, 2vw, 18px);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.hero-video-placeholder h3 {
    color: white;
    margin: 0 0 clamp(6px, 1vw, 8px) 0;
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.hero-video-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    margin: 0;
    line-height: 1.5;
}

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

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

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet Landscape (1200px and below) */
@media (max-width: 1200px) {
    .hero-content {
        gap: clamp(30px, 4vw, 40px);
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait (992px and below) */
@media (max-width: 992px) {
    .hero {
        padding: clamp(50px, 8vh, 90px) 0 clamp(30px, 5vh, 50px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: clamp(30px, 5vw, 45px);
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 2.8vw, 2.3rem);
        margin-bottom: clamp(10px, 1.5vw, 14px);
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 1.1vw, 1rem);
        margin: 0 auto clamp(20px, 2.5vw, 24px);
        max-width: min(600px, 90%);
    }
    
    .hero-actions {
        justify-content: center;
        gap: clamp(10px, 1.5vw, 12px);
    }
    
    .hero-stats.desktop {
        display: none;
    }
    
    .hero-stats.mobile {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        max-width: 500px;
        margin: clamp(20px, 3vw, 24px) auto;
    }
    
    .hero-stats.mobile .hero-stat-item::after {
        display: none;
    }
    
    .hero-stats.mobile .hero-stat-item:nth-child(2)::after {
        display: block;
        right: -7px;
        height: 30px;
    }
    
    .hero-company-logos {
        justify-content: center;
    }
    
    .hero-logo-item {
        min-width: clamp(40px, 6vw, 60px);
    }
    
    .hero-image-wrapper {
        transform: perspective(1000px) rotateY(0);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-animated-shapes {
        display: none;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    /* Center floating cards on tablet */
    .hero-floating-card {
        min-width: 130px;
    }
    
    .hero-card-1 {
        left: clamp(-10px, -1.5vw, -15px);
    }
    
    .hero-card-2 {
        right: clamp(-10px, -1.5vw, -15px);
    }
    
    .hero-card-3 {
        right: clamp(-15px, -2vw, -20px);
    }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
    .hero {
        padding: clamp(40px, 7vh, 70px) 0 clamp(25px, 4vh, 40px);
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 2.5vw, 1.95rem);
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 1vw, 0.95rem);
        line-height: 1.65;
        margin-bottom: clamp(18px, 2.5vw, 20px);
    }
    
    .hero-badge-text {
        font-size: clamp(0.65rem, 0.9vw, 0.75rem);
        padding: clamp(6px, 1vw, 7px) clamp(10px, 1.5vw, 14px);
        margin-top: clamp(15px, 2vw, 20px);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-btn-lg {
        width: 100%;
        max-width: min(280px, 100%);
        padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 28px);
        font-size: clamp(0.85rem, 1vw, 0.9rem);
    }
    
    .hero-floating-card {
        display: none; /* Hide floating cards on mobile for cleaner look */
    }
    
    .hero-stats.mobile {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(8px, 1.5vw, 10px);
        padding: clamp(12px, 2vw, 14px);
        max-width: 400px;
    }
    
    .hero-stat-number {
        font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    }
    
    .hero-stat-label {
        font-size: clamp(0.6rem, 0.9vw, 0.65rem);
    }
    
    .hero-trust-indicators {
        margin-top: clamp(20px, 2.5vw, 24px);
        padding-top: clamp(15px, 2vw, 18px);
    }
    
    .hero-trust-text {
        font-size: clamp(0.7rem, 0.9vw, 0.75rem);
        margin-bottom: clamp(10px, 1.5vw, 12px);
    }
    
    .hero-logo-item {
        min-width: clamp(35px, 5vw, 45px);
        padding: 3px;
    }
    
    .hero-logo-item img {
        height: clamp(18px, 2.5vw, 22px);
    }
}

/* Mobile Portrait (576px and below) */
@media (max-width: 576px) {
    .hero {
        padding: clamp(30px, 6vh, 50px) 0 clamp(20px, 3vh, 30px);
    }
    
    .hero-content {
        gap: clamp(25px, 4vw, 35px);
    }
    
    .hero-title {
        font-size: clamp(1.3rem, 2.2vw, 1.65rem);
        line-height: 1.35;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 1vw, 0.9rem);
        margin-bottom: clamp(15px, 2vw, 18px);
    }
    
    .hero-badge-text {
        font-size: clamp(0.6rem, 0.8vw, 0.7rem);
        padding: clamp(5px, 0.8vw, 6px) clamp(8px, 1.2vw, 12px);
        margin-top: clamp(10px, 1.5vw, 15px);
    }
    
    .hero-stats.mobile {
        grid-template-columns: repeat(2, 1fr);
        padding: clamp(10px, 1.5vw, 12px);
        max-width: 320px;
    }
    
    .hero-stat-item {
        padding: clamp(6px, 1vw, 8px);
    }
    
    .hero-stat-number {
        font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    }
    
    .hero-stat-label {
        font-size: clamp(0.55rem, 0.8vw, 0.6rem);
        line-height: 1.2;
    }
    
    .hero-btn-lg {
        max-width: 100%;
        padding: clamp(9px, 1.3vw, 11px) clamp(18px, 2.5vw, 22px);
        font-size: clamp(0.8rem, 0.95vw, 0.85rem);
    }
    
    .hero-company-logos {
        gap: clamp(8px, 1.2vw, 10px);
    }
    
    .hero-image-wrapper {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }
}

/* Small Mobile (400px and below) */
@media (max-width: 400px) {
    .hero-title {
        font-size: clamp(1.2rem, 1.8vw, 1.4rem);
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: clamp(0.75rem, 0.9vw, 0.85rem);
        line-height: 1.6;
    }
    
    .hero-stats.mobile {
        grid-template-columns: 1fr;
        max-width: 200px;
        gap: 8px;
    }
    
    .hero-stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 8px 15px;
    }
    
    .hero-stat-number {
        font-size: 1.2rem;
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .hero-stat-label {
        font-size: 0.6rem;
        text-align: right;
        flex-grow: 1;
    }
    
    /* Remove separator on very small screens */
    .hero-stats.mobile .hero-stat-item::after {
        display: none;
    }
    
    .hero-actions .btn {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    
    .hero-company-logos {
        justify-content: space-around;
    }
    
    .hero-logo-item {
        min-width: 30px;
    }
    
    .hero-logo-item img {
        height: 16px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .hero-badge-text:hover {
        transform: none;
        background: rgba(121, 105, 210, 0.08);
    }
    
    .hero-floating-card:hover {
        transform: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .hero-image-wrapper:hover {
        transform: perspective(1000px) rotateY(-2deg);
    }
    
    .hero-image-wrapper:hover .hero-main-image {
        transform: none;
    }
    
    .hero-logo-item:hover {
        transform: none;
        opacity: 0.55;
        filter: grayscale(100%);
    }
    
    .hero-stat-item:hover {
        transform: none;
        background: transparent;
        box-shadow: none;
    }
    
    .btn,
    .hero-badge-text,
    .hero-floating-card,
    .hero-logo-item {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image-wrapper {
        border-width: 0.5px;
    }
    
    .hero-floating-card {
        border-width: 0.5px;
    }
}

/* Print Styles */
@media print {
    .hero {
        background: white !important;
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-visual,
    .hero-animated-shapes,
    .hero-floating-card,
    .hero-scroll-indicator,
    .hero-background {
        display: none;
    }
    
    .hero-title {
        color: black !important;
        -webkit-text-fill-color: black !important;
        font-size: 2rem;
    }
    
    .hero-gradient-text {
        -webkit-text-fill-color: black !important;
        background: none !important;
    }
    
    .hero-stats.desktop {
        display: grid;
    }
    
    .hero-stats.mobile {
        display: none;
    }
    
    .hero-stat-number {
        -webkit-text-fill-color: black !important;
        background: none !important;
        color: black !important;
    }
    
    .hero-company-logos {
        display: none;
    }
}