.hero {
background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(168,85,247,0.2));
border-bottom: 1px solid var(--color-border);
}

.hero-text {
display: flex;
flex-direction: column;
justify-content: center;
gap: var(--space-md);
min-width: 0;
}

.hero-media {
height: 100%;
max-height: 420px;
}

.card h2 {
margin-bottom: var(--space-sm);
}

.sticky-cta {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
.sticky-cta {
left: 50%;
transform: translateX(-50%);
right: auto;
width: calc(100% - 40px);
text-align: center;
}
}