/* ===========================
   PREMIUM HERO - ROG + APPLE + LAMBORGHINI INSPIRED
=========================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: #0b0b0b;
}

/* Premium Animated Background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 106, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(161, 0, 255, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(0, 184, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at center, rgba(255, 106, 0, 0.05) 0%, transparent 70%);
    animation: heroBgPulse 8s ease-in-out infinite;
}

@keyframes heroBgPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Glowing Orbs */
.hero .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero .orb-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: rgba(255, 106, 0, 0.15);
    animation-delay: 0s;
}

.hero .orb-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: rgba(161, 0, 255, 0.12);
    animation-delay: -4s;
}

.hero .orb-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 184, 255, 0.08);
    animation-delay: -8s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
    width: min(1320px, 92%);
    margin: 0 auto;
    padding: 40px 0;
}

/* ===========================
   HERO CONTENT
=========================== */

.hero-content {
    animation: heroSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes heroSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 106, 0, 0.2);
    transform: translateY(-2px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00FF88;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-badge span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.hero-badge .highlight {
    color: #00FF88;
    font-weight: 600;
}

.hero-subtitle {
    display: inline-block;
    margin-bottom: 16px;
    color: #FF6A00;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-left: 30px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #FF6A00, transparent);
}

.hero h1 {
    display: flex;
    flex-direction: column;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 25px;
    font-family: 'Oxanium', sans-serif;
    font-weight: 800;
}

.hero h1 .line1 {
    color: #fff;
    display: block;
}

.hero h1 .line2 {
    background: linear-gradient(135deg, #00B8FF, #FF6A00, #A100FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    display: block;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Hero Description with Glass Effect */
.hero-description {
    position: relative;
    max-width: 560px;
    margin-bottom: 40px;
}

.hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 0;
}

.hero p strong {
    color: #fff;
    font-weight: 600;
}

/* Premium Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stats .stat {
    text-align: left;
}

.hero-stats .stat-number {
    font-family: 'Oxanium', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6A00, #A100FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
}

.hero-stats .stat-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 5px;
}

/* ===========================
   HERO BUTTONS
=========================== */

.hero-buttons{

    display:flex;

    justify-content:flex-start;

    margin-top:40px;

}

/* Primary CTA */
.hero-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF6A00, #A100FF);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.hero-primary-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #A100FF, #00B8FF);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 106, 0, 0.3);
    color: #fff;
}

.hero-primary-btn:hover::before {
    opacity: 1;
}

.hero-primary-btn > * {
    position: relative;
    z-index: 1;
}

.hero-primary-btn .arrow {
    transition: transform 0.3s ease;
}

.hero-primary-btn:hover .arrow {
    transform: translateX(5px);
}

/* Secondary Outline Button */
.hero-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-outline-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 106, 0, 0.08);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-outline-btn:hover {
    border-color: #FF6A00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.1);
}

.hero-outline-btn:hover::before {
    opacity: 1;
}

.hero-outline-btn > * {
    position: relative;
    z-index: 1;
}

/* ===========================
   HERO IMAGE
=========================== */

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heroSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

/* Glow behind image */
.hero-image::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(255, 106, 0, 0.15), transparent 70%);
    border-radius: 50%;
    animation: heroGlowPulse 4s ease-in-out infinite;
}

@keyframes heroGlowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    animation: heroFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 60px rgba(255, 106, 0, 0.2));
    position: relative;
    z-index: 1;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Floating particles around image */
.hero-image .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF6A00;
    animation: particleFloat 8s ease-in-out infinite;
    z-index: 0;
}

.hero-image .particle:nth-child(2) {
    width: 8px;
    height: 8px;
    background: #A100FF;
    top: 10%;
    right: 5%;
    animation-delay: -2s;
}

.hero-image .particle:nth-child(3) {
    width: 4px;
    height: 4px;
    background: #00B8FF;
    bottom: 15%;
    left: 5%;
    animation-delay: -4s;
}

.hero-image .particle:nth-child(4) {
    width: 10px;
    height: 10px;
    background: #FF6A00;
    top: 5%;
    left: 15%;
    animation-delay: -6s;
    opacity: 0.3;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(20px, -30px) scale(1.5);
        opacity: 1;
    }
    50% {
        transform: translate(-10px, 20px) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translate(15px, 15px) scale(1.2);
        opacity: 0.8;
    }
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {
    .hero-container {
        gap: 50px;
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .hero-logo {
        max-width: 450px;
    }
    
    .hero-stats {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero p {
        margin-inline: auto;
        max-width: 500px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 7vw, 4.5rem);
        text-align: center;
    }

    .hero h1 .line1,
    .hero h1 .line2 {
        text-align: center;
    }

    .hero-image::before {
        width: 100%;
        height: 100%;
    }

    .hero-logo {
        max-width: 320px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-stats .stat {
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        padding-left: 0;
    }

    .hero-subtitle::before {
        display: none;
    }

    .hero-badge {
        margin: 0 auto 30px;
    }

    .hero .orb-1 {
        width: 250px;
        height: 250px;
        top: -50px;
        right: -50px;
    }

    .hero .orb-2 {
        width: 200px;
        height: 200px;
        bottom: -30px;
        left: -30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .hero-container {
        gap: 30px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-logo {
        max-width: 250px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-stats .stat {
        text-align: center;
    }

    .hero-stats .stat-number {
        font-size: 1.5rem;
    }

    .hero .orb-1 {
        width: 150px;
        height: 150px;
    }

    .hero .orb-2 {
        width: 120px;
        height: 120px;
    }

    .hero .orb-3 {
        width: 100px;
        height: 100px;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-image .particle {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-logo {
        max-width: 200px;
    }

    .hero-primary-btn,
    .hero-outline-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .hero-badge {
        padding: 6px 16px 6px 10px;
        font-size: 0.7rem;
    }

    .hero-badge .dot {
        width: 6px;
        height: 6px;
    }

    .hero-stats .stat-number {
        font-size: 1.3rem;
    }
}

/* ===========================
   DARK MODE ENHANCEMENTS
=========================== */

@media (prefers-color-scheme: dark) {
    .hero {
        background: #0b0b0b;
    }
}