body .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0 4rem;
    position: relative;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    flex-direction: column;
}

body .hero .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

body .hero .hero-content-left {
    z-index: 2;
}

body .hero .hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-30px);
    animation: dropFromTop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

@keyframes dropFromTop {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

body .hero .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: mainHeroPulse 2s ease-in-out infinite;
}

@keyframes mainHeroPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

body .hero .hero-heading {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

body .hero .hero-pre-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

body .hero .hero-brand {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 5rem;
}

body .hero .rotating-text-wrapper-hero {
    display: block;
    height: 5rem;
    position: relative;
    overflow: hidden;
}

body .hero .rotating-text-hero {
    position: absolute;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    left: 0;
    right: 0;
}

body .hero .rotating-text-hero.active {
    opacity: 1;
    transform: translateY(0);
}

body .hero .hero-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

body .hero .hero-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

body .hero .hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

body .hero .hero-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

body .hero .hero-feature-item:hover i {
    transform: scale(1.2) rotate(10deg);
}

body .hero .hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

body .hero .hero-btn-primary {
    background: var(--gradient-primary);
    border: none;
}

body .hero .hero-btn-secondary {
    background: transparent;
    border: 2px solid var(--border-color);
}

body .hero .hero-stats-row {
    display: flex;
    gap: 3rem;
}

body .hero .hero-stat {
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body .hero .hero-stat.stat-visible {
    opacity: 1;
    transform: translateY(0);
}

body .hero .hero-stat:hover {
    transform: translateY(-5px);
}

body .hero .hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

body .hero .hero-stat.stat-visible .stat-number {
    animation: statBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes statBounce {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

body .hero .hero-stat:hover .stat-number {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

body .hero .hero-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.2s;
}

body .hero .hero-stat.stat-visible .stat-label {
    opacity: 1;
    transform: translateY(0);
}

body .hero .hero-visual-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

body .hero .hero-logo-showcase {
    position: relative;
    width: 650px;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body .hero .logo-background-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent 70%);
    border-radius: 50%;
    animation: mainHeroGlow 3s ease-in-out infinite;
}

@keyframes mainHeroGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

body .hero .hero-logo-main {
    width: 550px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

body .hero .logo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

body .hero .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
}

body .hero .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: mainHeroFloat1 4s ease-in-out infinite;
}

body .hero .particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation: mainHeroFloat2 3s ease-in-out infinite;
}

body .hero .particle:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation: mainHeroFloat3 5s ease-in-out infinite;
}

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

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

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

body .hero .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: mainHeroBounce 2s ease-in-out infinite;
}

@keyframes mainHeroBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

body .hero .scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

body .hero .scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mainHeroScrollWheel 1.5s ease-in-out infinite;
}

@keyframes mainHeroScrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

body .hero .scroll-indicator p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 968px) {
    body .hero .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    body .hero .hero-visual-right {
        order: -1;
    }

    body .hero .hero-logo-showcase {
        width: 450px;
        height: 450px;
    }

    body .hero .hero-logo-main {
        width: 380px;
    }

    body .hero .hero-heading {
        font-size: 3.5rem;
    }

    body .hero .hero-brand {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    body .hero {
        padding: 3rem 0 2rem;
        min-height: auto;
    }

    body .hero .hero-heading {
        font-size: 2.5rem;
    }

    body .hero .hero-brand {
        font-size: 3rem;
    }

    body .hero .rotating-text-wrapper-hero {
        height: 3.5rem;
    }

    body .hero .hero-desc {
        font-size: 1rem;
    }

    body .hero .hero-features-list {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    body .hero .hero-feature-item {
        justify-content: center;
    }

    body .hero .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 4rem;
    }

    body .hero .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Hide Learn More button on mobile */
    body .hero .hero-btn-secondary {
        display: none !important;
    }
    
    /* Add spacing where Learn More button was */
    body .hero .hero-btn-primary {
        margin-bottom: 4rem;
    }

    /* Hide stats on mobile */
    body .hero .hero-stats-row {
        display: none !important;
    }

    /* Smaller logo on mobile, push it down */
    body .hero .hero-logo-showcase {
        width: 240px;
        height: 240px;
        margin-top: 2rem;
    }

    body .hero .hero-logo-main {
        width: 200px;
    }
    
    /* Center everything on mobile */
    body .hero .hero-content-left {
        text-align: center;
        align-items: center;
    }
    
    body .hero .hero-features-list {
        justify-content: center;
    }
    
    body .hero .hero-actions {
        align-items: center;
    }
}

@media (max-width: 480px) {
    body .hero .hero-heading {
        font-size: 2rem;
    }

    body .hero .hero-brand {
        font-size: 2.5rem;
    }

    /* Keep stats hidden on small mobile */
    body .hero .hero-stats-row {
        display: none !important;
    }
    
    /* 2 columns on small mobile too */
    body .hero .hero-features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* Even smaller logo on small mobile, more margin */
    body .hero .hero-logo-showcase {
        width: 200px;
        height: 200px;
        margin-top: 2.5rem;
    }

    body .hero .hero-logo-main {
        width: 170px;
    }
    
    body .hero .hero-actions {
        margin-bottom: 3rem;
    }
}