.hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,107,79,.07) 0%, transparent 70%);
    pointer-events: none;
    animation: breathe 8s ease-in-out infinite;
}

.hero-lines {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    animation: fadeIn 1.2s .8s ease forwards;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 36px;
    width: fit-content;
    opacity: 0;
    animation: fadeUp .7s .1s ease forwards;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

.hero h1 {
    max-width: 780px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp .8s .25s ease forwards;
}

.hero-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 52px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp .8s .4s ease forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: fadeUp .8s .55s ease forwards;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid var(--rule);
    opacity: 0;
    animation: fadeUp .8s .7s ease forwards;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero-lines {
        display: none;
    }

    .hero-stats {
        gap: 32px;
        flex-wrap: wrap;
    }
}
