/* Cro Video Showcase Module
 * Block 11
 * ------------------------------------------------------------------------------------------------------------------ */

 /* Video Showcase Section - Dark Background FULL WIDTH */
.cro-video-showcase.video-showcase-section {
padding: 3rem 0;
background: var(--color-secondary-normal-bg);
position: relative;
width: 100%;
margin: 0;
}

.cro-video-showcase.video-showcase-section::before {
content: '';
position: absolute;
top: -10%;
right: -5%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(196, 30, 58, 0.08) 0%, transparent 70%);
border-radius: 50%;
pointer-events: none;
}

.cro-video-showcase .video-showcase-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 1rem;
position: relative;
z-index: 1;
}

/* Header */
.cro-video-showcase .video-header {
text-align: center;
margin-bottom: 2.5rem;
}

.cro-video-showcase .live-indicator {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: rgba(16, 185, 129, 0.15);
border: 2px solid rgba(16, 185, 129, 0.4);
padding: 0.5rem 1rem;
border-radius: 50px;
margin-bottom: 1rem;
font-size: 0.8rem;
font-weight: 700;
color: var(--success);
backdrop-filter: blur(10px);
}

.cro-video-showcase .live-dot {
width: 8px;
height: 8px;
background: var(--success);
border-radius: 50%;
animation: pulse-live__cro-video-showcase 2s ease-in-out infinite;
box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

@keyframes pulse-live__cro-video-showcase {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.6; transform: scale(0.9); }
}

.cro-video-showcase .video-title {
font-size: 1.75rem;
font-weight: 900;
color: #FFFFFF;
margin-bottom: 0.75rem;
letter-spacing: -0.03em;
line-height: 1.2;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
padding: 0 1rem;
}

.cro-video-showcase .video-subtitle {
font-size: 0.95rem;
color: rgba(255, 255, 255, 0.85);
font-weight: 600;
padding: 0 1rem;
}

/* Two Column Grid - Mobile First */
.cro-video-showcase .video-content-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
}

/* LEFT COLUMN */
.cro-video-showcase .video-left-column {
display: flex;
flex-direction: column;
gap: 1.25rem;
}

/* Video Player */
.cro-video-showcase .video-player-wrapper {
position: relative;
background: #000000;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
aspect-ratio: 16/9;
touch-action: manipulation;
}

.cro-video-showcase .video-thumbnail-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(4px);
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.4s ease;
}

.cro-video-showcase .video-thumbnail-overlay.hidden {
opacity: 0;
pointer-events: none;
}

.cro-video-showcase .thumbnail-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.6;
}

.cro-video-showcase .thumbnail-benefit {
position: absolute;
top: 1rem;
left: 1rem;
right: 1rem;
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(12px);
padding: 0.875rem 1rem;
border-radius: 12px;
display: flex;
align-items: center;
gap: 0.75rem;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
border: 1px solid rgba(255, 255, 255, 0.3);
}

.cro-video-showcase .benefit-icon-thumb {
width: 36px;
height: 36px;
background: var(--brand-green);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
flex-shrink: 0;
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cro-video-showcase .benefit-text-thumb strong {
display: block;
color: var(--color-secondary-normal-bg);
font-size: 0.85rem;
font-weight: 800;
margin-bottom: 0.125rem;
}

.cro-video-showcase .benefit-text-thumb span {
color: var(--gray-600);
font-size: 0.75rem;
font-weight: 600;
}

.cro-video-showcase .play-button {
position: relative;
background: none;
border: none;
cursor: pointer;
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
transition: transform 0.3s ease;
z-index: 2;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}

.cro-video-showcase .play-button:active {
transform: scale(0.95);
}

.cro-video-showcase .play-text {
color: white;
font-weight: 700;
font-size: 0.95rem;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
letter-spacing: 0.3px;
}

.cro-video-showcase .video-player {
width: 100%;
height: 100%;
display: block;
}

/* Video Controls - Touch Optimized */
.cro-video-showcase .video-controls {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
padding: 2rem 1rem 1rem;
display: flex;
align-items: center;
gap: 0.75rem;
opacity: 0;
transition: opacity 0.3s ease;
z-index: 5;
}

.cro-video-showcase .video-player-wrapper:hover .video-controls,
.cro-video-showcase .video-player-wrapper.show-controls .video-controls {
opacity: 1;
}

.cro-video-showcase .ctrl-btn {
background: none;
border: none;
color: white;
cursor: pointer;
padding: 0.625rem;
min-width: 44px;
min-height: 44px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
transition: background 0.2s ease;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}

.cro-video-showcase .ctrl-btn:active {
background: rgba(255, 255, 255, 0.2);
}

.cro-video-showcase .progress-wrap {
flex: 1;
display: flex;
flex-direction: column;
gap: 0.375rem;
}

.cro-video-showcase .progress-bar {
height: 6px;
background: rgba(255, 255, 255, 0.25);
border-radius: 3px;
cursor: pointer;
position: relative;
touch-action: manipulation;
}

.cro-video-showcase .progress-fill {
height: 100%;
background: var(--color-primary-normal-bg);
border-radius: 3px;
width: 0%;
transition: width 0.1s linear;
box-shadow: 0 0 8px color-mix(in srgb, var(--color-primary-normal-bg) 50%, transparent);
}

.cro-video-showcase .time-text {
color: rgba(255, 255, 255, 0.9);
font-size: 0.7rem;
font-weight: 600;
text-align: center;
}

/* Trust Popup */
.cro-video-showcase .trust-popup {
position: absolute;
top: 1rem;
right: 1rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
opacity: 0;
transform: translateX(20px);
transition: all 0.5s ease;
z-index: 8;
}

.cro-video-showcase .trust-popup.visible {
opacity: 1;
transform: translateX(0);
}

.cro-video-showcase .trust-badge-float {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(12px);
padding: 0.5rem 0.875rem;
border-radius: 8px;
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.7rem;
font-weight: 700;
color: var(--color-secondary-normal-bg);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Watch Badge */
.cro-video-showcase .watch-badge {
position: absolute;
bottom: 1rem;
left: 1rem;
background: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(12px);
padding: 0.5rem 0.875rem;
border-radius: 8px;
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.7rem;
color: white;
font-weight: 600;
z-index: 4;
border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Quick Overview */
.cro-video-showcase .quick-overview {
background: rgba(255, 255, 255, 0.04);
backdrop-filter: blur(12px);
border-radius: 16px;
padding: 1.25rem;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cro-video-showcase .overview-title {
color: white;
font-size: 0.95rem;
font-weight: 800;
margin: 0 0 1rem 0;
display: flex;
align-items: center;
gap: 0.625rem;
}

.cro-video-showcase .overview-title svg {
color: var(--color-primary-normal-bg);
flex-shrink: 0;
}

.cro-video-showcase .overview-benefits {
display: flex;
flex-direction: column;
gap: 0.875rem;
}

.cro-video-showcase .benefit-item-modern {
display: flex;
align-items: flex-start;
gap: 0.875rem;
padding: 0.875rem;
background: rgba(255, 255, 255, 0.04);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.08);
transition: all 0.3s ease;
cursor: pointer;
}

.cro-video-showcase .benefit-item-modern:active {
background: rgba(255, 255, 255, 0.08);
transform: translateX(4px);
}

.cro-video-showcase .benefit-item-modern.active {
background: rgba(16, 185, 129, 0.1);
border-color: rgba(16, 185, 129, 0.3);
}

.cro-video-showcase .benefit-icon-modern {
width: 36px;
height: 36px;
background: rgba(16, 185, 129, 0.15);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: var(--success);
flex-shrink: 0;
}

.cro-video-showcase .benefit-item-modern span {
color: rgba(255, 255, 255, 0.9);
font-size: 0.85rem;
font-weight: 600;
line-height: 1.5;
padding-top: 0.375rem;
}

/* Completion CTA - Hidden by default, revealed on benefit click */
.cro-video-showcase .completion-cta {
background: rgba(255, 255, 255, 0.04);
backdrop-filter: blur(12px);
border-radius: 16px;
border: 2px solid var(--color-primary-normal-bg);
box-shadow: 0 8px 32px color-mix(in srgb, var(--color-primary-normal-bg) 70%, transparent), 0 0 0 1px rgba(255, 255, 255, 0.05);
/* Hidden state - no space taken */
opacity: 0;
max-height: 0;
padding: 0 1.25rem;
margin: 0;
overflow: hidden;
transform: translateY(10px);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cro-video-showcase .completion-cta.visible {
opacity: 1;
max-height: 800px;
padding: 1.5rem 1.25rem;
transform: translateY(0);
}

/* Benefit Hint Alert - Fixed height to prevent layout shifts */
.cro-video-showcase .benefit-hint-alert {
background: rgba(16, 185, 129, 0.08);
backdrop-filter: blur(8px);
border-radius: 12px;
padding: 0.875rem 1rem;
margin-bottom: 1rem;
border-left: 3px solid var(--success);
display: flex;
align-items: center;
gap: 0.75rem;
min-height: 60px;
opacity: 0;
transform: scale(0.95);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
pointer-events: none;
}

.cro-video-showcase .benefit-hint-alert.visible {
opacity: 1;
transform: scale(1);
pointer-events: auto;
}

.cro-video-showcase .benefit-hint-alert .hint-icon {
color: var(--success);
flex-shrink: 0;
}

.cro-video-showcase .benefit-hint-alert p {
color: rgba(255, 255, 255, 0.9);
font-size: 0.85rem;
font-weight: 600;
margin: 0;
line-height: 1.5;
}

.cro-video-showcase .completion-content {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.25rem;
}

.cro-video-showcase .completion-icon-circle {
width: 48px;
height: 48px;
background: rgba(16, 185, 129, 0.15);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.cro-video-showcase .completion-text h3 {
color: white;
font-size: 1.15rem;
font-weight: 800;
margin: 0 0 0.375rem 0;
line-height: 1.3;
}

.cro-video-showcase .completion-text p {
color: rgba(255, 255, 255, 0.8);
font-size: 0.85rem;
margin: 0;
line-height: 1.5;
}

.cro-video-showcase .completion-actions {
display: grid;
grid-template-columns: 1fr;
gap: 0.875rem;
margin-bottom: 1rem;
}

.cro-video-showcase .completion-btn {
padding: 1rem;
border-radius: 10px;
text-align: center;
text-decoration: none;
font-weight: 700;
font-size: 0.9rem;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
min-height: 52px;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}

.cro-video-showcase .completion-btn.primary {
background: linear-gradient(135deg, var(--color-primary-normal-bg) 0%, var(--color-primary-hover-bg) 100%);
color: white;
box-shadow: 0 4px 16px color-mix(in srgb, var(--color-primary-normal-bg) 60%, transparent);
}

.cro-video-showcase .completion-btn.primary:active {
transform: translateY(1px);
box-shadow: 0 2px 8px color-mix(in srgb, var(--color-primary-normal-bg) 60%, transparent);
}

.cro-video-showcase .completion-btn.secondary {
background: transparent;
color: white;
border: 2px solid rgba(255, 255, 255, 0.3);
}

.cro-video-showcase .completion-btn.secondary:active {
border-color: white;
background: rgba(255, 255, 255, 0.05);
}

.cro-video-showcase .completion-trust {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
font-size: 0.7rem;
color: rgba(255, 255, 255, 0.75);
font-weight: 600;
}

.cro-video-showcase .completion-trust span {
display: flex;
align-items: center;
gap: 0.375rem;
}

.cro-video-showcase .completion-trust svg {
stroke: var(--success);
}

/* RIGHT COLUMN */
.cro-video-showcase .video-right-column {
display: flex;
flex-direction: column;
gap: 1.25rem;
}

/* Enhanced Mini CTA Card - Mobile Optimized */
.cro-video-showcase .mini-cta-card {
background: rgba(255, 255, 255, 0.06);
backdrop-filter: blur(12px);
border-radius: 16px;
padding: 1.5rem 1.25rem;
border: 2px solid color-mix(in srgb, var(--color-primary-normal-bg) 70%, transparent);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cro-video-showcase .cta-label-top {
display: inline-flex;
align-items: center;
gap: 0.375rem;
background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
color: #92400E;
padding: 0.375rem 0.875rem;
border-radius: 50px;
font-size: 0.7rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 1rem;
}

.cro-video-showcase .mini-cta-card h3 {
color: white;
font-size: 1.15rem;
font-weight: 800;
margin: 0 0 0.625rem 0;
line-height: 1.3;
}

.cro-video-showcase .cta-description {
color: rgba(255, 255, 255, 0.75);
font-size: 0.85rem;
margin: 0 0 1.25rem 0;
line-height: 1.5;
}

.cro-video-showcase .dual-cta-buttons {
display: grid;
grid-template-columns: 1fr;
gap: 0.75rem;
margin-bottom: 1rem;
}

.cro-video-showcase .cta-btn-primary {
padding: 1rem 1.25rem;
/* background: linear-gradient(135deg, var(--color-primary-normal-bg) 0%, var(--color-primary-hover-bg) 100%); */
background: var(--color-primary-normal-bg);
color: white;
text-decoration: none;
border-radius: 10px;
font-weight: 700;
font-size: 0.95rem;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
box-shadow: 0 4px 16px color-mix(in srgb, var(--color-primary-normal-bg) 60%, transparent);
min-height: 52px;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}

.cro-video-showcase .cta-btn-primary:active {
transform: translateY(1px);
box-shadow: 0 2px 8px color-mix(in srgb, var(--color-primary-normal-bg) 60%, transparent);
}

.cro-video-showcase .cta-btn-secondary {
padding: 1rem;
background: transparent;
color: white;
text-decoration: none;
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 10px;
font-weight: 700;
font-size: 0.95rem;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
min-height: 52px;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}

.cro-video-showcase .cta-btn-secondary:active {
border-color: white;
background: rgba(255, 255, 255, 0.05);
}

/* Urgency Indicator with Autoplay */
.cro-video-showcase .urgency-indicator {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
color: #FCD34D;
font-size: 0.75rem;
font-weight: 700;
text-align: center;
min-height: 24px;
}

.cro-video-showcase .urgency-indicator svg {
fill: #FCD34D;
flex-shrink: 0;
}

.cro-video-showcase .urgency-indicator span {
transition: opacity 0.5s ease;
}

.cro-video-showcase .urgency-indicator span.fade-out {
opacity: 0;
}

/* Benefit Pills Grid with Autoplay Highlight */
.cro-video-showcase .benefit-pills-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0.75rem;
}

.cro-video-showcase .pill-modern {
background: rgba(255, 255, 255, 0.06);
border: 2px solid rgba(255, 255, 255, 0.15);
padding: 0.75rem 0.875rem;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
font-size: 0.85rem;
font-weight: 700;
color: rgba(255, 255, 255, 0.9);
transition: background 0.6s ease, border-color 0.6s ease, color 0.6s ease;
touch-action: manipulation;
}

.cro-video-showcase .pill-modern.highlight {
background: rgba(16, 185, 129, 0.15);
border-color: var(--success);
color: #FFFFFF;
font-weight: 800;
}

.cro-video-showcase .pill-modern:active {
transform: scale(0.97);
}

.cro-video-showcase .pill-modern svg {
stroke: var(--success);
flex-shrink: 0;
}

/* Trust Strip Modern */
.cro-video-showcase .trust-strip-modern {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.75rem;
}

.cro-video-showcase .trust-card-mini {
background: rgba(255, 255, 255, 0.04);
backdrop-filter: blur(8px);
border-radius: 12px;
padding: 1rem 0.625rem;
border: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
transition: all 0.3s ease;
}

.cro-video-showcase .trust-card-mini:active {
background: rgba(255, 255, 255, 0.08);
transform: scale(0.97);
}

.cro-video-showcase .trust-icon-circle {
width: 32px;
height: 32px;
background: rgba(16, 185, 129, 0.15);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 0.625rem;
color: var(--success);
}

.cro-video-showcase .trust-data strong {
display: block;
color: white;
font-size: 0.9rem;
font-weight: 800;
margin-bottom: 0.125rem;
}

.cro-video-showcase .trust-data span {
color: rgba(255, 255, 255, 0.65);
font-size: 0.7rem;
font-weight: 600;
}

/* Micro Quote Modern with Autoplay */
.cro-video-showcase .micro-quote-modern {
background: rgba(255, 255, 255, 0.04);
backdrop-filter: blur(8px);
border-radius: 12px;
padding: 1rem;
border-left: 3px solid var(--color-primary-normal-bg);
display: flex;
align-items: center;
gap: 0.75rem;
position: relative;
min-height: 80px;
}

.cro-video-showcase .quote-mark {
position: absolute;
top: 0.75rem;
right: 0.75rem;
fill: color-mix(in srgb, var(--color-primary-normal-bg) 80%, transparent);
}

.cro-video-showcase .quote-avatar-mini {
width: 36px;
height: 36px;
background: linear-gradient(135deg, var(--color-primary-normal-bg) 0%, var(--color-primary-hover-bg) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 700;
font-size: 0.75rem;
flex-shrink: 0;
box-shadow: 0 2px 8px color-mix(in srgb, var(--color-primary-normal-bg) 70%, transparent);
transition: opacity 0.5s ease;
}

.cro-video-showcase .micro-quote-modern p {
color: rgba(255, 255, 255, 0.85);
font-size: 0.8rem;
font-style: italic;
margin: 0;
line-height: 1.5;
transition: opacity 0.5s ease;
}

.cro-video-showcase .micro-quote-modern.fade-out p,
.cro-video-showcase .micro-quote-modern.fade-out .quote-avatar-mini {
opacity: 0;
}

.cro-video-showcase .micro-quote-modern strong {
color: white;
font-weight: 800;
font-style: normal;
}

/* Desktop Layout */
@media (min-width: 768px) {
.cro-video-showcase.video-showcase-section {
padding: 5rem 0;
}

.cro-video-showcase .video-showcase-container {
padding: 0 2rem;
}

.cro-video-showcase .video-title {
font-size: 2.75rem;
padding: 0;
}

.cro-video-showcase .video-subtitle {
font-size: 1.1rem;
padding: 0;
}

.cro-video-showcase .video-content-grid {
grid-template-columns: 1.55fr 1fr;
gap: 2.5rem;
align-items: start;
}

.cro-video-showcase .video-player-wrapper {
border-radius: 24px;
}

.cro-video-showcase .completion-actions {
grid-template-columns: 1fr 1fr;
}

.cro-video-showcase .dual-cta-buttons {
grid-template-columns: 1.5fr auto;
}

.cro-video-showcase .thumbnail-benefit {
top: 1.5rem;
left: 1.5rem;
right: 1.5rem;
padding: 1rem 1.25rem;
}

.cro-video-showcase .benefit-icon-thumb {
width: 40px;
height: 40px;
}

.cro-video-showcase .benefit-text-thumb strong {
font-size: 0.95rem;
}

.cro-video-showcase .benefit-text-thumb span {
font-size: 0.8rem;
}

.cro-video-showcase .completion-icon-circle {
width: 56px;
height: 56px;
}

.cro-video-showcase .completion-text h3 {
font-size: 1.35rem;
}

.cro-video-showcase .completion-text p {
font-size: 0.9rem;
}

.cro-video-showcase .ctrl-btn:hover {
background: rgba(255, 255, 255, 0.1);
}

.cro-video-showcase .pill-modern:hover {
background: rgba(255, 255, 255, 0.1);
border-color: color-mix(in srgb, var(--color-primary-normal-bg) 60%, transparent);
transform: translateY(-2px);
}

.cro-video-showcase .trust-card-mini:hover {
background: rgba(255, 255, 255, 0.08);
border-color: color-mix(in srgb, var(--color-primary-normal-bg) 70%, transparent);
transform: translateY(-2px);
}

.cro-video-showcase .completion-btn.primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px color-mix(in srgb, var(--color-primary-normal-bg) 50%, transparent);
}

.cro-video-showcase .completion-btn.secondary:hover {
border-color: white;
background: rgba(255, 255, 255, 0.05);
}

.cro-video-showcase .cta-btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px color-mix(in srgb, var(--color-primary-normal-bg) 50%, transparent);
}

/* .cro-video-showcase .cta-btn-secondary:hover {
border-color: white;
background: rgba(255, 255, 255, 0.05);
} */

.cro-video-showcase .benefit-item-modern:hover {
background: rgba(255, 255, 255, 0.08);
border-color: color-mix(in srgb, var(--color-primary-normal-bg) 60%, transparent);
transform: translateX(4px);
}
}

@media (min-width: 1024px) {
.cro-video-showcase .video-content-grid {
grid-template-columns: 1.6fr 1fr;
}
}


/* ------------------------------------------------------------------------------------------------------------------ *
