.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

.hero-visual {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    z-index: 10;
    width: min(92vw, 68rem);
}

.hero-title-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 5.5rem;
    padding: 0.75rem 1.75rem;
}

.hero-overlay h1 {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 5rem);
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #7dd3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(56, 189, 248, 0.4);
    white-space: nowrap;
    line-height: 1.08;
}

.features-section {
    position: relative;
    z-index: 2;
    margin-top: -2.5rem;
    margin-bottom: 2.5rem;
    padding: 4rem 5%;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.trend-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
}

.trend-section h2, .trend-section h3 {
    background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.trend-section p {
    color: var(--text-dark);
    line-height: 1.7;
}

.trend-section .btn-outline {
    border-radius: 12px;
    font-weight: 500;
    padding: 0.8rem 1.8rem;
    background: rgba(255, 255, 255, 0.25);
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.trend-section .btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(0,86,179,0.3);
    transform: translateY(-2px);
}

.trend-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trend-grid > div {
    flex: 1;
    min-width: 300px;
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-overlay {
        top: 19%;
        width: min(94vw, 44rem);
    }

    .hero-title-shell {
        min-height: 4rem;
        padding: 0.5rem 0.75rem;
    }

    .hero-overlay h1 {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .features-section {
        margin-top: -1.5rem;
        padding: 2.5rem 1.25rem;
    }

    .trend-section {
        padding: 2rem 1.25rem;
        border-radius: 20px;
    }
}
