.hero {
    min-height: 100vh;
    padding: 150px 0 80px;
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 72px;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
    padding: 10px 16px;
    border-radius: 999px;

    color: var(--color-gold-light);
    background: rgba(217, 168, 95, 0.12);
    border: 1px solid rgba(217, 168, 95, 0.26);

    font-size: 14px;
    font-weight: 700;
}

.hero h1 {
    max-width: 680px;
    margin-bottom: 28px;

    font-size: clamp(38px, 4.1vw, 58px);
    line-height: 1.06;
    letter-spacing: -1.8px;
}

.hero p {
    max-width: 610px;
    margin-bottom: 36px;

    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 690px;
    margin-top: 42px;
}

.hero-feature {
    padding: 18px;
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.1);

    transition: var(--transition);
}

.hero-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 168, 95, 0.28);
    background: rgba(255, 255, 255, 0.09);
}

.hero-feature strong {
    display: block;
    margin-bottom: 6px;

    color: var(--color-gold-light);
    font-size: 20px;
    line-height: 1.15;
}

.hero-feature span {
    display: block;

    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.45;
}

.hero__visual {
    position: relative;
}

.hero__visual::before {
    content: "";
    position: absolute;
    inset: -40px -30px auto auto;

    width: 280px;
    height: 280px;
    border-radius: 999px;

    background: rgba(217, 168, 95, 0.2);
    filter: blur(70px);
}

.hero__card {
    position: relative;
    z-index: 2;

    padding: 22px;
    border-radius: 36px;

    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(22px);
}

.hero__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 20px;
}

.hero__card-top span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
    font-weight: 600;
}

.hero__card-top strong {
    color: var(--color-gold-light);
    font-size: 15px;
}

.hero__image-placeholder {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border-radius: 28px;

    background:
        linear-gradient(135deg, rgba(217, 168, 95, 0.24), rgba(255, 255, 255, 0.05)),
        linear-gradient(160deg, #2a3442, #121820);

    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__image-real img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-real::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(to top, rgba(14, 18, 23, 0.82), transparent 62%),
        linear-gradient(135deg, rgba(217, 168, 95, 0.18), rgba(255, 255, 255, 0.02));
}

.hero__image-real span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;

    display: inline-flex;
    padding: 10px 15px;
    border-radius: 999px;

    color: var(--color-gold-light);
    background: rgba(14, 18, 23, 0.76);
    border: 1px solid rgba(217, 168, 95, 0.24);

    font-size: 14px;
    font-weight: 900;
}

.hero__card-bottom {
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__card-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.5;
}