.homepage-hero {
    max-width: var(--home-max-width);
    margin: var(--space-xl) auto;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    text-align: center;
}

.hero-top-section {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
    text-align: left;
}

.homepage-hero img.home-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-content h1 {
    font-size: var(--font-3xl);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-top: 0;
}

.hero-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 24px;
}
.try-it {
    padding: var(--space-sm) var(--space-xl);
    font-size: var(--font-xl);
    width: fit-content;
    text-decoration: none;
}

.hero-btn {
    cursor: pointer;
}

.homepage-hero .intro-text {
    font-size: 18px;
    color: #475569;
    margin: 0 auto 32px auto;
    max-width: 800px;
}

.homepage-hero ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 32px 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.homepage-hero li {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.homepage-hero li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

.homepage-hero li strong {
    color: #0f172a;
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.homepage-hero .hero-footer {
    margin-top: 36px;
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .hero-top-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
}