.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
    background: var(--gradient-dark);
}
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232, 93, 58, 0.1);
    border: 1px solid rgba(232, 93, 58, 0.25);
    color: var(--accent-light);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 1.6rem;
    animation: fadeInUp 0.8s ease forwards;
}
.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.8s ease 0.12s forwards;
    opacity: 0;
}
.hero h1 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease 0.24s forwards;
    opacity: 0;
    line-height: 1.5;
}
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.8rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}
.hero-trust i {
    color: #3dd9c9;
    font-size: 0.7rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.25;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}
.btn > i {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.125em;
    height: 1.125em;
    font-size: 0.9375em;
    line-height: 1;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 35px var(--accent-glow);
}
.btn-primary:hover {
    background: #f07050;
    box-shadow: 0 0 55px rgba(232, 93, 58, 0.5);
    transform: translateY(-3px);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-3px);
}
.btn-farma {
    background: transparent;
    color: #3aa876;
    border-color: #3aa876;
}
.btn-farma:hover {
    background: rgba(58, 168, 118, 0.1);
    border-color: #4cc98a;
    color: #4cc98a;
    transform: translateY(-3px);
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.55s forwards;
    opacity: 0;
}
.hero-stat {
    text-align: center;
    min-width: 100px;
}
.hero-stat .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-stat .stat-label {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 0.2rem;
    line-height: 1.3;
}
.hero-stat .stat-number.stat-green {
    background: var(--gradient-farma);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
