/* HERO SECTION */

.hero-section {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 55% 57%;
    align-items: center;
    gap: 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    z-index: 1;
}

/* LEFT CONTENT */

.hero-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(64px, 6vw, 96px);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -4px;
    margin-bottom: 30px;
    max-width: 900px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 620px;
    margin-bottom: 40px;
}

/* BUTTON WRAPPER */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 32px;
}

/* BOTH BUTTONS */

.hero-actions a {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 170px;
    height: 58px;

    padding: 0 32px;

    border-radius: 999px;

    font-size: 16px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none;

    box-sizing: border-box;

    transition: all 0.3s ease;
}

/* PRIMARY */

.btn-primary {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

/* SECONDARY */

.btn-secondary {
    background: transparent;
    color: #000;
    border: 1px solid #000;

    position: relative;
    top: 1px;
}

/* HOVER */

.hero-actions a:hover {
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 430px;
    object-fit: contain;
}
.hero-image {
    justify-content: flex-end;
    padding-right: 40px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-title {
        font-size: clamp(56px, 12vw, 90px);
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (min-width: 1400px) {

    .hero-grid {
        gap: 80px;
    }

    .hero-title {
        max-width: 780px;
    }

}

/* FORCE SECONDARY BUTTON */

.hero-actions .btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    height: 56px !important;
    padding: 0 32px !important;

    border: 1px solid #000 !important;
    border-radius: 999px !important;

    background: transparent !important;
    color: #000 !important;

    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
}

.hero-actions .btn-secondary:hover {
    background: #000 !important;
    color: #fff !important;
}