/* HERO */
.hero-section {
    padding: 84px 0 96px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
}

.eyebrow,
.section-label,
.bf-tag {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 1.8px;
    font-weight: 700;
    color: var(--primary-2);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hero-left h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.06;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #ffffff 0%, #d7ecff 45%, #8ddfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    color: var(--muted);
    max-width: 720px;
    font-size: 1.02rem;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 10px 30px rgba(78, 161, 255, 0.26);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.stat-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 18px;
}

.stat-card strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-panel {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow:
        0 0 40px rgba(78, 161, 255, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: scale(1.05);
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(110, 231, 249, 0.18);
    border-radius: inherit;
    pointer-events: none;
    opacity: 0.9;
}

.panel-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(127, 209, 255, 0.12);
    color: var(--primary-2);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-panel h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.hero-panel ul {
    padding-left: 18px;
    color: var(--muted);
}

.hero-panel li+li {
    margin-top: 10px;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
}

.hero-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(110, 231, 249, 0.4));
}

.hero-tagline {
    color: var(--muted);
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 820px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .hero-section {
        padding-top: 58px;
    }
}