﻿.hero {
    padding: 80px 0 120px;
    background: linear-gradient( 180deg, #F7FBFF, #FFFFFF);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 10px 22px;
    background: #EAF3FF;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 28px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 640px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
}

.hero-trust {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

    .hero-trust div {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
    }

    .hero-trust i {
        color: var(--success);
    }

.hero-image {
    position: relative;
}

    .hero-image img {
        border-radius: 30px;
        box-shadow: var(--shadow-lg);
    }
.floating-card {
    position: absolute;
    background: #fff;
    padding: 22px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 140px;
}

.card-one {
    top: 20px;
    left: -40px;
}

.card-two {
    bottom: 50px;
    right: -30px;
}

.card-three {
    bottom: -30px;
    left: 40px;
}

.floating-card h3 {
    color: var(--primary);
    font-size: 34px;
    margin-bottom: 8px;
}