/* ============================================================================
   HERO SECTION 2026 - SXO OPTIMISÉ + ADAPTATIF
   ============================================================================

   FIX 2026-01-31: Ajout préfixe .sxo-2026-wrapper pour isolation CSS
   (Pattern obligatoire FLYWHEEL - voir CLAUDE.md règle #25)

   Caractéristiques SXO 2026:
   - Mobile-first strict (ZERO @media max-width)
   - Core Web Vitals optimisés (LCP < 2.5s, INP < 200ms, CLS < 0.1)
   - Layout adaptatif (50/50 ou pleine largeur centrée)
   - Classes suffixées -2026
   - ZERO inline styles
   - Wrapper isolation .sxo-2026-wrapper

   Date: 2026-01-31
   ============================================================================ */

/* ============================================================================
   VARIABLES & BASE STYLES
   ============================================================================ */

.sxo-2026-wrapper {
    --hero-padding-mobile: 48px;
    --hero-padding-tablet: 64px;
    --hero-padding-desktop: 80px;

    /* FIX 2026-01-31: Réduction hauteur pour éviter fond bleu vide excessif */
    --hero-min-height-mobile: auto;
    --hero-min-height-tablet: auto;
    --hero-min-height-desktop: auto;

    --hero-overlay-opacity: 0.85;
    --hero-overlay-opacity-hover: 0.9;

    --hero-badge-bg: rgba(255, 255, 255, 0.15);
    --hero-badge-border: rgba(255, 255, 255, 0.3);
    --hero-badge-blur: 10px;

    --hero-text-color: #ffffff;
    --hero-text-muted: rgba(255, 255, 255, 0.8);

    /* FIX 2026-01-30: Gold premium */
    --hero-cta-primary-bg: #c4a35a;
    --hero-cta-primary-bg-hover: #d4b86a;
    --hero-cta-secondary-bg: transparent;
    --hero-cta-secondary-border: rgba(255, 255, 255, 0.5);

    --hero-focus-outline: #c4a35a;
    --hero-focus-offset: 2px;

    --hero-transition-speed: 0.2s;
    --hero-transition-easing: ease-out;
}

/* ============================================================================
   HERO SECTION ROOT
   ============================================================================ */

.sxo-2026-wrapper .hero-section-2026 {
    /* Performance optimizations */
    contain: layout style paint;
    content-visibility: auto;

    /* Layout */
    position: relative;
    min-height: var(--hero-min-height-mobile);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    /* Spacing */
    padding: var(--hero-padding-mobile) 16px;

    /* Typography - hérite de body (Poppins défini globalement) */
    line-height: 1.5;
    color: var(--hero-text-color);

    /* Accessibility */
    scroll-margin-top: 80px;
}

/* ============================================================================
   THEME VARIANTS - Backgrounds
   ============================================================================ */

/* Trust Theme (Corporate) - DEFAULT */
.sxo-2026-wrapper .hero-section-2026.trust-hero-2026 {
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #2d3748 100%);
}

/* Modern Theme (Tech) */
.sxo-2026-wrapper .hero-section-2026.modern-hero-2026 {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

/* Premium Theme (Luxury) */
.sxo-2026-wrapper .hero-section-2026.premium-hero-2026 {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

/* Energy Theme (Dynamic) */
.sxo-2026-wrapper .hero-section-2026.energy-hero-2026 {
    background: linear-gradient(135deg, #2d3748 0%, #1a365d 100%);
}

/* No Media Variant */
.sxo-2026-wrapper .hero-section-2026.no-media {
    min-height: var(--hero-min-height-mobile);
}

/* ============================================================================
   OVERLAY
   ============================================================================ */

.sxo-2026-wrapper .hero-overlay-2026 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(26, 54, 93, 0.6) 100%);
    z-index: 1;
    transition: opacity var(--hero-transition-speed) var(--hero-transition-easing);
}

.sxo-2026-wrapper .hero-section-2026:hover .hero-overlay-2026 {
    opacity: var(--hero-overlay-opacity-hover);
}

/* ============================================================================
   CONTAINER & GRID
   ============================================================================ */

.sxo-2026-wrapper .container-2026 {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px; /* FIX: alignement avec header-v5 */
    margin: 0 auto;
    padding: 0 16px;
}

.sxo-2026-wrapper .hero-grid-2026 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

/* ============================================================================
   CONTENT COLUMN
   ============================================================================ */

.sxo-2026-wrapper .hero-content-2026 {
    color: var(--hero-text-color);
    text-align: left;
}

.sxo-2026-wrapper .hero-content-centered-2026 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================================================
   BADGE
   ============================================================================ */

.sxo-2026-wrapper .hero-badge-wrapper-2026 {
    margin-bottom: 16px;
}

.sxo-2026-wrapper .hero-badge-2026 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--hero-badge-bg);
    border: 1px solid var(--hero-badge-border);
    border-radius: 9999px;
    backdrop-filter: blur(var(--hero-badge-blur));
    -webkit-backdrop-filter: blur(var(--hero-badge-blur));
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #c4a35a;
    transition: all var(--hero-transition-speed) var(--hero-transition-easing);
}

.sxo-2026-wrapper .hero-badge-2026:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.sxo-2026-wrapper .hero-badge-2026 i {
    font-size: 1rem;
    color: #c4a35a;
}

.sxo-2026-wrapper .hero-badge-text-2026 {
    white-space: normal;
}

@media (min-width: 768px) {
    .sxo-2026-wrapper .hero-badge-text-2026 {
        white-space: nowrap;
    }
}

/* Theme-specific badge colors */
.sxo-2026-wrapper .trust-badge-2026 {
    color: #c4a35a;
}

.sxo-2026-wrapper .modern-badge-2026 {
    color: #d4b86a;
}

.sxo-2026-wrapper .premium-badge-2026 {
    color: #c4a35a;
}

.sxo-2026-wrapper .energy-badge-2026 {
    color: #c4a35a;
}

/* ============================================================================
   TITLE
   ============================================================================ */

.sxo-2026-wrapper .hero-title-2026 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    color: #ffffff;
    overflow-wrap: break-word;
    word-break: break-word;
}

.sxo-2026-wrapper .hero-highlight-2026 {
    display: inline-block;
    background: linear-gradient(135deg, #c4a35a 0%, #d4b86a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Theme-specific title colors */
.sxo-2026-wrapper .trust-title-2026 {
    color: #ffffff;
}

.sxo-2026-wrapper .modern-title-2026 {
    color: #e2e8f0;
}

.sxo-2026-wrapper .premium-title-2026 {
    color: #f7fafc;
}

.sxo-2026-wrapper .energy-title-2026 {
    color: #ffffff;
}

/* ============================================================================
   SUBTITLE
   ============================================================================ */

.sxo-2026-wrapper .hero-subtitle-2026 {
    font-size: clamp(0.9rem, 3vw, 1.125rem);
    line-height: 1.7;
    margin: 0 0 24px 0;
    color: var(--hero-text-muted);
    max-width: 600px;
}

.sxo-2026-wrapper .hero-content-centered-2026 .hero-subtitle-2026 {
    margin-left: auto;
    margin-right: auto;
}

/* Theme-specific subtitle colors */
.sxo-2026-wrapper .trust-subtitle-2026 {
    color: rgba(226, 232, 240, 0.9);
}

.sxo-2026-wrapper .modern-subtitle-2026 {
    color: rgba(203, 213, 224, 0.9);
}

.sxo-2026-wrapper .premium-subtitle-2026 {
    color: rgba(237, 242, 247, 0.9);
}

.sxo-2026-wrapper .energy-subtitle-2026 {
    color: rgba(226, 232, 240, 0.9);
}

/* ============================================================================
   BENEFITS
   ============================================================================ */

.sxo-2026-wrapper .hero-benefits-2026 {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sxo-2026-wrapper .hero-benefit-item-2026 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
}

.sxo-2026-wrapper .hero-benefit-item-2026 i {
    color: #c4a35a;
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Theme-specific benefits icon colors */
.sxo-2026-wrapper .trust-benefit-2026 i {
    color: #c4a35a;
}

.sxo-2026-wrapper .modern-benefit-2026 i {
    color: #d4b86a;
}

.sxo-2026-wrapper .premium-benefit-2026 i {
    color: #c4a35a;
}

.sxo-2026-wrapper .energy-benefit-2026 i {
    color: #c4a35a;
}

/* ============================================================================
   CTAs
   ============================================================================ */

.sxo-2026-wrapper .hero-cta-group-2026 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.sxo-2026-wrapper .cta-button-2026 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--hero-transition-speed) var(--hero-transition-easing);
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 48px;
}

/* Primary CTA - dark text on gold for WCAG AA contrast (7.2:1) */
.sxo-2026-wrapper .cta-button-2026.cta-primary-2026 {
    background: var(--hero-cta-primary-bg);
    color: #1a1a1a;
    border-color: var(--hero-cta-primary-bg);
}

.sxo-2026-wrapper .cta-button-2026.cta-primary-2026:hover {
    background: var(--hero-cta-primary-bg-hover);
    border-color: var(--hero-cta-primary-bg-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 163, 90, 0.3);
}

/* Secondary CTA */
.sxo-2026-wrapper .cta-button-2026.cta-secondary-2026 {
    background: var(--hero-cta-secondary-bg);
    color: #ffffff;
    border-color: var(--hero-cta-secondary-border);
}

.sxo-2026-wrapper .cta-button-2026.cta-secondary-2026:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Theme-specific secondary borders */
.sxo-2026-wrapper .trust-cta-secondary-2026 {
    border-color: rgba(196, 163, 90, 0.5);
}

.sxo-2026-wrapper .trust-cta-secondary-2026:hover {
    border-color: #c4a35a;
}

.sxo-2026-wrapper .modern-cta-secondary-2026 {
    border-color: rgba(144, 205, 244, 0.5);
}

.sxo-2026-wrapper .modern-cta-secondary-2026:hover {
    border-color: #d4b86a;
}

.sxo-2026-wrapper .premium-cta-secondary-2026 {
    border-color: rgba(246, 173, 85, 0.5);
}

.sxo-2026-wrapper .premium-cta-secondary-2026:hover {
    border-color: #c4a35a;
}

.sxo-2026-wrapper .energy-cta-secondary-2026 {
    border-color: rgba(196, 163, 90, 0.5);
}

.sxo-2026-wrapper .energy-cta-secondary-2026:hover {
    border-color: #c4a35a;
}

/* Focus states for accessibility */
.sxo-2026-wrapper .cta-button-2026:focus-visible {
    outline: 3px solid var(--hero-focus-outline);
    outline-offset: var(--hero-focus-offset);
}

.sxo-2026-wrapper .cta-button-2026:focus {
    outline: 3px solid rgba(196, 163, 90, 0.5);
    outline-offset: var(--hero-focus-offset);
}

/* ============================================================================
   MEDIA COLUMN
   ============================================================================ */

.sxo-2026-wrapper .hero-media-2026 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sxo-2026-wrapper .hero-video-wrapper-2026,
.sxo-2026-wrapper .hero-image-wrapper-2026 {
    width: 100%;
    max-width: 500px;
}

.sxo-2026-wrapper .video-container-2026 {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.sxo-2026-wrapper .ratio-16x9-2026 {
    padding-bottom: 56.25%; /* 16:9 */
}

.sxo-2026-wrapper .ratio-16x9-2026 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.sxo-2026-wrapper .hero-product-image-2026 {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform var(--hero-transition-speed) var(--hero-transition-easing);
}

.sxo-2026-wrapper .hero-product-image-2026:hover {
    transform: scale(1.02);
}

/* ============================================================================
   RESPONSIVE BREAKPOINTS (Mobile-First)
   ============================================================================ */

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .sxo-2026-wrapper .hero-section-2026 {
        min-height: var(--hero-min-height-tablet);
        padding: var(--hero-padding-tablet) 32px;
    }

    .sxo-2026-wrapper .hero-grid-2026 {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .sxo-2026-wrapper .hero-title-2026 {
        font-size: 3rem;
        overflow-wrap: normal;
        word-break: normal;
    }

    .sxo-2026-wrapper .cta-button-2026 {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .sxo-2026-wrapper .hero-subtitle-2026 {
        font-size: 1.25rem;
    }

    .sxo-2026-wrapper .hero-video-wrapper-2026,
    .sxo-2026-wrapper .hero-image-wrapper-2026 {
        max-width: 600px;
    }
}

/* Desktop (1200px and up) */
@media (min-width: 1200px) {
    .sxo-2026-wrapper .hero-section-2026 {
        min-height: var(--hero-min-height-desktop);
        padding: var(--hero-padding-desktop) 64px;
    }

    .sxo-2026-wrapper .hero-grid-2026 {
        gap: 64px;
    }

    .sxo-2026-wrapper .hero-title-2026 {
        font-size: 4rem;
    }

    .sxo-2026-wrapper .hero-subtitle-2026 {
        font-size: 1.375rem;
    }

    .sxo-2026-wrapper .hero-video-wrapper-2026,
    .sxo-2026-wrapper .hero-image-wrapper-2026 {
        max-width: 800px;
    }
}

/* ============================================================================
   ACCESSIBILITY & REDUCED MOTION
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
    .sxo-2026-wrapper .hero-section-2026,
    .sxo-2026-wrapper .hero-overlay-2026,
    .sxo-2026-wrapper .hero-badge-2026,
    .sxo-2026-wrapper .cta-button-2026,
    .sxo-2026-wrapper .hero-product-image-2026 {
        transition: none;
    }

    .sxo-2026-wrapper .hero-badge-2026:hover,
    .sxo-2026-wrapper .cta-button-2026:hover,
    .sxo-2026-wrapper .hero-product-image-2026:hover {
        transform: none;
    }
}

@media (prefers-contrast: high) {
    .sxo-2026-wrapper .hero-badge-2026 {
        border-width: 2px;
    }

    .sxo-2026-wrapper .cta-button-2026 {
        border-width: 3px;
    }
}

/* ============================================================================
   PRINT STYLES
   ============================================================================ */

@media print {
    .sxo-2026-wrapper .hero-section-2026 {
        min-height: auto;
        padding: 24px 0;
        background: #ffffff;
        color: #000000;
    }

    .sxo-2026-wrapper .hero-overlay-2026 {
        display: none;
    }

    .sxo-2026-wrapper .hero-title-2026,
    .sxo-2026-wrapper .hero-subtitle-2026,
    .sxo-2026-wrapper .hero-benefit-item-2026 {
        color: #000000;
    }

    .sxo-2026-wrapper .cta-button-2026 {
        display: none;
    }

    .sxo-2026-wrapper .hero-media-2026 {
        display: none;
    }
}

/* ============================================================================
   THEME-SPECIFIC OVERRIDES
   ============================================================================ */

/* Trust Theme - Blue tones */
.sxo-2026-wrapper .trust-hero-2026 .hero-overlay-2026 {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(26, 54, 93, 0.6) 100%);
}

/* Modern Theme - Dark gray tones */
.sxo-2026-wrapper .modern-hero-2026 .hero-overlay-2026 {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.85) 0%, rgba(26, 32, 44, 0.9) 100%);
}

/* Premium Theme - Gold tones */
.sxo-2026-wrapper .premium-hero-2026 .hero-overlay-2026 {
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.85) 0%, rgba(45, 55, 72, 0.9) 100%);
}

/* Energy Theme */
.sxo-2026-wrapper .energy-hero-2026 .hero-overlay-2026 {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.85) 0%, rgba(26, 54, 93, 0.9) 100%);
}

/* ============================================================================
   LAYOUT ADAPTATIF - NO MEDIA VARIANT
   FIX 2026-01-31: Centrage forcé pour subtitle et benefits
   ============================================================================ */

.sxo-2026-wrapper .hero-section-2026.no-media .hero-grid-2026 {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.sxo-2026-wrapper .hero-section-2026.no-media .hero-content-2026 {
    text-align: center;
}

/* FIX 2026-01-31: Forcer centrage subtitle avec pour override génériques */
.sxo-2026-wrapper .hero-section-2026.no-media .hero-subtitle-2026 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* FIX 2026-01-31: Bloc centré globalement, items alignés à gauche */
.sxo-2026-wrapper .hero-section-2026.no-media .hero-benefits-2026 {
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto 32px auto;
}

/* FIX: Force left-align on benefit text to prevent centered wrapping in no-media layout */
.sxo-2026-wrapper .hero-section-2026.no-media .hero-benefit-item-2026 {
    text-align: left;
}

.sxo-2026-wrapper .hero-section-2026.no-media .hero-cta-group-2026 {
    justify-content: center;
}

/* ============================================================================
   RESPONSIVE ADAPTATIONS FOR NO MEDIA
   ============================================================================ */

@media (min-width: 768px) {
    .sxo-2026-wrapper .hero-section-2026.no-media .hero-grid-2026 {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
}

@media (min-width: 1200px) {
    .sxo-2026-wrapper .hero-section-2026.no-media .hero-grid-2026 {
        max-width: 900px;
    }
}

/* ============================================================================
   END OF FILE
   ============================================================================ */

/* ============================================================================
   PREMIUM FEATURES - Accent Line, Stats, Partners, Visual Card
   Unification hero 2026-02-09
   ============================================================================ */

.sxo-2026-wrapper .accent-line-2026 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c4a35a, transparent);
    z-index: 3;
}

.sxo-2026-wrapper .hero-visual-2026 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sxo-2026-wrapper .visual-card-2026 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.sxo-2026-wrapper .visual-decoration-2026 {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 163, 90, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.sxo-2026-wrapper .visual-stats-2026 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.sxo-2026-wrapper .stat-item-2026 {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(196, 163, 90, 0.2);
    transition: transform 0.2s ease-out, border-color 0.2s ease-out;
}

.sxo-2026-wrapper .stat-item-2026:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 163, 90, 0.5);
}

.sxo-2026-wrapper .stat-value-2026 {
    font-size: 2rem;
    font-weight: 800;
    color: #c4a35a;
    line-height: 1.2;
    margin-bottom: 4px;
}

.sxo-2026-wrapper .stat-label-2026 {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.sxo-2026-wrapper .partner-logos-2026 {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.sxo-2026-wrapper .partner-logos-2026 p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 12px 0;
    text-align: center;
}

.sxo-2026-wrapper .logos-grid-2026 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.sxo-2026-wrapper .logo-item-2026 {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.sxo-2026-wrapper .logo-more-2026 {
    color: #c4a35a;
    border-color: rgba(196, 163, 90, 0.3);
}

@media (min-width: 768px) {
    .sxo-2026-wrapper .visual-card-2026 {
        padding: 40px;
        max-width: 550px;
    }
    .sxo-2026-wrapper .stat-value-2026 {
        font-size: 2.5rem;
    }
    .sxo-2026-wrapper .stat-label-2026 {
        font-size: 0.9375rem;
    }
}

@media (min-width: 1200px) {
    .sxo-2026-wrapper .visual-card-2026 {
        padding: 48px;
        max-width: 600px;
    }
    .sxo-2026-wrapper .stat-value-2026 {
        font-size: 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sxo-2026-wrapper .stat-item-2026 {
        transition: none;
    }
    .sxo-2026-wrapper .stat-item-2026:hover {
        transform: none;
    }
}

@media print {
    .sxo-2026-wrapper .hero-visual-2026 {
        display: none;
    }
    .sxo-2026-wrapper .accent-line-2026 {
        display: none;
    }
}

/* === ACTIVE STATES (Round 4 Harmonization) === */
.sxo-2026-wrapper .cta-button-2026.cta-primary-2026:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(196, 163, 90, 0.2);
}

.sxo-2026-wrapper .cta-button-2026.cta-secondary-2026:active {
    transform: translateY(0);
}

.sxo-2026-wrapper .trust-cta-secondary-2026:focus-visible,
.sxo-2026-wrapper .modern-cta-secondary-2026:focus-visible,
.sxo-2026-wrapper .premium-cta-secondary-2026:focus-visible,
.sxo-2026-wrapper .energy-cta-secondary-2026:focus-visible {
    outline: 3px solid var(--hero-focus-outline);
    outline-offset: var(--hero-focus-offset);
}
