.hero {
    position: relative;
    min-height: 780px;
    padding: calc(var(--header-height) + 80px) 0 90px;
    isolation: isolate;
}

.hero__background {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 255, 255, 0.86) 38%,
            rgba(255, 255, 255, 0.18) 72%,
            rgba(255, 255, 255, 0.08) 100%
        ),
        url("/assets/img/landing/backgrounds/bg-hero.webp")
        center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -10%;
    bottom: -30%;
    width: 760px;
    height: 760px;
    background: radial-gradient(
        circle,
        rgba(22, 199, 132, 0.22),
        transparent 68%
    );
    filter: blur(30px);
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
    align-items: center;
    gap: 70px;
}

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

.hero h1 {
    max-width: 680px;
    margin: 24px 0 22px;
    color: var(--color-dark);
    font-size: clamp(48px, 5.6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero__lead {
    max-width: 610px;
    margin: 0;
    color: var(--color-muted);
    font-size: 19px;
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 34px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--color-dark-soft);
    font-size: 14px;
    font-weight: 700;
}

.hero__trust-item img {
    width: 19px;
    height: 19px;
}

.hero__visual {
    position: relative;
    min-height: 570px;
}

.hero-dashboard {
    position: absolute;
    top: 42px;
    right: 0;
    width: 92%;
    padding: 11px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
}

.hero-dashboard__screen {
    width: 100%;
    border-radius: 14px;
}

.hero-phone {
    position: absolute;
    z-index: 3;
    right: 58px;
    bottom: 0;
    width: 190px;
    filter: drop-shadow(0 30px 34px rgba(7, 23, 46, 0.28));
}

.hero-phone__frame {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-phone__screen {
    position: absolute;
    z-index: 1;
    top: 3.8%;
    left: 6.3%;
    width: 87.4%;
    height: 92.2%;
    object-fit: cover;
    border-radius: 25px;
}

.hero-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 218px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.hero-card img {
    width: 28px;
    height: 28px;
    padding: 6px;
    background: rgba(18, 104, 232, 0.10);
    border-radius: 9px;
}

.hero-card strong,
.hero-card span {
    display: block;
}

.hero-card strong {
    color: var(--color-dark);
    font-size: 14px;
}

.hero-card span {
    margin-top: 2px;
    color: var(--color-muted);
    font-size: 12px;
}

.hero-card--location {
    top: 92px;
    left: -22px;
}

.hero-card--status {
    right: 245px;
    bottom: 40px;
}
