@keyframes slideRight {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero {
    background: var(--off-white);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%; height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(26,39,68,0.03) 100%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-light);
    padding: 0.4rem 0.9rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideRight 0.6s ease forwards;
    animation-delay: 0.2s;
}
.hero__badge svg { width: 14px; height: 14px; }

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: slideRight 0.6s ease forwards;
    animation-delay: 0.35s;
}
.hero__title em {
    font-style: normal;
    color: var(--red);
}

.hero__desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
    opacity: 0;
    animation: slideRight 0.6s ease forwards;
    animation-delay: 0.5s;
}

.hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideRight 0.6s ease forwards;
    animation-delay: 0.65s;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideRight 0.6s ease forwards;
    animation-delay: 0.8s;
}
.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--gray-400);
    letter-spacing: 0.03em;
}
.hero__trust-item svg {
    width: 16px; height: 16px;
    color: var(--green);
    flex-shrink: 0;
}

.hero__visual {
    position: relative;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
    animation-delay: 0.4s;
}

.hero__img-main {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.hero__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__float-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero__float-card-icon {
    width: 44px;
    height: 44px;
    background: var(--amber-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}
.hero__float-card-icon svg { width: 22px; height: 22px; }
.hero__float-card-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--navy);
    line-height: 1;
}
.hero__float-card-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__visual { order: -1; }
    .hero__float-card { bottom: -1rem; left: 1rem; }
}
@media (max-width: 768px) {
    .hero__title { font-size: clamp(2.2rem, 8vw, 3rem); }
    .hero__trust { gap: 1rem; }
}
@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
}
