/* Hero section styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    position: relative;
    width: 100%;
}

.hero-section .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section .floating-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-section h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    text-align: center;
    background: linear-gradient(135deg, #7A4FFC 0%, #4F74FC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    text-align: center;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.metrics-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 4rem 0;
}

.metric {
    text-align: center;
    flex: 1;
    max-width: 300px;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transform: translateZ(0);
    will-change: transform;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7A4FFC 0%, #4F74FC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    line-height: 1.4;
}

/* Hero CTA button */
.hero-section .primary-cta {
    display: block;
    margin: 2rem auto;
    font-size: 1rem;
    padding: 1rem 2rem;
    max-width: fit-content;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 10rem 0 4rem;
        min-height: 80vh;
    }

    .metrics-row {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
        width: 100%;
        padding: 0;
    }

    .metric {
        width: 100%;
        max-width: none;
        padding: 1.5rem;
        margin: 0;
        border-radius: 0;
    }

    .metric-value {
        font-size: 2.5rem;
    }
}

/* Small screens */
@media (max-width: 480px) {
    .hero-section {
        padding: 12rem 0 4rem;
    }

    .hero-subtitle {
        padding: 0 1rem;
    }

    .metric {
        padding: 1.25rem;
    }
}

/* Landscape mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 5rem 0;
    }

    .metrics-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .metric {
        flex: 1;
        min-width: 200px;
        max-width: 250px;
    }
}

/* Extra large screens */
@media (min-width: 1600px) {
    .hero-section h1 {
        font-size: 5.5rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
        max-width: 1000px;
    }

    .metric-value {
        font-size: 4rem;
    }
}

/* ... other hero related styles ... */ 