/* Cro Hero Industry Module
 * Block 4
 * ------------------------------------------------------------------------------------------------------------------ */

/* * {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: #f0f0f0;
} */

.hero-isolated {
/* --color-secondary-normal-bg: var(--color-secondary-normal-bg);
--color-secondary-normal-bg-dark: #001529;
--color-primary-normal-bg: var(--color-primary-normal-bg);
--color-primary-hover-bg: #a01829;
--color-primary-active-bg: #e63950;
--success: var(--color-secondary-normal-bg);
--warning: #fbbf24;
--warning-dark: #f59e0b; */
}

.industry-hero-compact.hero-isolated {
position: relative;
min-height: 280px;
overflow: hidden;
background: var(--color-secondary-normal-bg);
isolation: isolate;
display: block !important;
}

/* Background Photo (Legacy - hidden by default) */
.hero-isolated .hero-bg-photo {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
background-position: center;
opacity: 0;
transition: opacity 0.8s ease, background-color 0.6s ease;
display: none; /* Hidden - using solid colors now */
}

/* Solid Color Background */
.hero-isolated .hero-bg-solid {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--hero-bg-color, #001F3F);
transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 0;
}

/* Animated gradient accent (optional) */
.hero-isolated .hero-bg-solid::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
background: linear-gradient(90deg, transparent 0%, var(--hero-accent-color, transparent) 100%);
opacity: 0.15;
transition: opacity 0.6s ease, background 0.6s ease;
}

.hero-isolated .hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(0, 31, 63, var(--hero-overlay-opacity, 0.85)) 0%, rgba(0, 31, 63, calc(var(--hero-overlay-opacity, 0.85) * 0.95)) 100%);
z-index: 1;
transition: background 0.6s ease;
}

.hero-isolated .trust-seal-watermark {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(-8deg);
width: 400px;
height: 400px;
color: rgba(255, 255, 255, 0.03);
z-index: 0;
pointer-events: none;
}

.hero-isolated .hero-container-isolated {
position: relative;
z-index: 2;
max-width: 1400px;
margin: 0 auto;
padding: 1rem;
display: block !important;
}

.hero-isolated .industry-pills-isolated {
display: flex;
gap: 0.5rem;
margin-bottom: 1rem;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}

.hero-isolated .industry-pills-isolated::-webkit-scrollbar {
display: none;
}

.hero-isolated .industry-pill-isolated {
display: inline-flex;
align-items: center;
justify-content: center;
background: transparent;
color: white;
padding: 0.5rem 1rem;
border-radius: 50px;
font-size: 0.8rem;
font-weight: 700;
border: 2px solid rgba(255, 255, 255, 0.3);
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
flex-shrink: 0;
}

.hero-isolated .industry-pill-isolated:hover {
transform: scale(1.02);
border-color: rgba(255, 255, 255, 0.5);
background: rgba(255, 255, 255, 0.05);
}

.hero-isolated .industry-pill-isolated.active {
background: var(--color-secondary-normal-bg-dark);
border-color: white;
color: white;
}

.hero-isolated .hero-main-content-isolated {
display: grid !important;
grid-template-columns: 1fr !important;
gap: 1.5rem !important;
margin-bottom: 1rem;
}

.hero-isolated .hero-left-isolated {
display: flex !important;
flex-direction: column !important;
}

.hero-isolated .hero-right-isolated {
display: flex !important;
flex-direction: column !important;
}

/* IMPROVED: Smooth content transition wrapper */
.hero-isolated .content-transition-wrapper {
position: relative;
overflow: hidden;
}

.hero-isolated .hero-headline-isolated {
font-size: 1.5rem;
font-weight: 900;
color: white;
line-height: 1.2;
margin: 0 0 0.75rem 0;
letter-spacing: -0.02em;
transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-isolated .hero-headline-isolated.transitioning-out {
opacity: 0;
transform: translateY(-10px);
}

.hero-isolated .hero-headline-isolated.transitioning-in {
opacity: 0;
transform: translateY(10px);
}

.hero-isolated .hero-subheadline-isolated {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.85);
line-height: 1.4;
margin: 0 0 1rem 0;
font-weight: 500;
transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-isolated .hero-subheadline-isolated.transitioning-out {
opacity: 0;
transform: translateY(-10px);
}

.hero-isolated .hero-subheadline-isolated.transitioning-in {
opacity: 0;
transform: translateY(10px);
}

/* ========== STAT WIDGET ========== */
.hero-isolated .stat-display-widget-isolated {
background: rgba(255, 255, 255, 0.1);
border: 2px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
padding: 1rem;
margin-bottom: 1rem;
backdrop-filter: blur(10px);
position: relative;
cursor: pointer;
transition: all 0.3s ease;
overflow: hidden;
}

.hero-isolated .stat-display-widget-isolated:hover {
background: rgba(255, 255, 255, 0.12);
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-isolated .stat-display-widget-isolated.expanded {
cursor: pointer;
}

.hero-isolated .stat-widget-collapsed {
display: grid;
grid-template-columns: auto 1fr;
gap: 1rem;
align-items: center;
transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-isolated .stat-display-widget-isolated.expanded .stat-widget-collapsed {
opacity: 0;
transform: scale(0.95);
pointer-events: none;
position: absolute;
}

.hero-isolated .stat-col-icon {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.hero-isolated .stat-icon-isolated {
font-size: 1.5rem;
margin-bottom: 0.25rem;
}

.hero-isolated .stat-number-isolated {
font-size: 3.5rem;
font-weight: 900;
color: var(--success);
line-height: 1;
margin: 0;
}

.hero-isolated .stat-col-info {
display: flex;
flex-direction: column;
justify-content: center;
}

.hero-isolated .stat-label-isolated {
font-size: 0.95rem;
color: white;
font-weight: 700;
margin: 0 0 0.25rem 0;
}

.hero-isolated .stat-details-isolated {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.75);
line-height: 1.4;
margin: 0 0 0.5rem 0;
}

.hero-isolated .stat-click-hint {
display: flex;
align-items: center;
gap: 0.375rem;
font-size: 0.7rem;
color: rgba(255, 255, 255, 0.6);
font-weight: 600;
animation: pulse-hint 2s ease-in-out infinite;
}

@keyframes pulse-hint {
0%, 100% { opacity: 0.6; }
50% { opacity: 1; }
}

.hero-isolated .hint-icon {
font-size: 0.9rem;
}

.hero-isolated .stat-col-preview {
display: none;
}

.hero-isolated .stat-trust-badges {
display: none;
}

/* Expanded State */
.hero-isolated .stat-widget-expanded {
opacity: 0;
max-height: 0;
overflow: hidden;
transition: opacity 0.4s ease, max-height 0.4s ease;
}

.hero-isolated .stat-display-widget-isolated.expanded .stat-widget-expanded {
opacity: 1;
max-height: 600px;
}

.hero-isolated .expanded-header {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1rem;
}

.hero-isolated .expanded-icon {
font-size: 2rem;
flex-shrink: 0;
}

.hero-isolated .expanded-title {
flex: 1;
}

.hero-isolated .expanded-title h4 {
color: white;
font-size: 1.25rem;
font-weight: 800;
margin: 0 0 0.25rem 0;
line-height: 1.2;
}

.hero-isolated .expanded-title p {
color: rgba(255, 255, 255, 0.75);
font-size: 0.8rem;
margin: 0;
}

.hero-isolated .expanded-close-hint {
font-size: 1.5rem;
color: rgba(255, 255, 255, 0.6);
transition: all 0.3s ease;
cursor: pointer;
padding: 0.5rem;
border-radius: 4px;
flex-shrink: 0;
user-select: none;
z-index: 10;
}

.hero-isolated .expanded-close-hint:hover {
color: white;
background: rgba(255, 255, 255, 0.15);
transform: scale(1.1);
}

.hero-isolated .stat-divider-isolated {
height: 1px;
background: rgba(255, 255, 255, 0.15);
margin: 0 0 1rem 0;
}

.hero-isolated .stat-breakdown-isolated {
color: rgba(255, 255, 255, 0.85);
font-size: 0.85rem;
}

.hero-isolated .breakdown-section {
margin-bottom: 1rem;
}

.hero-isolated .breakdown-section h5 {
color: white;
font-size: 0.9rem;
font-weight: 700;
margin: 0 0 0.5rem 0;
}

.hero-isolated .breakdown-section ul {
list-style: none;
padding: 0;
margin: 0;
}

.hero-isolated .breakdown-section li {
padding: 0.25rem 0;
padding-left: 1.25rem;
position: relative;
line-height: 1.5;
}

.hero-isolated .breakdown-section li::before {
content: '•';
position: absolute;
left: 0;
color: var(--success);
font-weight: 700;
}

.hero-isolated .breakdown-trust {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-isolated .trust-seal-mini {
display: inline-flex;
align-items: center;
gap: 0.375rem;
background: rgba(16, 185, 129, 0.2);
color: var(--success);
padding: 0.375rem 0.75rem;
border-radius: 50px;
font-size: 0.75rem;
font-weight: 700;
border: 1.5px solid rgba(16, 185, 129, 0.4);
}

.hero-isolated .stat-trust-badges-expanded {
display: flex;
gap: 0.375rem;
}

.hero-isolated .stat-trust-badge {
background: var(--success);
color: white;
padding: 0.25rem 0.5rem;
border-radius: 4px;
font-size: 0.65rem;
font-weight: 800;
box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

/* IMPROVED: Trust Pills with Creative Animations */
.hero-isolated .trust-pills-isolated {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 1rem;
}

.hero-isolated .trust-pill-isolated {
display: inline-flex;
align-items: center;
background: rgba(16, 185, 129, 0.15);
color: var(--success);
padding: 0.375rem 0.75rem;
border-radius: 50px;
font-size: 0.75rem;
font-weight: 700;
border: 1.5px solid rgba(16, 185, 129, 0.3);
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
cursor: pointer;
position: relative;
overflow: visible;
}

/* Desktop hover effect */
@media (hover: hover) {
.hero-isolated .trust-pill-isolated:hover {
transform: translateY(-3px) scale(1.05);
background: rgba(16, 185, 129, 0.25);
border-color: rgba(16, 185, 129, 0.5);
box-shadow:
    0 4px 12px rgba(16, 185, 129, 0.3),
    0 0 20px rgba(16, 185, 129, 0.2);
}
}

/* Click/tap animation */
.hero-isolated .trust-pill-isolated.pill-tapped {
animation: pill-tap 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pill-tap {
0% { transform: scale(1); }
40% { transform: scale(0.92); }
60% { transform: scale(1.08); }
80% { transform: scale(0.98); }
100% { transform: scale(1); }
}

/* Ripple effect on click */
.hero-isolated .trust-pill-isolated::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(16, 185, 129, 0.4);
transform: translate(-50%, -50%);
opacity: 0;
}

.hero-isolated .trust-pill-isolated.pill-tapped::after {
animation: pill-ripple 0.6s ease-out;
}

@keyframes pill-ripple {
0% {
width: 0;
height: 0;
opacity: 1;
}
100% {
width: 150px;
height: 150px;
opacity: 0;
}
}

/* IMPROVED: Micro Testimonial with rotation */
.hero-isolated .micro-testimonial-isolated {
display: flex;
gap: 0.75rem;
margin-bottom: 1rem;
padding: 0.875rem;
background: rgba(255, 255, 255, 0.08);
border-radius: 8px;
border-left: 3px solid var(--color-primary-active-bg);
min-height: 90px;
position: relative;
overflow: hidden;
cursor: pointer;
transition: all 0.3s ease;
}

.hero-isolated .micro-testimonial-isolated:hover {
background: rgba(255, 255, 255, 0.12);
transform: translateX(2px);
}

.hero-isolated .micro-testimonial-isolated:active {
transform: scale(0.98);
}

.hero-isolated .testimonial-avatar-isolated {
width: 40px;
height: 40px;
border-radius: 50%;
background: linear-gradient(135deg, var(--color-primary-normal-bg) 0%, var(--color-primary-hover-bg) 100%);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.8rem;
font-weight: 700;
flex-shrink: 0;
transition: all 0.3s ease;
}

.hero-isolated .testimonial-content-isolated {
flex: 1;
position: relative;
min-height: 60px;
}

.hero-isolated .testimonial-slide {
transition: opacity 0.35s ease, transform 0.35s ease;
position: absolute;
width: 100%;
top: 0;
left: 0;
opacity: 0;
transform: translateX(15px);
pointer-events: none;
}

.hero-isolated .testimonial-slide.active {
opacity: 1;
transform: translateX(0);
position: relative;
pointer-events: auto;
}

.hero-isolated .testimonial-slide.exiting {
opacity: 0;
transform: translateX(-15px);
position: absolute;
}

.hero-isolated .testimonial-slide.entering {
opacity: 0;
transform: translateX(15px);
position: absolute;
}

.hero-isolated .testimonial-text-isolated {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.9);
line-height: 1.5;
font-style: italic;
margin: 0 0 0.375rem 0;
}

.hero-isolated .testimonial-author-isolated {
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.7);
font-style: normal;
margin: 0;
}

/* Review Widget */
.hero-isolated .review-widget-isolated {
text-align: center;
padding: 0.75rem;
background: rgba(255, 255, 255, 0.08);
border-radius: 8px;
margin-bottom: 1rem;
width: 70%;
margin-left: auto;
margin-right: auto;
}

.hero-isolated .review-stars-isolated {
color: var(--warning);
font-size: 1rem;
letter-spacing: 3px;
margin-bottom: 0.375rem;
}

.hero-isolated .review-text-isolated {
color: rgba(255, 255, 255, 0.85);
font-size: 0.8rem;
font-weight: 600;
margin: 0 0 0.5rem 0;
}

.hero-isolated .review-verified-badge {
display: inline-flex;
align-items: center;
gap: 0.25rem;
background: var(--success);
color: white;
padding: 0.25rem 0.5rem;
border-radius: 4px;
font-size: 0.65rem;
font-weight: 800;
box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.hero-isolated .review-verified-badge::before {
content: '✓';
font-size: 0.75rem;
}

/* IMPROVED: Professional Urgency Note */
.hero-isolated .urgency-note-isolated {
background: linear-gradient(135deg,
rgba(251, 191, 36, 0.15) 0%,
rgba(251, 191, 36, 0.08) 100%);
border: 2px solid rgba(251, 191, 36, 0.3);
border-left: 4px solid var(--warning);
padding: 1rem 1rem 1rem 1.25rem;
border-radius: 8px;
margin-bottom: 1rem;
position: relative;
backdrop-filter: blur(10px);
}

.hero-isolated .urgency-note-isolated::before {
content: '⚡';
position: absolute;
left: -12px;
top: 50%;
transform: translateY(-50%);
font-size: 1.25rem;
background: var(--warning);
width: 28px;
height: 28px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.hero-isolated .urgency-note-isolated p {
margin: 0;
font-size: 0.85rem;
color: white;
line-height: 1.6;
font-weight: 600;
text-align: left;
}

.hero-isolated .urgency-note-isolated strong {
color: var(--warning);
font-weight: 800;
}

/* CTAs */
.hero-isolated .hero-ctas-isolated {
display: flex;
flex-direction: column;
gap: 0.75rem;
margin-bottom: 1rem;
align-items: center;
}

.hero-isolated .hero-cta-isolated {
width: 75%;
padding: 0.875rem 1rem;
border-radius: 10px;
text-align: center;
font-weight: 700;
text-decoration: none;
transition: all 0.3s ease;
min-height: 48px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.hero-isolated .cta-text-isolated {
font-size: 0.95rem;
display: block;
}

.hero-isolated .cta-subtitle-isolated {
font-size: 0.7rem;
font-weight: 500;
opacity: 0.85;
margin-top: 0.25rem;
}

.hero-isolated .hero-cta-isolated.primary {
background: var(--color-primary-normal-bg);
/* background: linear-gradient(135deg, var(--color-primary-normal-bg) 0%, var(--color-primary-hover-bg) 100%); */
color: white;
box-shadow: 0 4px 12px color-mix(in srgb, var(--color-primary-normal-bg) 60%, transparent);
}

.hero-isolated .hero-cta-isolated.primary:hover {
transform: scale(1.02);
box-shadow: 0 6px 16px color-mix(in srgb, var(--color-primary-normal-bg) 50%, transparent);
}

.hero-isolated .hero-cta-isolated.secondary {
background: transparent;
color: white;
border: 2px solid white;
}

.hero-isolated .hero-cta-isolated.secondary:hover {
background: rgba(255, 255, 255, 0.1);
}

.hero-isolated .risk-reversal-isolated {
display: flex;
justify-content: center;
gap: 0.75rem;
flex-wrap: wrap;
font-size: 0.7rem;
color: rgba(255, 255, 255, 0.75);
font-weight: 600;
margin-bottom: 1rem;
}

/* Certification Row */
.hero-isolated .cert-row-isolated {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.5rem;
width: 80%;
margin: 0 auto 1rem auto;
}

.hero-isolated .cert-badge-isolated {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.25rem;
background: rgba(255, 255, 255, 0.12);
padding: 0.75rem 0.5rem;
border-radius: 8px;
border: 1.5px solid rgba(255, 255, 255, 0.25);
color: white;
font-size: 0.7rem;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
position: relative;
}

.hero-isolated .cert-badge-isolated:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.4);
transform: translateY(-2px);
}

.hero-isolated .cert-badge-isolated:active {
transform: scale(0.95);
}

.hero-isolated .cert-badge-isolated.verify {
background: rgba(16, 185, 129, 0.2);
border-color: var(--success);
color: var(--success);
}

.hero-isolated .cert-icon-isolated {
font-size: 1.25rem;
}

.hero-isolated .cert-text-isolated {
font-size: 0.7rem;
}

.hero-isolated .cert-details-isolated {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease, opacity 0.4s ease;
opacity: 0;
width: 80%;
margin: 0 auto 1rem auto;
}

.hero-isolated .cert-details-isolated.active {
max-height: 400px;
opacity: 1;
animation: fadeSlideIn 0.4s ease forwards;
}

@keyframes fadeSlideIn {
0% {
opacity: 0;
transform: translateY(-10px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}

.hero-isolated .cert-detail-content-isolated {
background: linear-gradient(135deg,
rgba(255, 255, 255, 0.15) 0%,
rgba(255, 255, 255, 0.08) 100%);
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 12px;
padding: 1.25rem;
margin-top: 0.5rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-isolated .cert-detail-content-isolated h4 {
color: white;
font-size: 1rem;
font-weight: 800;
margin: 0 0 0.75rem 0;
display: flex;
align-items: center;
gap: 0.5rem;
}

.hero-isolated .cert-detail-content-isolated h4::before {
content: '✓';
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
background: var(--success);
border-radius: 50%;
font-size: 0.75rem;
flex-shrink: 0;
}

.hero-isolated .cert-detail-content-isolated p {
color: rgba(255, 255, 255, 0.9);
font-size: 0.8rem;
line-height: 1.7;
margin: 0 0 1rem 0;
}

.hero-isolated .cert-detail-content-isolated .cert-benefits {
background: rgba(16, 185, 129, 0.1);
border-left: 3px solid var(--success);
padding: 0.75rem;
border-radius: 6px;
margin-bottom: 1rem;
}

.hero-isolated .cert-detail-content-isolated .cert-benefits p {
margin: 0;
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.85);
font-style: italic;
}

.hero-isolated .cert-detail-cta {
display: flex;
gap: 0.5rem;
align-items: center;
}

.hero-isolated .cert-cta-button {
flex: 1;
background: linear-gradient(135deg, var(--color-primary-normal-bg) 0%, var(--color-primary-hover-bg) 100%);
color: white;
padding: 0.75rem 1rem;
border-radius: 8px;
font-size: 0.8rem;
font-weight: 700;
cursor: pointer;
border: none;
transition: all 0.3s ease;
box-shadow: 0 3px 8px color-mix(in srgb, var(--color-primary-normal-bg) 70%, transparent);
text-align: center;
text-decoration: none;
display: inline-block;
}

.hero-isolated .cert-cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 5px 12px color-mix(in srgb, var(--color-primary-normal-bg) 60%, transparent);
}

.hero-isolated .cert-close-button {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
color: white;
padding: 0.75rem;
border-radius: 8px;
font-size: 0.8rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
}

.hero-isolated .cert-close-button:hover {
background: rgba(255, 255, 255, 0.15);
transform: scale(1.05);
}

/* IMPROVED: Better particle container and particles */
.hero-isolated .particle-container-isolated {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 9999;
}

.hero-isolated .particle-isolated {
position: absolute;
font-size: 20px;
pointer-events: none;
filter: drop-shadow(0 0 3px rgba(16, 185, 129, 0.5));
animation: particleBurstIso 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes particleBurstIso {
0% {
opacity: 1;
transform: translate(0, 0) scale(1) rotate(0deg);
}
100% {
opacity: 0;
transform: translate(var(--tx), var(--ty)) scale(0.3) rotate(360deg);
}
}

/* ========== DESKTOP RESPONSIVE ========== */
@media (min-width: 768px) {
.industry-hero-compact.hero-isolated {
min-height: 400px;
}

.hero-isolated .hero-container-isolated {
padding: 1.5rem 2rem;
}

.hero-isolated .hero-main-content-isolated {
grid-template-columns: 1fr 1fr !important;
gap: 3rem !important;
}

.hero-isolated .hero-headline-isolated {
font-size: 2.25rem;
}

.hero-isolated .hero-subheadline-isolated {
font-size: 1.05rem;
}

.hero-isolated .stat-widget-collapsed {
grid-template-columns: auto 1fr auto;
gap: 1.25rem;
}

.hero-isolated .stat-number-isolated {
font-size: 4rem;
}

.hero-isolated .stat-col-preview {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
padding-left: 1rem;
border-left: 2px solid rgba(255, 255, 255, 0.15);
min-width: 180px;
}

.hero-isolated .preview-content {
position: relative;
width: 100%;
}

.hero-isolated .preview-text {
font-size: 0.75rem;
color: white;
line-height: 1.5;
position: relative;
z-index: 1;
background: linear-gradient(to right,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.15) 85%,
    rgba(255, 255, 255, 0) 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-isolated .preview-gradient {
display: none;
}

.hero-isolated .preview-hint-icon {
font-size: 1.25rem;
color: rgba(255, 255, 255, 0.4);
margin-top: 0.5rem;
animation: bounce-hint 2s ease-in-out infinite;
}

@keyframes bounce-hint {
0%, 100% { transform: translateX(0); }
50% { transform: translateX(5px); }
}

.hero-isolated .stat-trust-badges {
display: flex;
gap: 0.375rem;
position: absolute;
bottom: 0.75rem;
right: 0.75rem;
}

.hero-isolated .hero-ctas-isolated {
flex-direction: row;
}

.hero-isolated .hero-cta-isolated {
width: auto;
flex: 1;
max-width: 48%;
}

.hero-isolated .cert-row-isolated {
grid-template-columns: repeat(4, 1fr);
width: 100%;
}

.hero-isolated .cert-badge-isolated {
flex-direction: row;
gap: 0.375rem;
}

.hero-isolated .cert-details-isolated {
width: 100%;
}

.hero-isolated .cert-details-isolated.active {
max-height: 450px;
}

.hero-isolated .review-widget-isolated {
width: 60%;
}
}

@keyframes sparkleFloatIso {
0% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
100% { opacity: 0; transform: translateY(-40px) scale(0.3) rotate(180deg); }
}


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