/* ==========================================================================
   Avarida Website Offer — cinematic video section (directly below hero).
   Same design tokens as website-offer.css. Poster-first, no layout shift.
   ========================================================================== */

.awo-video{padding-top:2rem}
.awo-video__frame{
	position:relative;
	max-width:64rem;
	margin:0 auto 2rem;
	border-radius:var(--radius-3xl);
	overflow:hidden;
	border:1px solid var(--border);
	box-shadow:var(--shadow-elegant);
	background:var(--ink);
	aspect-ratio:16/9;
	opacity:0;
	transform:translateY(18px) scale(0.98);
	transition:opacity 650ms cubic-bezier(0.2,0.7,0.2,1),transform 650ms cubic-bezier(0.2,0.7,0.2,1),box-shadow .25s;
}
.awo-video__frame.is-visible{opacity:1;transform:translateY(0) scale(1)}
.awo-video__frame:hover{box-shadow:var(--shadow-glow)}
.awo-video__el{display:block;width:100%;height:100%;object-fit:cover;background:var(--ink)}

.awo-video__trust{display:flex;flex-wrap:wrap;justify-content:center;gap:.6rem;margin:0 auto 1.75rem;max-width:64rem;font-size:.82rem;font-weight:600;color:var(--ink)}
.awo-video__trust span{display:flex;align-items:center;gap:.4rem;background:var(--card);border:1px solid var(--border);border-radius:9999px;padding:.4rem .85rem}
.awo-video__trust svg{width:15px;height:15px;color:var(--primary)}
.awo-video__ctas{justify-content:center;margin-bottom:0}

@media(max-width:640px){
	.awo-video{padding-top:1rem}
	.awo-video__frame{border-radius:var(--radius-2xl);margin-bottom:1.25rem}
	.awo-video__trust{font-size:.75rem}
}

@media(prefers-reduced-motion:reduce){
	.awo-video__frame{transition:opacity .01ms !important;transform:none !important}
	.awo-video__frame.is-visible{transform:none !important}
}
