.hero {
    position: relative; min-height: 72vh; display: flex; align-items: center; overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-video-bg { position: absolute; inset: 0; }
.hero-video-bg video, .hero-video-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, 
        rgba(10,10,14,.65) 0%, 
        rgba(10,10,14,.25) 45%, 
        rgba(10,10,14,.75) 100%
    );
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.eyebrow { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.03; max-width: 10ch; margin: 10px 0 14px; }
.hero p { color: var(--muted); font-size: 1.1rem; max-width: 56ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.section-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 18px; }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.video-card { overflow: hidden; }
.video-card a { display: block; padding: 0 0 16px; }
.video-card h3, .video-card p { padding: 0 16px; }
.video-card h3 { margin: 14px 0 8px; }
.video-card p { margin: 0; color: var(--muted); }
.thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #0b0f15; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.badge {
    position: absolute; top: 12px; right: 12px; padding: 7px 10px;
    background: rgba(12,16,24,.8); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; font-size: .78rem;
}
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 24px; }
.pricing-card { padding: 32px; text-align: center; }
.price { font-size: 2.6rem; font-weight: 700; margin: 16px 0; }
.price span { font-size: 1rem; color: var(--muted); font-weight: 400; }
@media (max-width: 1024px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .hero { min-height: 62vh; }
    .feature-grid, .video-grid { grid-template-columns: 1fr; }
    .section-head { align-items: flex-start; flex-direction: column; }
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 50%, rgba(255, 47, 143, 0.25), transparent 40%);
    pointer-events: none;
    z-index: 1;
}
.btn-primary {
    background: linear-gradient(135deg, #ff2f8f, #ff6bb5);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff4aa0, #ff85c2);
}
.panel, .video-card, .pricing-card {
    background: linear-gradient(180deg, rgba(255, 47, 143, 0.06), rgba(255,255,255,0.02));
}
