.hero {
    padding: 0;
    height: calc(100vh - 82px);
    max-height: 1000px;
}

.hero-grid {
    height: calc(100% - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
}

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


.hero h1 {
    font-size: 80px;
    line-height: 1;
    max-width: 880px;
    font-weight: 800;
    margin-bottom: 28px;
    text-align: center;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    flex-wrap: wrap;
}

.hero .cta-button {
    padding: 14px 26px;
    background: var(--text-light);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    color: var(--site-bg);
    transition: all ease 0.2s;
    border-radius: 12px;
    display: flex; align-items: center;
    gap: 10px;
}

.hero .cta-button:hover{
    filter: brightness(0.9);
}

.hero .cta-button svg{
    fill: var(--site-bg);
    width: 24px; height: auto;
}

.hero .hero-link {
    padding: 14px 26px;
    font-size: 18px;
    background: var(--header-trans-bg);
    font-weight: 800;
    text-decoration: none;
    display: flex; align-items: center;
    gap: 10px;
    color: var(--text-light);
    transition: all ease 0.2s;
    border-radius: 12px;
}

.hero .hero-link:hover{
    background: var(--text-light);
    color: var(--site-bg);
}

.hero-visual{
    flex-grow: 1;
    pointer-events: none;
    height: fit-content;
    max-height: 500px;
}

.hero-visual img{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 0 30px #0002);
}


.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: baseline;
    gap: 20px;
    height: 100px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 60px;
    transition: all ease 0.2s;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to{opacity: 1;}
}

.feature-card:nth-child(1){animation-delay: 0.2s;}
.feature-card:nth-child(2){animation-delay: 0.4s;}
.feature-card:nth-child(3){animation-delay: 0.6s;}
.feature-card:nth-child(4){animation-delay: 0.8s;}

.feature-card-body {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all ease 0.1s;
}

.feature-icon svg {
    width: 100%;
    fill: var(--primary);
    filter: drop-shadow(0 0 30px var(--secondary));
    height: 100%;
}

.feature-card h2 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
}

.feature-card p {
    color: #fff7;
    line-height: 1.1;
    font-size: 15px;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .hero-visual{display: none;}
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-content{
        text-align: center;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        align-items: center;
    }
    .feature-card {
        flex-direction: row;
        align-items: center;
    }
    .feature-card-body {
        width: calc(100% - 72px);
    }
}
