.hero-section {
    position: relative;
    min-height: 720px;
    padding: 72px 0 64px;
    overflow: hidden;
    background: var(--soft);
}

.hero-section::before {
    position: absolute;
    top: -240px;
    right: -185px;
    width: 690px;
    height: 690px;
    border-radius: 50%;
    background: var(--lime);
    content: "";
}

.hero-section::after {
    position: absolute;
    right: 6%;
    bottom: -55px;
    width: 240px;
    height: 240px;
    border: 20px solid var(--black);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
    align-items: center;
    gap: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 9px 13px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-badge span {
    width: 9px;
    height: 9px;
    background: #729c00;
    border-radius: 50%;
}

.hero-title {
    max-width: 750px;
    margin: 0;
    color: var(--black);
    font-family: "Unbounded", sans-serif;
    font-size: clamp(42px, 5.8vw, 78px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.07em;
}

.hero-title mark {
    padding: 0 4px;
    color: inherit;
    background: var(--lime);
}

.hero-text {
    max-width: 610px;
    margin: 26px 0 0;
    color: #474747;
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin-top: 40px;
    color: #555555;
    font-size: 13px;
    font-weight: 700;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-points span::before {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    color: var(--black);
    background: var(--lime);
    border-radius: 50%;
    content: "✓";
    font-size: 12px;
}

.hero-visual {
    position: relative;
    min-height: 530px;
}

.browser-card {
    position: absolute;
    top: 45px;
    right: 0;
    width: min(100%, 510px);
    overflow: hidden;
    background: var(--white);
    border: 1px solid #deded8;
    border-radius: 22px;
    box-shadow: 24px 26px 0 var(--black), 0 24px 45px rgba(0, 0, 0, 0.1);
    transform: rotate(3deg);
}

.browser-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 43px;
    padding: 0 16px;
    background: #ecece7;
    border-bottom: 1px solid #deded8;
}

.browser-dots i {
    width: 9px;
    height: 9px;
    background: var(--black);
    border-radius: 50%;
}

.browser-content {
    padding: 24px;
}

.browser-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 800;
}

.browser-brand {
    padding: 7px 10px;
    background: var(--lime);
    border-radius: 7px;
}

.browser-lines {
    display: grid;
    gap: 12px;
    margin-top: 48px;
}

.browser-lines b {
    display: block;
    height: 13px;
    background: var(--black);
    border-radius: 4px;
}

.browser-lines b:nth-child(1) {
    width: 76%;
}

.browser-lines b:nth-child(2) {
    width: 61%;
}

.browser-lines b:nth-child(3) {
    width: 83%;
    background: var(--lime);
}

.browser-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 34px;
}

.browser-blocks span {
    height: 122px;
    background: #efefeb;
    border-radius: 12px;
}

.browser-blocks span:nth-child(2) {
    background: var(--lime);
}

.hero-floating-card {
    position: absolute;
    z-index: 3;
    bottom: 10px;
    left: -25px;
    width: 206px;
    padding: 17px;
    color: var(--white);
    background: var(--black);
    border-radius: 17px;
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.2);
    transform: rotate(-6deg);
}

.hero-floating-card small {
    display: block;
    color: var(--lime);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-floating-card strong {
    display: block;
    margin-top: 8px;
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    line-height: 1.25;
}