﻿/* ==========================================================================
   HOME PAGE STYLES - Block 1: Theme Overrides + Hero + Sections
   ========================================================================== */
    /* ==========================================================================
       WORDPRESS THEME OVERRIDES
       Fix conflicts between ulises-theme global.css and this page's styles.
       ========================================================================== */

    /* Force theme containers to be transparent so our dynamic scroll background is visible */
    .site,
    .site-content,
    #content,
    #primary,
    .ast-container,
    .site-main,
    article,
    .entry-content,
    #um-main,
    .um-page-content,
    .wp-site-blocks,
    .wp-block-group,
    .wp-block-post-content {
        background: transparent !important;
        background-color: transparent !important;
    }

    /* Prevent the theme wrapper from constraining full-width sections */
    .um-page-content,
    .um-full-width {
        overflow: visible !important;
        max-width: none !important;
    }

    /* Ensure videos inside content are not forced to block */
    .um-page-content video {
        max-width: 100%;
    }

    /* ==========================================================================
       UNIFIED ULISES MARKETING STYLES
       ========================================================================== */
    html,
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden !important;
        width: 100%;
        font-family: 'Outfit', sans-serif;
        background-color: #020B1C;
        /* Navy base */
    }

    /* Base resets inside sections to prevent Astra theme conflicts */
    section,
    div {
        box-sizing: border-box;
    }




    /* ══════════════════════════════════════════════════════════
           ULISES HERO V11 — CINEMATIC EXCELLENCE
           Constellation network · Aurora canvas · Floating metrics
           Glass morphism · Parallax depth · Zero generic patterns
           ══════════════════════════════════════════════════════════ */

    @property --um-cta-angle {
        syntax: '<angle>';
        initial-value: 0deg;
        inherits: false;
    }

    #ulises-hero-section {
        --um-bg: #020B1C;
        --um-accent: #00FFA3;
        --um-accent-mid: #00a86b;
        --um-cyan: #00C8FF;
        --um-purple: #7B61FF;
        font-family: 'Outfit', sans-serif;
        background: var(--um-bg);
        color: #ffffff;
        position: relative;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        max-width: 100vw;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        overflow: hidden;
        z-index: 10;
    }

    /* Astra overrides */
    #ulises-hero-section h1,
    #ulises-hero-section h2,
    #ulises-hero-section h3,
    #ulises-hero-section h4 {
        color: #fff !important;
    }

    #ulises-hero-section * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: inherit;
    }

    /* ── FILM GRAIN ── */
    #ulises-hero-section::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 60;
        pointer-events: none;
        opacity: 0.03;
        mix-blend-mode: overlay;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        background-size: 200px 200px;
    }

    /* ── VIGNETTE ── cinematic depth */
    .um-vignette {
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none;
        background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 40%, rgba(2, 11, 28, 0.7) 100%);
    }

    /* ── CONSTELLATION CANVAS ── particles + connecting lines */
    #um-constellation-canvas {
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        opacity: 0;
        animation: umReveal 3s ease-out forwards 0.5s;
    }

    /* ── AURORA CANVAS ── nebula glow behind character */
    #um-aurora-canvas {
        position: absolute;
        top: 0;
        right: 0;
        width: 55%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
        opacity: 0;
        animation: umReveal 4s ease-out forwards 0.8s;
        mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, black 20%, transparent 70%);
        -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, black 20%, transparent 70%);
    }

    /* ── GRID ── */
    .um-grid-background {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        opacity: 0.15;
        background-image:
            linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 80px 80px;
        mask-image: radial-gradient(ellipse 60% 50% at 30% 50%, black 20%, transparent 70%);
        -webkit-mask-image: radial-gradient(ellipse 60% 50% at 30% 50%, black 20%, transparent 70%);
    }

    /* ── AMBIENT LIGHT BEAMS ── */
    .um-light-beam {
        position: absolute;
        bottom: 0;
        z-index: 2;
        pointer-events: none;
        width: 1px;
        height: 0;
        background: linear-gradient(to top, rgba(0, 255, 163, 0.2), transparent);
        animation: umBeamGrow 5s ease-out forwards;
    }

    .um-light-beam:nth-child(1) {
        left: 20%;
        transform: rotate(-6deg);
        animation-delay: 1.5s;
    }

    .um-light-beam:nth-child(2) {
        left: 38%;
        height: 55vh;
        animation-delay: 2s;
    }

    .um-light-beam:nth-child(3) {
        right: 28%;
        transform: rotate(5deg);
        animation-delay: 2.5s;
    }

    .um-light-beam:nth-child(4) {
        right: 12%;
        transform: rotate(10deg);
        animation-delay: 3s;
    }

    @keyframes umBeamGrow {
        0% {
            height: 0;
            opacity: 0;
        }

        40% {
            opacity: 0.5;
        }

        100% {
            height: 50vh;
            opacity: 0.2;
        }
    }

    /* ── HORIZON ── */
    .um-horizon-glow {
        position: absolute;
        bottom: -340px;
        left: 50%;
        transform: translateX(-50%);
        width: 115%;
        height: 480px;
        background: #ffffff;
        border-radius: 50%;
        z-index: 2;
        pointer-events: none;
        filter: blur(60px);
        opacity: 0.85;
        box-shadow: 0 -30px 120px rgba(0, 255, 163, 0.3), 0 -100px 200px rgba(2, 11, 28, 1);
    }

    .um-horizon-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        z-index: 4;
        pointer-events: none;
        background: linear-gradient(to top, #ffffff 20%, transparent 100%);
    }

    /* ── LAYOUT ── */
    #ulises-hero-section>.um-container {
        max-width: 1320px !important;
        width: 100% !important;
        margin: 0 auto !important;
        position: relative;
        z-index: 10;
        display: grid !important;
        grid-template-columns: 1.1fr 0.9fr !important;
        gap: 3rem !important;
        align-items: center !important;
        opacity: 0;
        transform: translateY(40px);
        animation: umSlideUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
    }

    /* ── EYEBROW ── */
    .um-script-text {
        font-family: 'Nothing You Could Do', cursive;
        color: var(--um-accent);
        font-size: 1.5rem;
        display: inline-block;
        margin-bottom: 1rem;
        text-shadow: 0 0 25px rgba(0, 255, 163, 0.25);
        opacity: 0;
        animation: umClipReveal 0.8s ease-out forwards 0.6s;
    }

    /* ── H1 ── */
    h1.um-title {
        font-size: clamp(40px, 4.8vw, 72px) !important;
        font-weight: 800 !important;
        line-height: 1.02 !important;
        margin: 0 0 2rem 0 !important;
        text-transform: uppercase !important;
        letter-spacing: -0.04em !important;
        text-align: left !important;
        background: linear-gradient(175deg, #ffffff 45%, rgba(255, 255, 255, 0.25));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        opacity: 0;
        animation: umClipReveal 1s ease-out forwards 0.8s;
    }

    h1.um-title span.highlight {
        background: linear-gradient(135deg, #ffffff 0%, #00FFA3 40%, #00a86b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Typewriter */
    .um-typewriter {
        display: inline-block;
    }

    .um-typewriter-cursor {
        display: inline-block;
        width: 3px;
        height: 0.82em;
        background: var(--um-accent);
        margin-left: 4px;
        vertical-align: baseline;
        border-radius: 2px;
        animation: umBlink 1s step-end infinite;
        box-shadow: 0 0 12px rgba(0, 255, 163, 0.6), 0 0 30px rgba(0, 255, 163, 0.2);
    }

    @keyframes umBlink {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }
    }

    /* ── DESCRIPTION ── */
    .um-description {
        font-size: clamp(15px, 1.15vw, 18px) !important;
        line-height: 1.75 !important;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 3rem !important;
        max-width: 520px;
        text-align: left !important;
        font-weight: 300;
        opacity: 0;
        animation: umFadeUp 0.9s ease-out forwards 1.1s;
    }

    .um-description strong {
        color: rgba(255, 255, 255, 0.85);
        font-weight: 600;
    }

    /* ── KPI BAR ── glass-contained metrics */
    .um-kpi-bar {
        display: flex;
        gap: 1rem;
        margin-bottom: 4rem !important;
        opacity: 0;
        animation: umFadeUp 0.8s ease-out forwards 1.3s;
    }

    .um-kpi {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        padding: 1.25rem 1.8rem;
        position: relative;
        background: rgba(6, 19, 43, 0.5);
        backdrop-filter: blur(16px) saturate(140%);
        -webkit-backdrop-filter: blur(16px) saturate(140%);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-top-color: rgba(255, 255, 255, 0.15);
        border-radius: 14px;
        min-width: 175px;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow: hidden;
        box-sizing: border-box;
    }

    .um-kpi::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: skewX(-20deg);
        transition: left 0.7s ease;
    }

    .um-kpi:hover {
        transform: translateY(-5px);
        background: rgba(0, 255, 163, 0.06);
        border-color: rgba(0, 255, 163, 0.3);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 255, 163, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .um-kpi:hover::after {
        left: 150%;
    }

    .um-kpi-value {
        font-size: 1.85rem;
        font-weight: 800;
        background: linear-gradient(135deg, #ffffff 0%, #00FFA3 40%, #00a86b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
        letter-spacing: -0.02em;
        line-height: 1;
        font-variant-numeric: tabular-nums;
        filter: drop-shadow(0 4px 12px rgba(0, 255, 163, 0.25));
        text-align: center;
    }

    .um-kpi-label {
        font-size: 0.65rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 0.15em;
        white-space: nowrap;
        text-align: center;
        width: 100%;
        margin-left: 0.075em;
    }

    /* ── CTA ── */
    .um-cta-btn {
        margin-top: 0.5rem !important;
        position: relative;
        cursor: pointer;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        color: #020B1C !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em;
        padding: 1.15rem 3.5rem !important;
        border-radius: 60px !important;
        text-decoration: none !important;
        font-size: 15px !important;
        border: none !important;
        background: linear-gradient(135deg, var(--um-accent) 0%, var(--um-accent-mid) 100%) !important;
        box-shadow: 0 0 0 1px rgba(0, 255, 163, 0.3), 0 15px 40px -10px rgba(0, 255, 163, 0.3);
        transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        opacity: 0;
        animation: umFadeUp 0.8s ease-out forwards 1.5s;
        z-index: 1;
        overflow: hidden;
    }

    .um-cta-btn::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: inherit;
        z-index: -1;
        background: conic-gradient(from var(--um-cta-angle), var(--um-accent), var(--um-cyan), var(--um-purple), var(--um-accent));
        animation: umCTASpin 3s linear infinite;
        opacity: 0;
        transition: opacity 0.5s;
    }

    @keyframes umCTASpin {
        to {
            --um-cta-angle: 360deg;
        }
    }

    .um-cta-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: skewX(-25deg);
        transition: left 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .um-cta-btn:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 0 0 1px rgba(0, 255, 163, 0.5), 0 25px 60px -15px rgba(0, 255, 163, 0.4);
    }

    .um-cta-btn:hover::before {
        opacity: 1;
    }

    .um-cta-btn:hover::after {
        left: 150%;
    }

    /* ── CHARACTER AREA ── */
    .um-image-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        perspective: 1200px;
        opacity: 0;
        animation: umReveal 1.5s ease-out forwards 0.4s;
    }

    /* Orbital rings */
    .um-orbit-ring {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        border: 1px solid rgba(0, 255, 163, 0.06);
        opacity: 0;
        animation: umReveal 2s ease-out forwards;
    }

    .um-orbit-ring-1 {
        width: 360px;
        height: 360px;
        animation-delay: 1.5s;
        border-color: rgba(0, 255, 163, 0.1);
        animation: umReveal 2s forwards 1.5s, umOrbit 25s linear 1.5s infinite;
    }

    .um-orbit-ring-2 {
        width: 480px;
        height: 480px;
        border-style: dashed;
        border-color: rgba(0, 200, 255, 0.05);
        animation: umReveal 2s forwards 2s, umOrbit 35s linear 2s infinite reverse;
    }

    .um-orbit-ring-3 {
        width: 580px;
        height: 580px;
        border-color: rgba(255, 255, 255, 0.025);
        animation: umReveal 2s forwards 2.5s, umOrbit 50s linear 2.5s infinite;
    }

    @keyframes umOrbit {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* Orbit dots */
    .um-orbit-dot {
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--um-accent);
        pointer-events: none;
        box-shadow: 0 0 10px rgba(0, 255, 163, 0.5);
    }

    .um-orbit-dot-1 {
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .um-orbit-dot-2 {
        bottom: 12%;
        right: 0;
        background: var(--um-cyan);
        box-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
    }

    .um-orbit-dot-3 {
        top: 25%;
        left: 0;
        width: 3px;
        height: 3px;
        background: var(--um-purple);
        box-shadow: 0 0 8px rgba(123, 97, 255, 0.5);
    }

    /* ── FLOATING GLASS METRIC CARDS ── */
    .um-float-card {
        position: absolute;
        z-index: 5;
        background: rgba(6, 19, 43, 0.65);
        backdrop-filter: blur(20px) saturate(130%);
        -webkit-backdrop-filter: blur(20px) saturate(130%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top-color: rgba(255, 255, 255, 0.15);
        border-radius: 16px;
        padding: 1.25rem 1.6rem;
        pointer-events: none;
        min-width: 195px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        opacity: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .um-float-card-1 {
        top: 8%;
        right: -8%;
        animation: umFloatCard 6s ease-in-out infinite, umReveal 1.2s ease-out forwards 2s;
    }

    .um-float-card-2 {
        bottom: 22%;
        left: -10%;
        animation: umFloatCard 7s ease-in-out 1s infinite, umReveal 1.2s ease-out forwards 2.4s;
    }

    .um-float-card-3 {
        top: 52%;
        right: -14%;
        animation: umFloatCard 8s ease-in-out 0.5s infinite, umReveal 1.2s ease-out forwards 2.8s;
    }

    @keyframes umFloatCard {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .um-fc-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 0.6rem;
        width: 100%;
    }

    .um-fc-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        flex-shrink: 0;
        background: rgba(0, 255, 163, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .um-fc-icon svg {
        width: 14px;
        height: 14px;
    }

    .um-fc-label {
        font-size: 0.65rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.45);
        white-space: nowrap;
        text-align: center;
        margin-left: 0.05em;
    }

    .um-fc-value {
        font-size: 1.65rem;
        font-weight: 800;
        color: #fff;
        line-height: 1;
        margin-bottom: 0.2rem;
        white-space: nowrap;
        text-align: center;
        width: 100%;
        text-shadow: 0 2px 10px rgba(255, 255, 255, 0.15);
    }

    .um-fc-value small {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--um-accent);
        margin-left: 0.4rem;
        text-shadow: 0 0 8px rgba(0, 255, 163, 0.4);
    }

    .um-fc-sub {
        font-size: 0.65rem;
        color: rgba(255, 255, 255, 0.3);
        white-space: nowrap;
        text-align: center;
        width: 100%;
    }

    .um-fc-bar {
        display: flex;
        gap: 4px;
        margin-top: 0.5rem;
        align-items: flex-end;
        justify-content: center;
        height: 32px;
        width: 100%;
    }

    .um-fc-bar span {
        width: 5px;
        border-radius: 2px;
        background: rgba(0, 255, 163, 0.2);
        transition: height 0.3s;
    }

    .um-fc-bar span.active {
        background: var(--um-accent);
        box-shadow: 0 0 8px rgba(0, 255, 163, 0.4);
    }

    .um-char-glow {
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0, 255, 163, 0.05) 0%, transparent 70%);
        z-index: -1;
        filter: blur(40px);
        animation: umPulseGlow 10s infinite alternate;
    }

    @keyframes umPulseGlow {
        0% {
            transform: scale(0.85);
            opacity: 0.3;
        }

        100% {
            transform: scale(1.15);
            opacity: 0.6;
        }
    }

    .um-character-img {
        max-width: 95%;
        width: 95%;
        height: auto;
        position: relative;
        z-index: 2;
        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
        animation: umFloat 6s ease-in-out infinite !important;
        transform-origin: center center;
    }

    @keyframes umFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-16px);
        }
    }

    /* ── SCROLL INDICATOR ── */
    .um-scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        opacity: 0;
        animation: umReveal 1s ease-out forwards 2.5s;
        cursor: pointer;
        text-decoration: none;
    }

    .um-scroll-indicator span {
        font-size: 0.55rem;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.3);
    }

    .um-scroll-wheel {
        width: 20px;
        height: 32px;
        border-radius: 10px;
        border: 1.5px solid rgba(255, 255, 255, 0.2);
        position: relative;
    }

    .um-scroll-wheel::after {
        content: '';
        position: absolute;
        top: 5px;
        left: 50%;
        width: 2.5px;
        height: 7px;
        margin-left: -1.25px;
        border-radius: 2px;
        background: var(--um-accent);
        animation: umScrollDot 2.5s ease-in-out infinite;
        box-shadow: 0 0 8px rgba(0, 255, 163, 0.4);
    }

    @keyframes umScrollDot {

        0%,
        100% {
            transform: translateY(0);
            opacity: 1;
        }

        50% {
            transform: translateY(10px);
            opacity: 0.2;
        }
    }

    /* ── ANIMATIONS ── */
    @keyframes umFadeUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes umClipReveal {
        from {
            opacity: 0;
            clip-path: inset(0 100% 0 0);
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            clip-path: inset(0 0% 0 0);
            transform: translateY(0);
        }
    }

    @keyframes umReveal {
        to {
            opacity: 1;
        }
    }

    @keyframes umSlideUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
        #ulises-hero-section>.um-container {
            grid-template-columns: 1fr !important;
            text-align: center !important;
        }

        .um-content {
            text-align: center !important;
            order: 1;
        }

        h1.um-title {
            text-align: center !important;
        }

        .um-description {
            margin-left: auto;
            margin-right: auto;
        }

        .um-kpi-bar {
            justify-content: center;
        }

        .um-image-wrapper {
            order: 2;
        }

        .um-script-text::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .um-float-card {
            display: none;
        }

        #um-aurora-canvas {
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        #ulises-hero-section {
            width: 100% !important;
            left: 0 !important;
            right: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 5rem 1.25rem 3rem !important;
            min-height: auto !important;
            display: block !important;
        }

        #ulises-hero-section>.um-container {
            display: flex !important;
            flex-direction: column !important;
            gap: 2rem !important;
        }

        h1.um-title {
            font-size: 34px !important;
            line-height: 1.1 !important;
            text-align: left !important;
        }

        .um-description {
            text-align: left !important;
            max-width: 100%;
        }

        .um-content {
            text-align: left !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
        }

        .um-kpi-bar {
            flex-wrap: wrap;
            gap: 0.6rem;
            justify-content: center;
            margin-bottom: 2.5rem !important;
            width: 100%;
        }

        .um-kpi {
            padding: 0.8rem 0.5rem;
            min-width: 0;
            width: calc(33.333% - 0.4rem);
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .um-kpi-value {
            font-size: 1.3rem;
            text-align: center;
        }

        .um-kpi-label {
            font-size: 0.52rem;
            white-space: normal;
            line-height: 1.25;
            letter-spacing: 0.05em;
            margin-top: 0.2rem;
            text-align: center;
            width: 100%;
            margin-left: 0;
        }

        .um-image-wrapper {
            order: 2;
            margin-top: 1rem;
        }

        .um-character-img {
            width: 80%;
            max-width: 380px;
        }

        .um-orbit-ring,
        .um-light-beam,
        .um-float-card {
            display: none;
        }

        .um-cta-btn {
            width: 100% !important;
            padding: 1rem 2rem !important;
            font-size: 14px !important;
        }

        .um-horizon-glow {
            bottom: -80px !important;
            height: 180px !important;
        }
    }


    #um-seo-strategy {
        --um-bg-color: transparent;
        --um-accent: #00DB8D;
        --um-dark: #020B1C;
        --um-text-dark: #ffffff;
        --um-text-gray: rgba(255, 255, 255, 0.7);
        --um-gradient: linear-gradient(135deg, #00FFA3 0%, #00DB8D 100%);
        position: relative;
        background: var(--um-bg-color);
        color: var(--um-text-dark);
        font-family: 'Outfit', sans-serif;
        padding: 100px 0;
        box-sizing: border-box;
        overflow: hidden !important;
        z-index: 10;
        /* GLOBAL RESET FOR CENTERING */
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }

    /* ONLY APPLY BREAKOUT ON DESKTOP */
    @media (min-width: 1025px) {
        #um-seo-strategy {
            width: 100vw !important;
            max-width: none !important;
            margin-left: calc(50% - 50vw) !important;
            margin-right: calc(50% - 50vw) !important;
        }
    }

    @media (max-width: 1024px) {
        #um-seo-strategy {
            padding: 80px 0 !important;
            /* Double insurance for mobile alignment */
            display: block !important;
        }
    }

    @media (max-width: 480px) {
        #um-seo-strategy {
            padding: 60px 0 !important;
        }
    }

    #um-seo-strategy * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: inherit;
    }

    .um-strategy-grid {
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: 0.6;
        background-image:
            linear-gradient(to right, rgba(2, 11, 28, 0.03) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(2, 11, 28, 0.03) 1px, transparent 1px);
        background-size: 4rem 4rem;
        mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
        -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
        pointer-events: none;
    }

    .um-strategy-container {
        max-width: 1300px !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 2rem !important;
        position: relative;
        z-index: 10;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 4rem !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    @media (max-width: 1024px) {
        .um-strategy-container {
            grid-template-columns: 1fr !important;
            gap: 3rem !important;
            padding: 0 1.5rem !important;
            /* FORCE GRID ITEMS TO CENTER */
            justify-items: center !important;
        }
    }

    @media (max-width: 400px) {
        .um-strategy-container {
            padding: 0 1rem !important;
        }
    }

    .um-strategy-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    @media (max-width: 1024px) {
        .um-strategy-content {
            align-items: center !important;
            text-align: center !important;
            margin: 0 auto 2rem !important;
        }
    }

    .um-strategy-subtitle {
        font-family: 'Nothing You Could Do', cursive;
        color: var(--um-accent);
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        font-weight: 600;
        line-height: 1.3;
    }

    @media (max-width: 1024px) {
        .um-strategy-subtitle {
            margin-left: auto !important;
            margin-right: auto !important;
        }
    }

    @media (max-width: 480px) {
        .um-strategy-subtitle {
            font-size: 1.2rem !important;
            margin-bottom: 1rem;
        }
    }

    .um-strategy-title {
        font-size: clamp(1.5rem, 8vw, 3.8rem) !important;
        font-weight: 800 !important;
        line-height: 1.1 !important;
        margin-bottom: 2rem !important;
        text-transform: uppercase !important;
        letter-spacing: -1px !important;
        color: var(--um-dark);
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-wrap: balance;
        display: block !important;
    }

    @media (max-width: 1024px) {
        .um-strategy-title {
            margin-left: auto !important;
            margin-right: auto !important;
        }
    }

    @media (max-width: 480px) {
        .um-strategy-title {
            letter-spacing: -0.5px !important;
            margin-bottom: 1.5rem !important;
            font-size: clamp(1.4rem, 8.5vw, 2.5rem) !important;
        }
    }

    .um-strategy-description {
        font-size: 17px !important;
        line-height: 1.7 !important;
        color: var(--um-text-gray);
        margin-bottom: 2rem !important;
        max-width: 600px;
        width: 100% !important;
    }

    @media (max-width: 1024px) {
        .um-strategy-description {
            margin-left: auto !important;
            margin-right: auto !important;
        }
    }

    @media (max-width: 480px) {
        .um-strategy-description {
            font-size: 16px !important;
            line-height: 1.6 !important;
        }
    }

    .um-strategy-callout {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--um-dark);
        margin-bottom: 3rem !important;
        line-height: 1.3;
        width: 100% !important;
        max-width: 500px !important;
    }

    @media (max-width: 1024px) {
        .um-strategy-callout {
            margin-left: auto !important;
            margin-right: auto !important;
        }
    }

    @media (max-width: 480px) {
        .um-strategy-callout {
            font-size: 1.15rem !important;
            margin-bottom: 2.5rem !important;
        }
    }

    .um-visual-side {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 550px;
        width: 100% !important;
        max-width: 100% !important;
    }

    @media (max-width: 1024px) {
        .um-visual-side {
            min-height: 450px;
            margin-top: 0;
            margin-left: auto !important;
            margin-right: auto !important;
        }
    }

    @media (max-width: 430px) {
        .um-visual-side {
            min-height: 380px;
        }
    }

    .um-mockups-container {
        position: relative;
        z-index: 5;
        width: 100% !important;
        display: flex;
        justify-content: center;
        perspective: 2000px;
    }

    .um-phone-mockup {
        width: 300px;
        height: 540px;
        background: #080a0f;
        border-radius: 45px;
        border: 12px solid #1a1a1a;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3), 0 0 100px rgba(0, 255, 163, 0.05);
        overflow: hidden;
        position: relative;
        transition: transform 0.4s ease;
        flex-shrink: 0;
    }

    @media (max-width: 768px) {
        .um-phone-mockup {
            width: 220px;
            height: 395px;
            border: 10px solid #1a1a1a;
            border-radius: 30px;
        }
    }

    @media (max-width: 430px) {
        .um-phone-mockup {
            width: 185px;
            height: 330px;
            border: 8px solid #1a1a1a;
            border-radius: 25px;
        }
    }

    @media (max-width: 375px) {
        .um-phone-mockup {
            width: 165px;
            height: 295px;
            border: 7px solid #1a1a1a;
            border-radius: 20px;
        }
    }

    .um-phone-mockup::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 25px;
        background: #1a1a1a;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
        z-index: 10;
    }

    @media (max-width: 768px) {
        .um-phone-mockup::before {
            width: 70px;
            height: 18px;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }
    }

    .um-phone-mockup img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        pointer-events: none;
    }

    .um-phone-1 {
        transform: translateX(45px) translateY(-30px) rotate(-8deg);
        z-index: 2;
    }

    .um-phone-2 {
        transform: translateX(-55px) translateY(50px) rotate(6deg);
        z-index: 1;
        filter: brightness(0.9);
    }

    @media (max-width: 768px) {
        .um-phone-1 {
            transform: translateX(25px) translateY(-20px) rotate(-8deg);
        }

        .um-phone-2 {
            transform: translateX(-25px) translateY(25px) rotate(6deg);
        }
    }

    @media (max-width: 430px) {
        .um-phone-1 {
            transform: translateX(10px) translateY(-15px) rotate(-6deg);
        }

        .um-phone-2 {
            transform: translateX(-10px) translateY(20px) rotate(4deg);
        }
    }

    .um-cta-strategy-wrap {
        width: 100% !important;
        display: flex;
        justify-content: flex-start !important;
        padding: 20px 0;
        margin: 0 !important;
    }

    @media (max-width: 1024px) {
        .um-cta-strategy-wrap {
            justify-content: center !important;
            padding: 10px 0 0;
            margin-left: auto !important;
            margin-right: auto !important;
        }
    }

    .um-btn-strategy {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1.3rem 4rem !important;
        background: var(--um-gradient) !important;
        color: #ffffff !important;
        font-weight: 800;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 100px;
        font-size: 1.1rem !important;
        box-shadow: 0 15px 35px rgba(0, 219, 141, 0.4);
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    @media (max-width: 480px) {
        .um-btn-strategy {
            padding: 1.1rem 2.8rem !important;
            font-size: 0.95rem !important;
        }
    }

    .um-btn-strategy:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 45px rgba(0, 219, 141, 0.6);
        filter: brightness(1.1);
    }

    .um-btn-strategy:active {
        transform: translateY(-2px) scale(0.98);
    }


    /* VERSION V13 - COMPACT MOBILE FLOW */
    #um-v13-wrapper {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        background: #000 !important;
        overflow: hidden !important;
    }

    #um-v13-comp {
        position: relative !important;
        width: 100% !important;
        background: #000 !important;
        color: #fff !important;
        font-family: 'Outfit', sans-serif !important;
        min-height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 160px 0 !important;
        z-index: 1 !important;
    }

    /* MASCARAS */
    .v13-mask {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        height: 120px !important;
        z-index: 30 !important;
        pointer-events: none !important;
    }

    .v13-mask-t {
        top: 0 !important;
        background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.9) 15%, transparent 100%) !important;
    }

    .v13-mask-b {
        bottom: 0 !important;
        background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0.9) 15%, transparent 100%) !important;
    }

    #v13-stars {
        position: absolute !important;
        inset: 0 !important;
        z-index: 2 !important;
        pointer-events: none !important;
        opacity: 0.6 !important;
    }

    .v13-glow {
        position: absolute !important;
        inset: 0 !important;
        z-index: 3 !important;
        pointer-events: none !important;
        transition: all 1.2s ease !important;
    }

    .v13-main-container {
        width: 100% !important;
        max-width: 1400px !important;
        margin: 0 auto !important;
        position: relative !important;
        z-index: 20 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5rem !important;
        padding: 0 40px !important;
    }

    .v13-visual,
    .v13-content {
        flex: 0 0 calc(50% - 2.5rem) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .v13-orb {
        position: relative !important;
        width: clamp(350px, 38vw, 550px) !important;
        height: clamp(350px, 38vw, 550px) !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        animation: v13Float 12s ease-in-out infinite !important;
        margin: 0 auto !important;
    }

    .v13-orb-light {
        position: absolute !important;
        inset: -30px !important;
        border-radius: 50% !important;
        filter: blur(60px) !important;
        opacity: 0.3 !important;
        transition: background 0.8s ease !important;
    }

    .v13-img-wrap {
        width: 80% !important;
        height: 80% !important;
        transition: all 0.6s ease !important;
        display: flex !important;
        justify-content: center !important;
    }

    .v13-img-wrap img {
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.7)) !important;
    }

    .v13-content {
        text-align: left !important;
    }

    .v13-tag {
        font-weight: 800 !important;
        letter-spacing: 0.4em !important;
        text-transform: uppercase !important;
        margin-bottom: 1.5rem !important;
        font-size: 0.95rem !important;
        display: block !important;
    }

    .v13-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
        font-weight: 800 !important;
        color: #fff !important;
        margin-bottom: 2rem !important;
        line-height: 1.1 !important;
        letter-spacing: -0.04em !important;
    }

    .v13-desc {
        font-size: 1.3rem !important;
        color: #a4b3c8 !important;
        line-height: 1.7 !important;
        margin-bottom: 4rem !important;
    }

    .v13-metrics {
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 60px 70px !important;
        border-radius: 40px !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
    }

    .v13-m-row {
        margin-bottom: 3rem !important;
    }

    .v13-m-row:last-child {
        margin-bottom: 0 !important;
    }

    .v13-m-info {
        display: flex !important;
        justify-content: space-between !important;
        margin-bottom: 15px !important;
        font-weight: 800 !important;
        color: #fff !important;
        font-size: 1.15rem !important;
    }

    .v13-m-val {
        background: rgba(255, 255, 255, 0.1) !important;
        padding: 3px 12px !important;
        border-radius: 8px !important;
        font-size: 1rem !important;
    }

    .v13-m-bar-bg {
        height: 10px !important;
        background: rgba(255, 255, 255, 0.06) !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .v13-m-bar-fill {
        position: absolute !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 0% !important;
        transition: width 1.8s cubic-bezier(0.19, 1, 0.22, 1) !important;
        z-index: 10 !important;
    }

    .v13-footer {
        margin-top: 80px !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        position: relative !important;
        z-index: 100 !important;
        padding-bottom: 40px !important;
    }

    .v13-switcher {
        background: #0a0a0a !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 100px !important;
        padding: 8px !important;
        display: flex !important;
        position: relative !important;
        gap: 10px !important;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7) !important;
    }

    .v13-s-btn {
        border: none !important;
        background: transparent !important;
        color: #666 !important;
        padding: 18px 70px !important;
        border-radius: 100px !important;
        font-weight: 800 !important;
        font-size: 1.05rem !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 10 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.15em !important;
        transition: color 0.4s ease !important;
        outline: none !important;
    }

    .v13-s-btn.active {
        color: #fff !important;
    }

    .v13-pill {
        position: absolute !important;
        top: 8px !important;
        left: 8px !important;
        height: calc(100% - 16px) !important;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 100px !important;
        z-index: 5 !important;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), width 0.6s ease !important;
    }

    .v13-active-seo .v13-m-bar-fill {
        background: #00C896 !important;
        left: 0 !important;
    }

    .v13-active-sem .v13-m-bar-fill {
        background: #3B82F6 !important;
        right: 0 !important;
    }

    .v13-active-sem .v13-main-container {
        flex-direction: row-reverse !important;
    }

    .v13-active-sem .v13-content {
        text-align: right !important;
    }

    .v13-active-sem .v13-m-info {
        flex-direction: row-reverse !important;
    }

    @keyframes v13Float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-25px);
        }
    }

    /* RESPONSIVE ESPECIFICO V13 */
    @media (max-width: 1024px) {
        #um-v13-comp {
            padding: 80px 0 !important;
            min-height: auto !important;
        }

        .v13-mask {
            height: 60px !important;
        }

        .v13-main-container {
            flex-direction: column !important;
            text-align: center !important;
            gap: 1.5rem !important;
            padding: 0 25px !important;
        }

        .v13-active-sem .v13-main-container {
            flex-direction: column !important;
        }

        .v13-visual,
        .v13-content {
            flex: 0 0 auto !important;
            width: 100% !important;
            text-align: center !important;
        }

        .v13-active-sem .v13-content {
            text-align: center !important;
        }

        .v13-orb {
            width: 220px !important;
            height: 220px !important;
            margin-bottom: 0 !important;
        }

        .v13-tag {
            margin-bottom: 1rem !important;
            font-size: 0.85rem !important;
        }

        .v13-title {
            font-size: 2rem !important;
            margin-bottom: 1.2rem !important;
        }

        .v13-desc {
            font-size: 1.1rem !important;
            margin-bottom: 2rem !important;
            line-height: 1.5 !important;
        }

        .v13-metrics {
            padding: 30px 25px !important;
            border-radius: 25px !important;
        }

        .v13-m-row {
            margin-bottom: 1.8rem !important;
        }

        .v13-m-info {
            font-size: 1rem !important;
            margin-bottom: 8px !important;
        }

        .v13-m-info,
        .v13-active-sem .v13-m-info {
            flex-direction: row !important;
        }

        .v13-m-bar-fill {
            left: 0 !important;
            right: auto !important;
        }

        .v13-footer {
            margin-top: 40px !important;
            padding-bottom: 20px !important;
        }

        .v13-s-btn {
            padding: 14px 40px !important;
            font-size: 0.85rem !important;
        }
    }


    :root {
        --brand-teal: #00BF87;
        --brand-dark: #0B0173;
        --font-main: 'Poppins', sans-serif;
        --font-body: 'Open Sans', sans-serif;
    }

    body {
        margin: 0;
        padding: 0;
        background-color: transparent;
        font-family: var(--font-body);
    }

    /* =======================================
           CAROUSEL SECTION - PREMIUM DARK REDESIGN
           ======================================= */
    .ulises-carousel-section {
        /* BREAKOUT: full viewport width */
        width: 100vw !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        max-width: 100vw !important;
        /* Dark premium background */
        background: linear-gradient(170deg, #020B1C 0%, #051528 50%, #020B1C 100%) !important;
        padding: 100px 0 80px !important;
        overflow: hidden !important;
        position: relative !important;
        box-sizing: border-box !important;
    }

    /* Subtle grid background */
    .ulises-carousel-section .carousel-grid-bg {
        position: absolute !important;
        inset: 0 !important;
        background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
        background-size: 60px 60px !important;
        pointer-events: none !important;
        z-index: 1 !important;
    }

    /* Ambient glow orbs */
    .ulises-carousel-section .carousel-glow-tl {
        position: absolute !important;
        top: -120px !important;
        left: -120px !important;
        width: 450px !important;
        height: 450px !important;
        background: radial-gradient(circle, rgba(0, 200, 150, 0.12) 0%, transparent 70%) !important;
        pointer-events: none !important;
        z-index: 1 !important;
    }

    .ulises-carousel-section .carousel-glow-br {
        position: absolute !important;
        bottom: -100px !important;
        right: -100px !important;
        width: 400px !important;
        height: 400px !important;
        background: radial-gradient(circle, rgba(0, 200, 150, 0.08) 0%, transparent 70%) !important;
        pointer-events: none !important;
        z-index: 1 !important;
    }

    .ulises-carousel-header {
        text-align: center !important;
        padding: 0 2rem 3.5rem !important;
        max-width: 900px !important;
        margin: 0 auto !important;
        position: relative !important;
        z-index: 5 !important;
    }

    .ulises-carousel-header .carousel-kicker {
        font-family: 'Outfit', sans-serif !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.18em !important;
        text-transform: uppercase !important;
        color: #00C896 !important;
        display: block !important;
        margin-bottom: 1rem !important;
    }

    .ulises-carousel-header .carousel-title {
        font-family: 'Outfit', sans-serif !important;
        font-size: clamp(2rem, 5vw, 3.2rem) !important;
        font-weight: 800 !important;
        line-height: 1.1 !important;
        color: #ffffff !important;
        margin: 0 0 1.5rem !important;
        letter-spacing: -1px !important;
    }

    .ulises-carousel-header .carousel-desc {
        font-family: 'Outfit', sans-serif !important;
        font-size: 1.05rem !important;
        line-height: 1.75 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        max-width: 780px !important;
        margin: 0 auto !important;
    }

    .ulises-carousel-header .carousel-desc a {
        color: #00C896 !important;
        font-weight: 600 !important;
        text-decoration: none !important;
    }

    .ulises-carousel-header .carousel-desc em {
        font-style: italic !important;
        color: #ffffff !important;
        font-weight: 600 !important;
    }

    /* Fade masks - dark edges */
    .fade-mask-left,
    .fade-mask-right {
        position: absolute !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 200px !important;
        z-index: 10 !important;
        pointer-events: none !important;
    }

    .fade-mask-left {
        left: 0 !important;
        background: linear-gradient(to right,
                #020B1C 0%,
                rgba(2, 11, 28, 0.8) 30%,
                rgba(2, 11, 28, 0) 100%) !important;
    }

    .fade-mask-right {
        right: 0 !important;
        background: linear-gradient(to left,
                #020B1C 0%,
                rgba(2, 11, 28, 0.8) 30%,
                rgba(2, 11, 28, 0) 100%) !important;
    }

    /* Swiper Container */
    .ulises-carousel-section .swiper {
        width: 100% !important;
        padding-top: 50px !important;
        padding-bottom: 50px !important;
        position: relative !important;
        z-index: 5 !important;
    }

    .ulises-carousel-section .swiper-slide {
        background-position: center !important;
        background-size: cover !important;
        width: 320px !important;
        height: 420px !important;
        border-radius: 18px !important;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5) !important;
        position: relative !important;
        overflow: visible !important;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease !important;
    }

    .ulises-carousel-section .swiper-slide:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 35px 70px rgba(0, 200, 150, 0.2) !important;
    }

    .ulises-carousel-section .swiper-slide img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 18px !important;
        overflow: hidden !important;
    }

    /* Floating Elements Styling */
    .floating-badge {
        position: absolute !important;
        z-index: 10 !important;
        background: rgba(0, 200, 150, 0.9) !important;
        color: white !important;
        padding: 8px !important;
        border-radius: 8px !important;
        font-size: 20px !important;
        animation: float 3s ease-in-out infinite !important;
    }

    .rocket-badge {
        top: -20px !important;
        left: -20px !important;
    }

    .search-pill {
        position: absolute !important;
        top: -8px !important;
        right: 15px !important;
        background: rgba(0, 0, 0, 0.85) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        color: white !important;
        padding: 8px 15px !important;
        border-radius: 20px !important;
        font-size: 11px !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        border: 1px solid rgba(0, 200, 150, 0.3) !important;
        font-family: 'Outfit', sans-serif !important;
        z-index: 15 !important;
    }

    .search-pill i {
        font-size: 14px !important;
    }

    .cursor-icon {
        position: absolute !important;
        width: 24px !important;
        height: 24px !important;
        z-index: 11 !important;
        fill: #00C896 !important;
        animation: moveCursor 4s ease-in-out infinite !important;
    }

    .cursor-blue {
        bottom: 20px !important;
        right: 20px !important;
        color: #00C896 !important;
    }

    /* Slide Overlay Content */
    .slide-content {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 25px !important;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent) !important;
        border-radius: 0 0 18px 18px !important;
        color: white !important;
    }

    .slide-content h3 {
        font-family: 'Outfit', sans-serif !important;
        margin: 0 !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        color: white !important;
    }

    .slide-content p {
        margin: 5px 0 0 !important;
        font-size: 13px !important;
        opacity: 0.8 !important;
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
        color: white !important;
    }

    /* Call to Action Button - PREMIUM STYLE */
    .cta-container {
        text-align: center !important;
        margin-top: 50px !important;
        padding: 0 1rem !important;
        position: relative !important;
        z-index: 5 !important;
    }

    .cta-button {
        font-family: 'Outfit', sans-serif !important;
        font-weight: 800 !important;
        font-size: 17px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        color: #020B1C !important;
        text-decoration: none !important;
        padding: 1.1rem 3.2rem !important;
        border-radius: 50px !important;
        border: none !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.6rem !important;
        cursor: pointer !important;
        position: relative !important;
        overflow: hidden !important;
        /* Bright green CTA on dark background */
        background: linear-gradient(135deg, #00C896, #00a876) !important;
        box-shadow: 0 12px 35px rgba(0, 200, 150, 0.4) !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
    }

    .cta-button::before {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        border-radius: inherit !important;
        padding: 2px !important;
        background: linear-gradient(20deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4)) !important;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
        -webkit-mask-composite: xor !important;
        mask-composite: exclude !important;
        pointer-events: none !important;
    }

    .cta-button:hover {
        transform: translateY(-3px) scale(1.04) !important;
        box-shadow: 0 18px 50px rgba(0, 255, 163, 0.55) !important;
        background: linear-gradient(135deg, #00FFA3, #00C896) !important;
        color: #020B1C !important;
    }

    .cta-button svg,
    .cta-button .cta-arrow {
        transition: transform 0.3s ease !important;
    }

    .cta-button:hover .cta-arrow {
        transform: translateX(4px) !important;
    }

    /* Animations */
    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes moveCursor {

        0%,
        100% {
            transform: translate(0, 0);
        }

        50% {
            transform: translate(-10px, -10px);
        }
    }

    /* Navigation Arrows */
    .ulises-carousel-section .swiper-button-next,
    .ulises-carousel-section .swiper-button-prev {
        color: #020B1C !important;
        background: #00C896 !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        box-shadow: 0 8px 25px rgba(0, 200, 150, 0.3) !important;
        transition: all 0.3s ease !important;
    }

    .ulises-carousel-section .swiper-button-next:after,
    .ulises-carousel-section .swiper-button-prev:after {
        font-size: 20px !important;
        font-weight: bold !important;
    }

    .ulises-carousel-section .swiper-button-next:hover,
    .ulises-carousel-section .swiper-button-prev:hover {
        background: #00FFA3 !important;
        color: #020B1C !important;
        transform: scale(1.15) !important;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .ulises-carousel-section .swiper-slide {
            width: 260px !important;
            height: 350px !important;
        }

        .ulises-carousel-section {
            padding: 60px 0 50px !important;
        }

        .cta-button {
            padding: 14px 30px;
            font-size: 14px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            width: 40px;
            height: 40px;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 16px;
        }
    }


    /* --- SCOPED RESET & VARIABLES --- */
    #ulises-pillars {
        --ulises-bg: #ffffff;
        --ulises-text-main: #111111;
        /* Darker for contrast */
        --ulises-text-muted: #555555;
        /* Accent Color (Green from reference) */
        --ulises-accent: #00C896;
        /* Glassmorphism: Milky/Frosted Glass */
        --ulises-card-bg-start: rgba(255, 255, 255, 0.75);
        --ulises-card-bg-end: rgba(255, 255, 255, 0.45);
        --ulises-card-border: rgba(255, 255, 255, 0.9);
        /* Neumorphism 2.0 Shadows: Clean & Soft */
        --ulises-shadow-base:
            12px 12px 24px rgba(0, 0, 0, 0.04),
            -8px -8px 20px rgba(255, 255, 255, 1);
        --ulises-shadow-hover:
            16px 16px 32px rgba(0, 200, 150, 0.15),
            -10px -10px 24px rgba(255, 255, 255, 1);
        --ulises-dent-shadow:
            inset 6px 6px 12px rgba(0, 0, 0, 0.03),
            inset -6px -6px 12px rgba(255, 255, 255, 0.9);
        font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
        background-color: var(--ulises-bg);
        color: var(--ulises-text-main);
        padding: 80px 20px;
        width: 100%;
        position: relative;
        box-sizing: border-box;
        overflow: hidden;
    }

    #ulises-pillars *,
    #ulises-pillars *::before,
    #ulises-pillars *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    /* --- LAYOUT --- */
    #ulises-pillars .ulises-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    /* --- DECORATIVE ELEMENTS (Subtle Background Blobs) --- */
    /* Adds depth so glass effect is more visible */
    #ulises-pillars::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0, 200, 150, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
        /* Tinted Green */
        top: -100px;
        left: -100px;
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    #ulises-pillars::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(0, 200, 150, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
        /* Tinted Green */
        bottom: -50px;
        right: -50px;
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    /* --- TYPOGRAPHY --- */
    #ulises-pillars .ulises-header {
        margin-bottom: 70px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    #ulises-pillars .ulises-header.ulises-visible {
        opacity: 1;
        transform: translateY(0);
    }

    #ulises-pillars h2 {
        font-family: 'Outfit', sans-serif !important;
        font-size: clamp(2rem, 5vw, 3.2rem) !important;
        font-weight: 800 !important;
        line-height: 1.1 !important;
        color: #020B1C !important;
        margin: 0 0 1.5rem !important;
        letter-spacing: -1px !important;
        position: relative;
        display: inline-block;
    }

    /* NEW: Title Highlight Styles */
    #ulises-pillars .ulises-highlight {
        background: linear-gradient(135deg, var(--ulises-accent) 0%, #009D75 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        display: inline-block;
    }

    #ulises-pillars .ulises-intro {
        font-family: 'Outfit', sans-serif !important;
        font-size: 1.05rem !important;
        line-height: 1.75 !important;
        color: #2d3436 !important;
        max-width: 780px !important;
        margin: 0 auto !important;
        font-weight: 400;
        opacity: 1;
    }

    /* --- GRID --- */
    #ulises-pillars .ulises-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        /* Increased gap for cleaner look */
        perspective: 1200px;
        padding: 20px;
        /* Space for shadows not to clip */
    }

    @media (min-width: 850px) {
        #ulises-pillars .ulises-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* --- CARD STYLE (Premium Glass) --- */
    #ulises-pillars .ulises-card {
        position: relative;
        /* Milky Glass Gradient Background */
        background: linear-gradient(145deg, var(--ulises-card-bg-start), var(--ulises-card-bg-end));
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-radius: 24px;
        padding: 40px;
        text-align: left;
        /* Subtle border gradient for "Crystal" edge */
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-top: 1px solid rgba(255, 255, 255, 0.9);
        border-left: 1px solid rgba(255, 255, 255, 0.9);
        box-shadow: var(--ulises-shadow-base);
        transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        align-items: center;
        /* Vertically center items with the larger image */
        gap: 24px;
        cursor: default;
        z-index: 1;
        /* Animation Init State */
        opacity: 0;
        transform: translateY(40px);
    }

    #ulises-pillars .ulises-card.ulises-visible {
        animation: ulises-fade-up 0.9s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
    }

    /* HOVER EFFECT: Green Tint */
    #ulises-pillars .ulises-card:hover {
        box-shadow: var(--ulises-shadow-hover);
        transform: translateY(-4px);
        border-color: rgba(0, 200, 150, 0.4);
        /* Green tint border */
    }

    /* --- REFLECTION / SHEEN EFFECT (Mouse Tracked) --- */
    /* This creates the glossy reflection that follows the cursor */
    #ulises-pillars .ulises-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 24px;
        pointer-events: none;
        /* Sharp specular highlight - now tinted Green */
        background: radial-gradient(350px circle at var(--mx, 50%) var(--my, 50%),
                rgba(0, 200, 150, 0.15) 0%,
                rgba(255, 255, 255, 0.3) 25%,
                rgba(255, 255, 255, 0) 60%);
        opacity: 0;
        transform: scale(1.1);
        /* Slight zoom for diffusion */
        transition: opacity 0.3s ease;
        mix-blend-mode: overlay;
        z-index: 5;
    }

    #ulises-pillars .ulises-card:hover::before {
        opacity: 1;
        /* Stronger reflection on hover */
    }

    /* --- PRESSURE DENT EFFECT --- */
    #ulises-pillars .ulises-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 24px;
        pointer-events: none;
        background: radial-gradient(250px circle at var(--mx, 50%) var(--my, 50%),
                rgba(0, 200, 150, 0.05) 0%,
                transparent 60%);
        opacity: 0;
        z-index: 2;
        transition: opacity 0.2s ease;
    }

    #ulises-pillars .ulises-card.ulises-pressed {
        transform: scale(0.985) translateY(0);
        /* Press down */
        box-shadow: var(--ulises-dent-shadow);
        border-color: rgba(0, 200, 150, 0.1);
        /* Darken border slightly on press */
    }

    #ulises-pillars .ulises-card.ulises-pressed::after {
        opacity: 1;
    }

    /* --- CONTENT STYLING --- */
    #ulises-pillars .ulises-img-box {
        flex-shrink: 0;
        /* Increased size for more visual presence */
        width: 180px;
        height: 280px;
        border-radius: 24px;
        /* Soft gradient background for icons */
        background: linear-gradient(135deg, rgba(236, 240, 245, 0.8), rgba(255, 255, 255, 0.9));
        box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 1),
            inset -1px -1px 2px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    #ulises-pillars .ulises-card:hover .ulises-img-box {
        transform: scale(1.05) rotate(-2deg);
    }

    /* Image Shine on Hover */
    #ulises-pillars .ulises-img-box::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
        transform: rotate(45deg) translate(-100%, -100%);
        transition: transform 0.6s ease;
    }

    #ulises-pillars .ulises-card:hover .ulises-img-box::after {
        transform: rotate(45deg) translate(20%, 20%);
    }

    #ulises-pillars .ulises-img-box img {
        width: 85%;
        height: auto;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
        /* Increased shadow for depth */
    }

    #ulises-pillars .ulises-text-box {
        flex: 1;
        position: relative;
        z-index: 2;
    }

    #ulises-pillars h3 {
        font-size: 1.5rem;
        /* Slightly Larger */
        font-weight: 700;
        margin-bottom: 12px;
        color: #1a1a1a;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

    #ulises-pillars .ulises-desc {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
        font-weight: 400;
        opacity: 0.9;
    }

    /* --- ANIMATIONS --- */
    @keyframes ulises-fade-up {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* --- RESPONSIVE & ACCESSIBILITY --- */
    @media (max-width: 600px) {
        #ulises-pillars .ulises-card {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 30px;
        }

        #ulises-pillars .ulises-img-box {
            margin-bottom: 20px;
            width: 110px;
            /* Larger on mobile too */
            height: 110px;
        }

        #ulises-pillars h2 {
            font-size: 2rem;
        }

        #ulises-pillars h3 {
            margin-bottom: 8px;
        }
    }

    @media (prefers-reduced-motion: reduce) {

        #ulises-pillars .ulises-card,
        #ulises-pillars .ulises-header,
        #ulises-pillars .ulises-card:hover,
        #ulises-pillars .ulises-img-box,
        #ulises-pillars .ulises-img-box::after {
            opacity: 1 !important;
            transform: none !important;
            animation: none !important;
            transition: none !important;
        }

        #ulises-pillars .ulises-card::before {
            display: none;
        }
    }


    /* --- RESET & WRAPPER --- */
    #ulises-services-premium {
        width: 100% !important;
        background-color: transparent !important;
        padding: 140px 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-direction: column !important;
        font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif !important;
    }

    #ulises-services-premium * {
        box-sizing: border-box !important;
        margin: 0;
        padding: 0;
    }

    .u-premium-container {
        width: 100% !important;
        max-width: 1360px !important;
        margin: 0 auto !important;
        padding: 0 30px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* --- VARIABLES --- */
    #ulises-services-premium {
        --u-accent: #00C896;
        --u-accent-dark: #00A87E;
        --u-text-main: #0F172A;
        --u-text-muted: #4B5563;
        --u-glass-bg: rgba(255, 255, 255, 0.78);
        --u-shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.06);
        --u-shadow-btn: 0 15px 30px -5px rgba(0, 200, 150, 0.4);
    }

    /* --- CABECERA (ESPACIADO MASIVO CON LAS CAJAS) --- */
    .u-premium-header {
        width: 100% !important;
        max-width: 1000px !important;
        margin-bottom: 70px !important;
        /* ESPACIO DE SEGURIDAD PARA QUE NO ESTÉ CERCA DE LAS CAJAS */
        text-align: center !important;
        opacity: 0;
        transform: translateY(30px);
        transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .u-premium-header.u-visible {
        opacity: 1;
        transform: translateY(0);
    }

    #ulises-services-premium h2 {
        font-size: clamp(2.5rem, 6vw, 3.6rem);
        font-weight: 700 !important;
        line-height: 1.1 !important;
        margin-bottom: 40px !important;
        color: var(--u-text-main) !important;
        letter-spacing: -0.04em !important;
    }

    .u-premium-highlight {
        background: linear-gradient(135deg, #ffffff 0%, #00FFA3 40%, #00a86b 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    .u-premium-intro {
        font-size: 1.25rem !important;
        line-height: 1.9 !important;
        color: var(--u-text-muted) !important;
        padding: 0 20px !important;
    }

    /* --- GRID --- */
    .u-premium-grid {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 50px !important;
        justify-content: center !important;
    }

    @media (max-width: 1150px) {
        .u-premium-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }

    @media (max-width: 768px) {
        .u-premium-grid {
            grid-template-columns: 1fr !important;
        }
    }

    /* --- CARD (GLASSMORTHISM + MíXIMO AIRE) --- */
    .u-premium-card {
        background: var(--u-glass-bg) !important;
        backdrop-filter: blur(40px) saturate(200%) !important;
        -webkit-backdrop-filter: blur(40px) saturate(200%) !important;
        border-radius: 50px !important;
        border: 1px solid rgba(255, 255, 255, 1) !important;
        box-shadow: var(--u-shadow-card) !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 80px 60px !important;
        /* MUCHO AIRE PARA QUE EL TEXTO NO TOQUE BORDES */
        transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(50px);
    }

    .u-premium-card.u-visible {
        animation: u-premium-fade-up 1s forwards;
    }

    .u-premium-card:hover {
        box-shadow: 0 40px 80px -20px rgba(0, 200, 150, 0.25) !important;
        transform: translateY(-15px) !important;
        border-color: rgba(0, 200, 150, 0.3) !important;
    }

    /* CONTENIDO INTERNO */
    .u-premium-img-box {
        width: 100% !important;
        height: 160px !important;
        margin-bottom: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .u-premium-img-box img {
        max-width: 150%;
        max-height: 150%;
        object-fit: contain;
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    }

    #ulises-services-premium h3 {
        font-size: 1.75rem !important;
        font-weight: 700 !important;
        margin-bottom: 25px !important;
        color: var(--u-text-main) !important;
        text-align: center !important;
    }

    .u-premium-card p {
        font-size: 1.1rem !important;
        line-height: 1.9 !important;
        color: var(--u-text-muted) !important;
        margin-bottom: 80px !important;
        /* SEPARACIÓN MASIVA CON EL BOTÓN */
        text-align: center !important;
        flex-grow: 1;
    }

    /* --- BOTÓN FLOTANTE PREMIUM --- */
    .u-premium-btn {
        align-self: center !important;
        background: linear-gradient(135deg, var(--u-accent), var(--u-accent-dark)) !important;
        color: white !important;
        border: none !important;
        padding: 24px 60px !important;
        border-radius: 100px !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.15em !important;
        cursor: pointer !important;
        position: relative !important;
        box-shadow: var(--u-shadow-btn) !important;
        transition: all 0.4s ease !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .u-premium-btn:hover {
        transform: scale(1.08) !important;
        box-shadow: 0 20px 40px -10px rgba(0, 200, 150, 0.6) !important;
        filter: brightness(1.1);
    }

    .u-premium-btn svg {
        width: 22px;
        height: 22px;
        fill: white;
        transition: transform 0.3s ease;
    }

    .u-premium-btn:hover svg {
        transform: translateX(8px);
    }

    @keyframes u-premium-fade-up {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 650px) {
        .u-premium-card {
            padding: 60px 25px !important;
            border-radius: 40px !important;
        }

        #ulises-services-premium {
            padding: 80px 0 !important;
        }
    }


    /* Fix overlaps and spacing between unified sections */
    #ulises-hero-section {
        margin-bottom: 0 !important;
    }

    #um-seo-strategy {
        margin-top: 0 !important;
        position: relative;
        z-index: 12;
    }

    /* ==========================================
           SCROLL REVEAL ANIMATIONS (GPU Accelerated)
           Content starts VISIBLE by default for WordPress compatibility.
           JS adds .scroll-pending → opacity:0, then .scroll-visible → opacity:1
           ========================================== */
    .scroll-reveal {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
    }

    .scroll-reveal.scroll-pending {
        opacity: 0;
        transform: translate3d(0, 60px, 0);
    }

    .scroll-reveal.scroll-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .scroll-reveal.sr-delay-1 {
        transition-delay: 0.1s;
    }

    .scroll-reveal.sr-delay-2 {
        transition-delay: 0.2s;
    }

    .scroll-reveal.sr-delay-3 {
        transition-delay: 0.3s;
    }

    .scroll-reveal.sr-delay-4 {
        transition-delay: 0.4s;
    }

    /* Variant: scale up */
    .scroll-reveal.sr-scale {
        transform: translate3d(0, 40px, 0) scale(0.95);
    }

    .scroll-reveal.sr-scale.scroll-visible {
        transform: translate3d(0, 0, 0) scale(1);
    }

    /* Variant: from left */
    .scroll-reveal.sr-left {
        transform: translate3d(-60px, 0, 0);
    }

    .scroll-reveal.sr-left.scroll-visible {
        transform: translate3d(0, 0, 0);
    }

    /* Variant: from right */
    .scroll-reveal.sr-right {
        transform: translate3d(60px, 0, 0);
    }

    .scroll-reveal.sr-right.scroll-visible {
        transform: translate3d(0, 0, 0);
    }

    /* ==========================================
           DYNAMIC SCROLL BACKGROUND WRAPPER
           ========================================== */
    #um-scroll-bg-wrapper {
        position: relative;
        z-index: 10;
        /* Start dark, will be changed by JS */
        background-color: #ffffff;
        transition: background-color 0s;
    }

    /* ==========================================
           STARFIELD CANVAS
           ========================================== */
    #um-starfield-canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.6s ease;
    }

    #um-starfield-canvas.stars-visible {
        opacity: 1;
    }

    /* Ensure sections inside the wrapper are above the starfield */
    #um-scroll-bg-wrapper>section,
    #um-scroll-bg-wrapper>div {
        position: relative;
        z-index: 2;
    }

/* ==========================================================================
   HOME PAGE STYLES - Block 2: Services Carousel
   ========================================================================== */
    /* ---- FIX: Scroll reveal for full-width sections â†’ opacity only (no translateY gaps) ---- */
    section.scroll-reveal,
    div#um-v13-wrapper.scroll-reveal,
    div#ulises-pillars.scroll-reveal,
    div#ulises-services-premium.scroll-reveal {
        transform: none !important;
    }

    section.scroll-reveal.scroll-visible,
    div#um-v13-wrapper.scroll-reveal.scroll-visible,
    div#ulises-pillars.scroll-reveal.scroll-visible,
    div#ulises-services-premium.scroll-reveal.scroll-visible {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Inner elements (.um-strategy-content, .um-visual-side, .ulises-carousel-header)
           use their own scroll-reveal classes already — no extra rules needed here. */

    /* ---- TRANSPARENT BACKGROUNDS ---- */
    /* Section 1: SEO Strategy (near top â†’ bg still light â†’ dark text OK) */
    #um-seo-strategy {
        background: transparent !important;
    }

    #um-seo-strategy .um-strategy-grid {
        opacity: 0.3 !important;
    }

    /* Section 2: V13 SEO/SEM (already dark bg â†’ just fix masks) */
    .v13-mask-t {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%) !important;
    }

    .v13-mask-b {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%) !important;
    }

    /* Section 3: Carousel (already dark â†’ make fully transparent to blend) */
    .ulises-carousel-section {
        background: transparent !important;
    }

    /* Section 4: Pillars (mid-scroll â†’ dark bg â†’ needs light text) */
    #ulises-pillars {
        background-color: transparent !important;
    }

    #ulises-pillars .ulises-header h2,
    #ulises-pillars h2 {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }

    #ulises-pillars .ulises-highlight {
        background: linear-gradient(135deg, #ffffff 0%, #00FFA3 40%, #00a86b 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    #ulises-pillars .ulises-intro {
        color: rgba(255, 255, 255, 0.75) !important;
    }

    /* Pillars cards: dark glass effect */
    #ulises-pillars .ulises-card {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)) !important;
        backdrop-filter: blur(25px) saturate(150%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(150%) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.18) !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
    }

    #ulises-pillars .ulises-card:hover {
        box-shadow: 0 20px 50px rgba(0, 200, 150, 0.2), 0 8px 25px rgba(0, 0, 0, 0.4) !important;
        border-color: rgba(0, 200, 150, 0.3) !important;
    }

    #ulises-pillars .ulises-card::before {
        background: radial-gradient(350px circle at var(--mx, 50%) var(--my, 50%),
                rgba(0, 200, 150, 0.15) 0%,
                rgba(255, 255, 255, 0.08) 25%,
                transparent 60%) !important;
    }

    #ulises-pillars h3 {
        color: #ffffff !important;
    }

    #ulises-pillars .ulises-desc {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    #ulises-pillars .ulises-img-box {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)) !important;
        box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.08), inset -1px -1px 2px rgba(0, 0, 0, 0.2) !important;
    }

    /* Remove background blobs since section is now transparent */
    #ulises-pillars::before,
    #ulises-pillars::after {
        display: none !important;
    }

    /* Section 5: Services Premium (deep scroll â†’ dark â†’ light text) */
    #ulises-services-premium {
        background-color: transparent !important;
    }

    #ulises-services-premium h2 {
        color: #ffffff !important;
    }

    .u-premium-highlight {
        background: linear-gradient(135deg, #ffffff 0%, #00FFA3 40%, #00a86b 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    .u-premium-intro {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    /* Service cards: dark glass */
    .u-premium-card {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)) !important;
        backdrop-filter: blur(30px) saturate(150%) !important;
        -webkit-backdrop-filter: blur(30px) saturate(150%) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4) !important;
    }

    .u-premium-card:hover {
        box-shadow: 0 35px 70px rgba(0, 200, 150, 0.2) !important;
        border-color: rgba(0, 200, 150, 0.25) !important;
    }

    #ulises-services-premium h3 {
        color: #ffffff !important;
    }

    .u-premium-card p {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    /* Section 6: Features (already dark â†’ transparent to blend) */
    #ulises-features {
        background: transparent !important;
    }

    #ulises-features .uf-grid-bg {
        opacity: 0.5;
    }

    /* Section 7: Clients (near bottom â†’ dark â†’ adapt text) */
    #ulises-clients {
        background: transparent !important;
    }

    .uc-header h2 {
        color: #ffffff !important;
    }

    .uc-header h2 em {
        color: #00C896 !important;
    }

    .uc-header p {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .uc-header p strong {
        color: #00C896 !important;
    }

    /* Logos: invert for dark bg */
    .ul-row img {
        filter: grayscale(100%) brightness(0) invert(1) opacity(0.5) !important;
    }

    .ul-row img:hover {
        filter: grayscale(0%) brightness(1) invert(0) opacity(1) !important;
    }

    /* Section 8: CTA Banner (already dark â†’ transparent to blend) */
    #ulises-cta-banner {
        background: transparent !important;
    }

    #ulises-cta-banner::before,
    #ulises-cta-banner::after {
        opacity: 0.4;
    }

    /* Section 9: Contact (bottom â†’ dark â†’ adapt text, keep form card white) */
    #ulises-contact {
        background: transparent !important;
    }

    .uct-left h2 {
        color: #ffffff !important;
    }

    .uct-left h2 span {
        color: #00C896 !important;
    }

    .uct-info-list li a {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .uct-info-list li a:hover {
        color: #00C896 !important;
    }

    .uct-info-icon {
        background: rgba(0, 200, 150, 0.15) !important;
        border-color: rgba(0, 200, 150, 0.3) !important;
    }

    .uct-map-wrap {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
    }

    /* Contact form card: white floating card on dark bg â†’ premium look */
    .uct-form {
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }

    /* ---- Ensure the starfield z-index is correct ---- */
    #um-starfield-canvas {
        z-index: 1 !important;
    }

    #um-scroll-bg-wrapper {
        z-index: 2 !important;
    }

    #um-scroll-bg-wrapper>section,
    #um-scroll-bg-wrapper>div {
        position: relative;
        z-index: 3;
    }

    /* ---- NEXT SECTION (white clip) ---- */
    #um-next-section {
        background-color: transparent !important;
    }

    /* Hero horizon overlay must match the dynamic bg start (white initially) */
    .um-horizon-overlay {
        background: linear-gradient(to top, transparent 20%, rgba(255, 255, 255, 0) 100%) !important;
    }

    /* ---- HIDE LATERAL VIGNETTES ON CAROUSEL ---- */
    .fade-mask-left,
    .fade-mask-right {
        display: none !important;
    }

    /* ---- TOP/BOTTOM EDGE FEATHERING (eliminates horizontal lines between sections) ---- */
    /* Carousel section: smooth vertical edges */
    .ulises-carousel-section {
        -webkit-mask-image: linear-gradient(to bottom,
                transparent 0%,
                black 6%,
                black 94%,
                transparent 100%) !important;
        mask-image: linear-gradient(to bottom,
                transparent 0%,
                black 6%,
                black 94%,
                transparent 100%) !important;
    }

    /* Features section: smooth vertical edges */
    #ulises-features {
        -webkit-mask-image: linear-gradient(to bottom,
                transparent 0%,
                black 8%,
                black 92%,
                transparent 100%) !important;
        mask-image: linear-gradient(to bottom,
                transparent 0%,
                black 8%,
                black 92%,
                transparent 100%) !important;
    }

    /* ---- STARFIELD Z-INDEX (inside wrapper now) ---- */
    #um-starfield-canvas {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }

    #um-scroll-bg-wrapper>section,
    #um-scroll-bg-wrapper>div:not(#um-starfield-canvas),
    #um-scroll-bg-wrapper>script+* {
        position: relative;
        z-index: 3 !important;
    }

/* ==========================================================================
   HOME PAGE STYLES - Block 3: Metrics + Growth Machine
   ========================================================================== */
    /* ── PREMIUM SECTIONS - SCOPED STYLES ── */
    #um-home-sections *,
    #um-home-sections *::before,
    #um-home-sections *::after {
        box-sizing: border-box !important;
        font-family: 'Outfit', sans-serif !important;
    }

    #um-home-sections {
        --um-accent: #00FFA3;
        --um-accent-dark: #00a86b;
        --um-card-bg: #0e1a2f;
        --um-card-bg-hover: #132240;
        --um-border: rgba(255, 255, 255, 0.1);
        --um-border-hover: rgba(0, 255, 163, 0.3);
        --um-text: rgba(255, 255, 255, 0.7);
        --um-text-bright: rgba(255, 255, 255, 0.92);
        --um-heading: #ffffff;
        position: relative;
        background-color: transparent !important;
        z-index: 10;
    }

    .uhp-section {
        padding: 7rem 2rem !important;
        position: relative;
        z-index: 10;
        background-color: transparent !important;
    }

    .uhp-container {
        max-width: 1240px !important;
        margin: 0 auto !important;
        width: 100% !important;
        background-color: transparent !important;
    }

    .uhp-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 5rem !important;
        align-items: center !important;
    }

    /* ── TYPOGRAPHY ── */
    .uhp-h2 {
        font-size: clamp(2.2rem, 4vw, 3.2rem) !important;
        font-weight: 800 !important;
        line-height: 1.1 !important;
        margin-bottom: 1.8rem !important;
        text-transform: uppercase !important;
        letter-spacing: -0.03em !important;
        color: var(--um-heading) !important;
    }

    .uhp-h2-center {
        text-align: center !important;
        max-width: 900px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .uhp-hl {
        background: linear-gradient(135deg, #ffffff 0%, #00FFA3 40%, #00a86b 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        display: inline-block !important;
    }

    .uhp-p {
        font-size: 1.1rem !important;
        line-height: 1.8 !important;
        color: var(--um-text) !important;
        margin-bottom: 1.5rem !important;
        font-weight: 300 !important;
    }

    .uhp-p-center {
        text-align: center !important;
        max-width: 800px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .uhp-p strong {
        color: var(--um-text-bright) !important;
        font-weight: 600 !important;
    }

    /* ── PREMIUM CARDS (SOLID BG - works on white AND dark) ── */
    .uhp-card-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        margin-top: 3.5rem !important;
    }

    .uhp-card {
        background: #0d1829 !important;
        border: 1px solid rgba(255, 255, 255, 0.07) !important;
        border-radius: 16px !important;
        padding: 3rem 2.4rem !important;
        transition: all 0.4s ease !important;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4) !important;
        position: relative !important;
        overflow: hidden !important;
    }

    /* Accent gradient top border */
    .uhp-card::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 1px !important;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.5), transparent) !important;
        opacity: 0.3 !important;
        transition: all 0.4s ease !important;
    }

    .uhp-card:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 10px 30px -10px rgba(0, 255, 163, 0.15) !important;
        border-color: rgba(0, 255, 163, 0.5) !important;
        background: rgba(15, 23, 42, 0.8) !important;
    }

    .uhp-card:hover::before {
        opacity: 1 !important;
        height: 2px !important;
        background: linear-gradient(90deg, transparent, #00FFA3, transparent) !important;
    }

    .uhp-card-icon-wrapper {
        position: relative !important;
        display: inline-flex !important;
        margin-bottom: 2rem !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .uhp-card-icon-wrapper::after {
        content: '' !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 70px !important;
        height: 70px !important;
        transform: translate(-50%, -50%) !important;
        background: radial-gradient(circle, rgba(0, 255, 163, 0.1) 0%, transparent 70%) !important;
        border-radius: 50% !important;
        z-index: -1 !important;
        filter: blur(12px) !important;
        transition: all 0.5s ease !important;
    }

    .uhp-card:hover .uhp-card-icon-wrapper::after {
        background: radial-gradient(circle, rgba(0, 255, 163, 0.25) 0%, transparent 70%) !important;
        width: 90px !important;
        height: 90px !important;
    }

    .uhp-card-icon {
        color: var(--um-accent) !important;
        width: 56px !important;
        height: 56px !important;
        overflow: visible !important;
    }

    .uhp-card h3 {
        font-size: 1.3rem !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        margin: 0 0 1rem 0 !important;
        line-height: 1.3 !important;
    }

    .uhp-card p {
        font-size: 1rem !important;
        line-height: 1.75 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        margin: 0 !important;
    }

    /* ── CARD TEXT ALWAYS WHITE (dark solid bg — never changes with scroll) ── */
    .uhp-card h3,
    .uhp-eco-card h3,
    .uhp-svc-card h3,
    .uhp-cta-banner h2,
    .uhp-pillar-grid .uhp-card h3 {
        color: #ffffff !important;
    }

    .uhp-card p,
    .uhp-eco-card p,
    .uhp-svc-card p,
    .uhp-cta-banner p,
    .uhp-pillar-grid .uhp-card p {
        color: rgba(180, 195, 215, 0.9) !important;
    }

    /* Ecosystem card inline label always white */
    #um-home-sections .uhp-eco-card [style*="color:#fff"] {
        color: #ffffff !important;
    }

    /* ── STEP NUMBER ── */
    .uhp-step-num {
        font-size: 3.5rem !important;
        font-weight: 800 !important;
        color: rgba(0, 255, 163, 0.35) !important;
        line-height: 1 !important;
        margin-bottom: 1.5rem !important;
        display: block !important;
        transition: color 0.4s ease, text-shadow 0.4s ease !important;
        letter-spacing: -0.02em !important;
    }

    .uhp-card:hover .uhp-step-num {
        color: #00FFA3 !important;
        text-shadow: 0 0 30px rgba(0, 255, 163, 0.35) !important;
    }

    .uhp-hl-keyword {
        color: #00FFA3 !important;
        font-weight: 600 !important;
        transition: all 0.4s ease !important;
    }

    .uhp-card:hover .uhp-hl-keyword {
        text-shadow: 0 0 10px rgba(0, 255, 163, 0.3) !important;
    }

    /* Animated SVG helpers */
    .uhp-anim-float {
        animation: uhpFloat 4s ease-in-out infinite;
    }

    .uhp-anim-pulse {
        animation: uhpPulse 3s ease-in-out infinite;
    }

    .uhp-anim-spin {
        animation: uhpSpin 12s linear infinite;
        transform-origin: center;
    }

    .uhp-anim-dash {
        stroke-dasharray: 60;
        stroke-dashoffset: 60;
        animation: uhpDash 2s ease-in-out infinite alternate;
    }

    @keyframes uhpFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-4px);
        }
    }

    @keyframes uhpPulse {

        0%,
        100% {
            opacity: 0.5;
            transform: scale(0.96);
        }

        50% {
            opacity: 1;
            transform: scale(1.04);
        }
    }

    @keyframes uhpSpin {
        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes uhpDash {
        to {
            stroke-dashoffset: 0;
        }
    }

    /* Card hover SVG effect */
    .uhp-card:hover .uhp-card-icon {
        transform: scale(1.1) translateY(-4px) !important;
        filter: drop-shadow(0 8px 20px rgba(0, 255, 163, 0.4)) !important;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    /* ── CTA BUTTON ── */
    .uhp-cta {
        display: inline-flex !important;
        align-items: center !important;
        background: linear-gradient(135deg, var(--um-accent) 0%, var(--um-accent-dark) 100%) !important;
        color: #020B1C !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        padding: 1.15rem 2.8rem !important;
        border-radius: 50px !important;
        text-decoration: none !important;
        font-size: 1rem !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 10px 25px rgba(0, 255, 163, 0.2) !important;
        border: none !important;
        gap: 0.75rem !important;
        cursor: pointer !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .uhp-cta::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 50% !important;
        height: 100% !important;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent) !important;
        transform: skewX(-20deg) !important;
        transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .uhp-cta:hover {
        transform: translateY(-4px) scale(1.02) !important;
        box-shadow: 0 20px 40px rgba(0, 255, 163, 0.35) !important;
    }

    .uhp-cta:hover::after {
        left: 150% !important;
    }

    /* ── ECOSYSTEM CARD ── */
    .uhp-eco-card {
        background: var(--um-card-bg) !important;
        border: 1px solid var(--um-border) !important;
        border-radius: 1.5rem !important;
        padding: 3rem 2.5rem !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    }

    /* ── PILLARS GRID ── */
    .uhp-pillar-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
        margin-top: 3.5rem !important;
    }

    /* ══════════════════════════════════════════════
           SERVICES GRID — GOD TIER UPGRADE
           Glassmorphism · Neon hover · Premium micro-interactions
           ══════════════════════════════════════════════ */
    .uhp-svc-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.75rem !important;
        margin-top: 3.5rem !important;
    }

    /* ── BASE CARD ── */
    .uhp-svc-card {
        background: rgba(15, 23, 42, 0.55) !important;
        backdrop-filter: blur(12px) saturate(130%) !important;
        -webkit-backdrop-filter: blur(12px) saturate(130%) !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-radius: 20px !important;
        padding: 0 !important;
        text-align: center !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
        position: relative !important;
        overflow: hidden !important;
    }

    /* ── NEON TOP-EDGE LINE (subtle → glow on hover) ── */
    .uhp-svc-card::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 1px !important;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.35), transparent) !important;
        opacity: 0.45 !important;
        transition: all 0.4s ease !important;
        z-index: 3 !important;
    }

    /* ── NEON BOTTOM AMBIENT (appears on hover) ── */
    .uhp-svc-card::after {
        content: '' !important;
        position: absolute !important;
        bottom: -1px !important;
        left: 15% !important;
        width: 70% !important;
        height: 1px !important;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.2), transparent) !important;
        opacity: 0 !important;
        transition: opacity 0.5s ease 0.1s !important;
        z-index: 3 !important;
    }

    /* ── HOVER STATE ── */
    .uhp-svc-card:hover {
        transform: translateY(-8px) !important;
        border-color: rgba(0, 255, 163, 0.3) !important;
        background: rgba(15, 23, 42, 0.75) !important;
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 10px 30px -10px rgba(0, 255, 163, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    }

    .uhp-svc-card:hover::before {
        opacity: 1 !important;
        height: 2px !important;
        background: linear-gradient(90deg, transparent, #00FFA3, transparent) !important;
        box-shadow: 0 0 12px rgba(0, 255, 163, 0.4) !important;
    }

    .uhp-svc-card:hover::after {
        opacity: 1 !important;
    }

    /* ── IMAGE ZONE ── */
    .uhp-svc-card .uhp-svc-img {
        width: 100% !important;
        height: 220px !important;
        overflow: hidden !important;
        border-radius: 20px 20px 0 0 !important;
        position: relative !important;
    }

    /* Gradient fade at bottom of image → seamless blend with card body */
    .uhp-svc-card .uhp-svc-img::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 55% !important;
        background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, transparent 100%) !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }

    .uhp-svc-card .uhp-svc-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.65s ease !important;
        filter: saturate(1.05) brightness(0.95) !important;
    }

    .uhp-svc-card:hover .uhp-svc-img img {
        transform: scale(1.09) !important;
        filter: saturate(1.35) brightness(1.08) !important;
    }

    /* ── CARD BODY ── */
    .uhp-svc-card .uhp-svc-body {
        padding: 1.75rem 2rem 2rem !important;
        position: relative !important;
        z-index: 2 !important;
    }

    /* ── HEADING ── */
    .uhp-svc-card h3 {
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin: 0 0 0.85rem 0 !important;
        transition: color 0.4s ease, text-shadow 0.4s ease !important;
        letter-spacing: -0.01em !important;
    }

    .uhp-svc-card:hover h3 {
        color: #00FFA3 !important;
        text-shadow: 0 0 25px rgba(0, 255, 163, 0.25) !important;
    }

    /* ── BODY TEXT ── */
    .uhp-svc-card p {
        font-size: 0.93rem !important;
        line-height: 1.72 !important;
        color: rgba(226, 232, 240, 0.65) !important;
        margin: 0 0 1.5rem 0 !important;
        transition: color 0.4s ease !important;
    }

    .uhp-svc-card:hover p {
        color: rgba(226, 232, 240, 0.88) !important;
    }

    /* ── LOGO MARQUEE ── */
    .uhp-logos {
        width: 100%;
        overflow: hidden;
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .uhp-logos-track {
        display: flex;
        width: max-content;
    }

    .uhp-logos-row {
        display: flex;
        align-items: center;
        gap: 3rem;
        padding: 1rem 1.5rem;
        animation: uhpScroll 28s linear infinite;
    }

    .uhp-logos-row img {
        height: 52px;
        width: auto;
        object-fit: contain;
        filter: grayscale(100%) brightness(0) invert(1) opacity(0.4);
        transition: filter 0.3s;
        flex-shrink: 0;
    }

    .uhp-logos-row img:hover {
        filter: grayscale(0%) brightness(1) invert(0) opacity(1);
    }

    @keyframes uhpScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* ── CTA BANNER ── */
    .uhp-cta-banner {
        background: var(--um-card-bg) !important;
        border: 1px solid rgba(0, 255, 163, 0.2) !important;
        border-radius: 2rem !important;
        padding: 5rem 3.5rem !important;
        text-align: center !important;
        max-width: 900px !important;
        margin: 0 auto !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 80px -20px rgba(0, 255, 163, 0.08) !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .uhp-cta-banner::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 3px !important;
        background: linear-gradient(90deg, transparent, var(--um-accent), transparent) !important;
    }

    /* ── CONTACT SECTION ── */
    .uhp-contact-grid {
        display: grid !important;
        grid-template-columns: 1fr 1.1fr !important;
        gap: 4rem !important;
        align-items: start !important;
    }

    .uhp-form {
        background: rgba(255, 255, 255, 0.97) !important;
        border-radius: 1.5rem !important;
        padding: 2.8rem !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    }

    .uhp-form h3 {
        font-size: 1.35rem !important;
        font-weight: 700 !important;
        color: #0F172A !important;
        margin: 0 0 1.5rem 0 !important;
    }

    .uhp-field {
        margin-bottom: 1.25rem !important;
    }

    .uhp-field label {
        display: block !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        color: #475569 !important;
        margin-bottom: 0.45rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.04em !important;
    }

    .uhp-field input,
    .uhp-field textarea {
        width: 100% !important;
        padding: 0.85rem 1.1rem !important;
        border: 1.5px solid #E2E8F0 !important;
        border-radius: 10px !important;
        font-size: 1rem !important;
        color: #0F172A !important;
        background: #F8FAFC !important;
        transition: border-color 0.3s, box-shadow 0.3s !important;
        outline: none !important;
        box-sizing: border-box !important;
    }

    .uhp-field input:focus,
    .uhp-field textarea:focus {
        border-color: #00C896 !important;
        box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.12) !important;
        background: #ffffff !important;
    }

    .uhp-field textarea {
        resize: vertical !important;
        min-height: 120px !important;
    }

    .uhp-submit {
        width: 100% !important;
        padding: 1rem !important;
        background: linear-gradient(135deg, #00C896, #00a876) !important;
        color: #020B1C !important;
        border: none !important;
        border-radius: 50px !important;
        font-size: 1rem !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        cursor: pointer !important;
        box-shadow: 0 8px 25px rgba(0, 200, 150, 0.3) !important;
        transition: transform 0.3s, box-shadow 0.3s !important;
    }

    .uhp-submit:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 14px 40px rgba(0, 200, 150, 0.45) !important;
    }

    .uhp-consent {
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
        font-size: 0.87rem !important;
        color: #64748B !important;
        line-height: 1.5 !important;
    }

    .uhp-consent input[type="checkbox"] {
        margin-top: 2px !important;
        accent-color: #00C896 !important;
        width: 16px !important;
        height: 16px !important;
        flex-shrink: 0 !important;
    }

    .uhp-consent a {
        color: #00C896 !important;
        text-decoration: underline !important;
    }

    .uhp-info-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 0 2.5rem 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
    }

    .uhp-info-list li a {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        text-decoration: none !important;
        color: var(--um-text-bright) !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        transition: color 0.3s !important;
    }

    .uhp-info-list li a:hover {
        color: var(--um-accent) !important;
    }

    .uhp-info-icon {
        width: 42px !important;
        height: 42px !important;
        border-radius: 10px !important;
        background: rgba(0, 200, 150, 0.1) !important;
        border: 1px solid rgba(0, 200, 150, 0.25) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    .uhp-info-icon svg {
        width: 20px !important;
        height: 20px !important;
        fill: #00C896 !important;
    }

    .uhp-map-wrap {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        line-height: 0;
    }

    .uhp-map-wrap iframe {
        width: 100%;
        height: 350px;
        border: 0;
        display: block;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {

        .uhp-card-grid,
        .uhp-svc-grid {
            grid-template-columns: 1fr !important;
        }

        .uhp-pillar-grid {
            grid-template-columns: 1fr !important;
        }

        .uhp-grid {
            grid-template-columns: 1fr !important;
            gap: 3rem !important;
        }

        .uhp-contact-grid {
            grid-template-columns: 1fr !important;
        }
    }

    @media (max-width: 768px) {
        .uhp-section {
            padding: 4rem 1.25rem !important;
        }

        .uhp-h2 {
            font-size: 2rem !important;
        }

        .uhp-card {
            padding: 2rem 1.5rem !important;
        }

        .uhp-eco-card {
            padding: 2rem 1.5rem !important;
        }

        .uhp-cta-banner {
            padding: 3rem 1.5rem !important;
        }
    }

    /* ── SCROLL REVEAL ── */
    .scroll-reveal {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
    }

    .scroll-reveal.scroll-pending {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }

    .scroll-reveal.scroll-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

/* ==========================================================================
   HOME PAGE STYLES - Block 4: Testimonials
   ========================================================================== */
            .um-godtier-wrapper {
                background: transparent;
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
                width: 100%;
            }

            .um-premium-item {
                background: rgba(15, 23, 42, 0.4);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                border: 1px solid rgba(255, 255, 255, 0.05);
                border-radius: 16px;
                padding: 1.5rem 1.75rem;
                display: flex;
                align-items: center;
                gap: 1.25rem;
                transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                cursor: pointer;
                position: relative;
                overflow: hidden;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            }

            .um-premium-item::before {
                content: '';
                position: absolute;
                inset: 0;
                border-radius: inherit;
                padding: 1px;
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
                -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
                mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
                -webkit-mask-composite: source-in, xor;
                mask-composite: exclude;
                pointer-events: none;
                transition: all 0.4s ease;
            }

            .um-premium-item:hover {
                transform: translateY(-5px);
                background: rgba(15, 23, 42, 0.7);
                border-color: rgba(0, 255, 163, 0.5);
                box-shadow: 0 15px 35px -10px rgba(0, 255, 163, 0.25), 0 5px 15px rgba(0, 0, 0, 0.5);
            }

            .um-premium-item:hover::before {
                background: linear-gradient(135deg, rgba(0, 255, 163, 0.5), transparent);
            }

            .um-premium-item-icon {
                width: 52px;
                height: 52px;
                border-radius: 14px;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                position: relative;
            }

            .um-premium-item-icon svg {
                width: 24px;
                height: 24px;
                transition: all 0.4s ease;
            }

            .um-icon-infra {
                background: rgba(0, 255, 163, 0.1);
                border: 1px solid rgba(0, 255, 163, 0.25);
            }

            .um-icon-infra svg {
                stroke: #00FFA3;
            }

            .um-icon-leads {
                background: rgba(0, 200, 255, 0.1);
                border: 1px solid rgba(0, 200, 255, 0.25);
            }

            .um-icon-leads svg {
                stroke: #00C8FF;
            }

            .um-icon-auto {
                background: rgba(123, 97, 255, 0.1);
                border: 1px solid rgba(123, 97, 255, 0.25);
            }

            .um-icon-auto svg {
                stroke: #7B61FF;
            }

            .um-premium-item:hover .um-premium-item-icon {
                transform: scale(1.1) rotate(2deg);
                border-color: rgba(0, 255, 163, 0.6);
                box-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
            }

            .um-premium-item:hover .um-premium-item-icon svg {
                stroke: #00FFA3;
                filter: drop-shadow(0 0 5px rgba(0, 255, 163, 0.5));
            }

            .um-premium-content {
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .um-premium-title {
                font-family: inherit;
                font-weight: 700;
                color: #ffffff;
                font-size: 1.15rem;
                margin-bottom: 0.2rem;
                transition: color 0.4s ease;
            }

            .um-premium-item:hover .um-premium-title {
                color: #00FFA3;
            }

            .um-premium-desc {
                font-family: inherit;
                color: rgba(226, 232, 240, 0.7);
                font-size: 0.95rem;
                transition: opacity 0.4s ease;
            }

            .um-premium-item:hover .um-premium-desc {
                color: rgba(226, 232, 240, 0.95);
            }

            .um-neon-text {
                color: #00FFA3 !important;
                font-weight: 700 !important;
                text-shadow: 0 0 15px rgba(0, 255, 163, 0.2);
            }

            .um-soft-gray {
                color: #E2E8F0 !important;
            }

            .um-premium-cta {
                transition: all 0.4s ease;
            }

            .um-premium-cta:hover {
                transform: translateY(-3px);
                box-shadow: 0 10px 30px -10px rgba(0, 255, 163, 0.4) !important;
            }

            @media (max-width: 768px) {
                .um-premium-item {
                    padding: 1.25rem;
                    gap: 1rem;
                }

                .um-premium-item-icon {
                    width: 44px;
                    height: 44px;
                }

                .um-premium-item-icon svg {
                    width: 20px;
                    height: 20px;
                }

                .um-premium-title {
                    font-size: 1.05rem;
                }

                .um-premium-desc {
                    font-size: 0.85rem;
                }
            }

            /* ── GLOBAL CARD WRAPPER ── */
            .um-godtier-section-card {
                background: #020B1C;
                background-image: radial-gradient(circle at 100% 0%, rgba(0, 255, 163, 0.15) 0%, transparent 60%),
                    radial-gradient(circle at 0% 100%, rgba(0, 200, 255, 0.05) 0%, transparent 50%);
                border-radius: 24px;
                padding: 4.5rem 5rem;
                box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.05);
                position: relative;
                overflow: hidden;
                width: 100%;
                box-sizing: border-box;
            }

            /* FORCE OVERRIDE SCROLL COLOR INVERSION FOR THIS DARK CARD */
            .um-godtier-section-card .uhp-h2 {
                color: #ffffff !important;
            }

            .um-godtier-section-card .uhp-p {
                color: rgba(226, 232, 240, 0.95) !important;
            }

            .um-godtier-section-card .uhp-p strong {
                color: #ffffff !important;
            }

            .um-godtier-section-card .uhp-p strong.um-neon-text {
                color: #00FFA3 !important;
            }

            @media (max-width: 1024px) {
                .um-godtier-section-card {
                    padding: 3.5rem 3rem;
                }
            }

            @media (max-width: 768px) {
                .um-godtier-section-card {
                    padding: 2.5rem 1.5rem;
                    border-radius: 20px;
                }
            }

/* ==========================================================================
   HOME PAGE STYLES - Block 5: Why Ulises
   ========================================================================== */
            /* ── SECTION AMBIENT SHELL ── */
            .um-svc-section-shell {
                position: relative;
            }

            /* Radial ambient glow top-center behind the heading */
            .um-svc-section-shell::before {
                content: '';
                position: absolute;
                top: -60px;
                left: 50%;
                transform: translateX(-50%);
                width: 600px;
                height: 300px;
                background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(0, 255, 163, 0.06) 0%, transparent 70%);
                pointer-events: none;
                z-index: 0;
            }

            /* ── PREMIUM SECTION WRAP ── */
            .um-svc-godtier-wrap {
                background: rgba(8, 15, 30, 0.5);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                border: 1px solid rgba(255, 255, 255, 0.05);
                border-radius: 28px;
                padding: 4rem 3.5rem 4.5rem;
                position: relative;
                z-index: 1;
                overflow: hidden;
                box-shadow:
                    0 30px 80px -20px rgba(0, 0, 0, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.06);
            }

            /* Neon corner accent — top-right */
            .um-svc-godtier-wrap::before {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 380px;
                height: 380px;
                background: radial-gradient(circle at 100% 0%, rgba(0, 255, 163, 0.06) 0%, transparent 60%);
                pointer-events: none;
                z-index: 0;
            }

            /* Neon corner accent — bottom-left */
            .um-svc-godtier-wrap::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 300px;
                height: 300px;
                background: radial-gradient(circle at 0% 100%, rgba(0, 200, 255, 0.04) 0%, transparent 60%);
                pointer-events: none;
                z-index: 0;
            }

            .um-svc-godtier-wrap>* {
                position: relative;
                z-index: 1;
            }

            /* ── HEADING LABEL (eyebrow) ── */
            .um-svc-eyebrow {
                display: inline-flex;
                align-items: center;
                gap: 0.6rem;
                background: rgba(0, 255, 163, 0.07);
                border: 1px solid rgba(0, 255, 163, 0.18);
                border-radius: 50px;
                padding: 0.4rem 1.1rem;
                font-size: 0.72rem;
                font-weight: 700;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                color: #00FFA3;
                margin-bottom: 1.5rem;
            }

            .um-svc-eyebrow::before {
                content: '';
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: #00FFA3;
                box-shadow: 0 0 8px rgba(0, 255, 163, 0.7);
                animation: umSvcDot 2s ease-in-out infinite;
            }

            @keyframes umSvcDot {

                0%,
                100% {
                    transform: scale(1);
                    opacity: 1;
                }

                50% {
                    transform: scale(1.4);
                    opacity: 0.6;
                }
            }

            /* ── RESPONSIVE ── */
            @media (max-width: 1024px) {
                .uhp-svc-grid {
                    grid-template-columns: 1fr !important;
                }

                .um-svc-godtier-wrap {
                    padding: 3rem 2.5rem 3.5rem;
                    border-radius: 20px;
                }
            }

            @media (max-width: 768px) {
                .uhp-svc-grid {
                    gap: 1.25rem !important;
                }

                .um-svc-godtier-wrap {
                    padding: 2.25rem 1.5rem 2.75rem;
                    border-radius: 16px;
                }

                .uhp-svc-card .uhp-svc-img {
                    height: 180px !important;
                }
            }

            @media (max-width: 480px) {
                .uhp-svc-card h3 {
                    font-size: 1.1rem !important;
                }

                .uhp-svc-card p {
                    font-size: 0.9rem !important;
                }
            }

/* ==========================================================================
   HOME PAGE STYLES - Block 6: Industries
   ========================================================================== */
            /* ── TRUST SECTION SHELL ── */
            .um-trust-section-shell {
                position: relative;
            }

            /* Ambient radial glow behind the whole section */
            .um-trust-section-shell::before {
                content: '';
                position: absolute;
                top: 50%;
                left: 30%;
                transform: translate(-50%, -50%);
                width: 700px;
                height: 500px;
                background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(0, 255, 163, 0.04) 0%, transparent 70%);
                pointer-events: none;
                z-index: 0;
            }

            /* ── MAIN GOD TIER WRAPPER ── */
            .um-trust-godtier-wrap {
                background: rgba(8, 15, 30, 0.52);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.06);
                border-radius: 28px;
                padding: 4rem 4.5rem;
                position: relative;
                z-index: 1;
                overflow: hidden;
                box-shadow:
                    0 30px 80px -20px rgba(0, 0, 0, 0.55),
                    inset 0 1px 0 rgba(255, 255, 255, 0.07);
                display: grid;
                grid-template-columns: 1.2fr 0.8fr;
                gap: 4rem;
                align-items: center;
            }

            /* Top-left green ambient */
            .um-trust-godtier-wrap::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 420px;
                height: 420px;
                background: radial-gradient(circle at 0% 0%, rgba(0, 255, 163, 0.05) 0%, transparent 55%);
                pointer-events: none;
                z-index: 0;
            }

            /* Bottom-right cyan ambient */
            .um-trust-godtier-wrap::after {
                content: '';
                position: absolute;
                bottom: 0;
                right: 0;
                width: 350px;
                height: 350px;
                background: radial-gradient(circle at 100% 100%, rgba(0, 200, 255, 0.04) 0%, transparent 55%);
                pointer-events: none;
                z-index: 0;
            }

            .um-trust-godtier-wrap>* {
                position: relative;
                z-index: 1;
            }

            /* ── LEFT CONTENT ── */
            .um-trust-content {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

            /* Eyebrow pill */
            .um-trust-eyebrow {
                display: inline-flex;
                align-items: center;
                gap: 0.6rem;
                background: rgba(0, 255, 163, 0.07);
                border: 1px solid rgba(0, 255, 163, 0.2);
                border-radius: 50px;
                padding: 0.4rem 1.1rem;
                font-size: 0.72rem;
                font-weight: 700;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                color: #00FFA3;
                margin-bottom: 1.75rem;
            }

            .um-trust-eyebrow::before {
                content: '';
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: #00FFA3;
                box-shadow: 0 0 8px rgba(0, 255, 163, 0.8);
                animation: umTrustDot 2.2s ease-in-out infinite;
            }

            @keyframes umTrustDot {

                0%,
                100% {
                    transform: scale(1);
                    opacity: 1;
                }

                50% {
                    transform: scale(1.5);
                    opacity: 0.55;
                }
            }

            /* Highlight line between heading and paragraph */
            .um-trust-divider {
                width: 48px;
                height: 2px;
                background: linear-gradient(90deg, #00FFA3, transparent);
                border-radius: 2px;
                margin: 1.5rem 0;
            }

            /* ── RIGHT — CREDENTIAL CARD ── */
            .um-trust-credential-card {
                background: rgba(15, 23, 42, 0.6);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                border: 1px solid rgba(255, 255, 255, 0.07);
                border-radius: 20px;
                padding: 2.5rem 2rem;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 2rem;
                box-shadow:
                    0 15px 50px rgba(0, 0, 0, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.07);
                transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                position: relative;
                overflow: hidden;
            }

            /* Top neon edge line */
            .um-trust-credential-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.5), transparent);
                opacity: 0.6;
                transition: opacity 0.4s ease;
            }

            .um-trust-credential-card:hover {
                border-color: rgba(0, 255, 163, 0.2);
                box-shadow:
                    0 20px 60px rgba(0, 0, 0, 0.5),
                    0 0 40px -15px rgba(0, 255, 163, 0.12),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
                transform: translateY(-4px);
            }

            .um-trust-credential-card:hover::before {
                opacity: 1;
            }

            /* Logo inside credential card */
            .um-trust-logo {
                max-width: 180px;
                width: 100%;
                filter: brightness(0) invert(1);
                opacity: 0.85;
                transition: opacity 0.4s ease;
            }

            .um-trust-credential-card:hover .um-trust-logo {
                opacity: 1;
            }

            /* Stats row */
            .um-trust-stats {
                display: flex;
                gap: 1.5rem;
                width: 100%;
                justify-content: center;
            }

            .um-trust-stat {
                text-align: center;
                display: flex;
                flex-direction: column;
                gap: 0.2rem;
                flex: 1;
                padding: 0.75rem;
                background: rgba(0, 255, 163, 0.04);
                border: 1px solid rgba(0, 255, 163, 0.1);
                border-radius: 12px;
                transition: all 0.4s ease;
            }

            .um-trust-stat:hover {
                background: rgba(0, 255, 163, 0.07);
                border-color: rgba(0, 255, 163, 0.25);
            }

            .um-trust-stat-value {
                font-size: 1.55rem;
                font-weight: 800;
                background: linear-gradient(135deg, #ffffff 0%, #00FFA3 50%, #00a86b 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                line-height: 1;
                letter-spacing: -0.02em;
            }

            .um-trust-stat-label {
                font-size: 0.65rem;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.45);
                text-transform: uppercase;
                letter-spacing: 0.1em;
                line-height: 1.3;
            }

            /* Badge pills */
            .um-trust-badges {
                display: flex;
                gap: 0.75rem;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
            }

            .um-trust-badge {
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                background: rgba(0, 255, 163, 0.07);
                border: 1px solid rgba(0, 255, 163, 0.22);
                border-radius: 50px;
                padding: 0.55rem 1.2rem;
                font-size: 0.85rem;
                font-weight: 700;
                color: #00FFA3;
                transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
                cursor: default;
                white-space: nowrap;
            }

            .um-trust-badge::before {
                content: '';
                width: 7px;
                height: 7px;
                border-radius: 50%;
                background: #00FFA3;
                box-shadow: 0 0 6px rgba(0, 255, 163, 0.7);
                flex-shrink: 0;
            }

            .um-trust-badge:hover {
                background: rgba(0, 255, 163, 0.14);
                border-color: rgba(0, 255, 163, 0.5);
                transform: translateY(-2px);
                box-shadow: 0 8px 24px -8px rgba(0, 255, 163, 0.25);
                color: #ffffff;
            }

            /* ── RESPONSIVE ── */
            @media (max-width: 1024px) {
                .um-trust-godtier-wrap {
                    grid-template-columns: 1fr;
                    gap: 3rem;
                    padding: 3rem 2.5rem;
                    border-radius: 20px;
                }

                .um-trust-content {
                    align-items: center;
                    text-align: center;
                }

                .um-trust-content .uhp-h2 {
                    text-align: center !important;
                }

                .um-trust-content .uhp-p {
                    text-align: center !important;
                    margin-left: auto !important;
                    margin-right: auto !important;
                }

                .um-trust-divider {
                    margin: 1.5rem auto;
                }
            }

            @media (max-width: 768px) {
                .um-trust-godtier-wrap {
                    padding: 2.25rem 1.5rem;
                    border-radius: 16px;
                }

                .um-trust-credential-card {
                    padding: 2rem 1.5rem;
                }

                .um-trust-stats {
                    gap: 0.75rem;
                }

                .um-trust-stat-value {
                    font-size: 1.3rem;
                }
            }

/* ==========================================================================
   HOME PAGE STYLES - Block 7: Blog Feed
   ========================================================================== */
            .um-marquee-shell {
                position: relative;
                overflow: hidden;
            }

            .um-marquee-shell::before {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 800px;
                height: 400px;
                background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0, 255, 163, 0.04) 0%, transparent 70%);
                pointer-events: none;
                z-index: 0;
            }

            .um-marquee-header-wrap {
                background: rgba(8, 15, 30, 0.45);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.06);
                border-radius: 24px;
                padding: 3.5rem 3.5rem 3rem;
                position: relative;
                z-index: 1;
                overflow: hidden;
                text-align: center;
                box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.07);
            }

            .um-marquee-header-wrap::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.4), transparent);
                opacity: 0.7;
            }

            .um-marquee-eyebrow {
                display: inline-flex;
                align-items: center;
                gap: 0.6rem;
                background: rgba(0, 255, 163, 0.07);
                border: 1px solid rgba(0, 255, 163, 0.2);
                border-radius: 50px;
                padding: 0.4rem 1.1rem;
                font-size: 0.72rem;
                font-weight: 700;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                color: #00FFA3;
                margin-bottom: 1.5rem;
            }

            .um-marquee-eyebrow::before {
                content: '';
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: #00FFA3;
                box-shadow: 0 0 8px rgba(0, 255, 163, 0.8);
                animation: umMarqueeDot 2.4s ease-in-out infinite;
            }

            @keyframes umMarqueeDot {

                0%,
                100% {
                    transform: scale(1);
                    opacity: 1;
                }

                50% {
                    transform: scale(1.5);
                    opacity: 0.5;
                }
            }

            .um-marquee-header-wrap .uhp-h2 {
                text-align: center !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }

            .um-marquee-header-wrap .uhp-p {
                text-align: center !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }

            .um-marquee-strip {
                margin-top: 2.5rem;
                position: relative;
                z-index: 1;
            }

            .um-marquee-track-bg {
                background: rgba(8, 15, 30, 0.4);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                border: 1px solid rgba(255, 255, 255, 0.05);
                border-radius: 16px;
                padding: 1.5rem 0;
                overflow: hidden;
                position: relative;
                -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
                mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
            }

            .um-marquee-track-bg::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.2), transparent);
                opacity: 0.8;
            }

            .um-marquee-track-bg::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.1), transparent);
                opacity: 0.6;
            }

            .um-logos-row-1 {
                display: flex;
                width: max-content;
                animation: umScrollLeft 35s linear infinite;
                gap: 3.5rem;
                align-items: center;
                padding: 0.25rem 1.5rem;
            }

            .um-logos-row-2 {
                display: flex;
                width: max-content;
                animation: umScrollRight 40s linear infinite;
                gap: 3.5rem;
                align-items: center;
                padding: 0.75rem 1.5rem 0.25rem;
                margin-top: 0.5rem;
            }

            @keyframes umScrollLeft {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(-50%);
                }
            }

            @keyframes umScrollRight {
                0% {
                    transform: translateX(-50%);
                }

                100% {
                    transform: translateX(0);
                }
            }

            .um-marquee-track-bg:hover .um-logos-row-1,
            .um-marquee-track-bg:hover .um-logos-row-2 {
                animation-play-state: paused;
            }

            .um-logos-row-1 img,
            .um-logos-row-2 img {
                height: 44px;
                width: auto;
                object-fit: contain;
                flex-shrink: 0;
                filter: grayscale(1) opacity(0.45) brightness(1.4);
                transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s ease;
            }

            .um-logos-row-1 img:hover,
            .um-logos-row-2 img:hover {
                filter: grayscale(0) opacity(1) brightness(1);
                transform: scale(1.08);
            }

            @media (max-width: 768px) {
                .um-marquee-header-wrap {
                    padding: 2.5rem 1.5rem 2rem;
                    border-radius: 16px;
                }

                .um-logos-row-1 img,
                .um-logos-row-2 img {
                    height: 34px;
                }

                .um-logos-row-1,
                .um-logos-row-2 {
                    gap: 2.5rem;
                }
            }

/* ==========================================================================
   HOME PAGE STYLES - Block 8: Scroll Effects
   ========================================================================== */
            /* ── CONTACT GOD TIER ── */
            .um-contact-wrap {
                margin-top: 3.5rem;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            @media (max-width: 992px) {
                .um-contact-wrap {
                    grid-template-columns: 1fr;
                }
            }

            /* Basic Glass Card */
            .um-contact-card {
                background: rgba(8, 15, 30, 0.45);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border: 1px solid rgba(255, 255, 255, 0.06);
                border-radius: 20px;
                padding: 2.5rem;
                display: flex;
                flex-direction: column;
                justify-content: center;
                position: relative;
                overflow: hidden;
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
                transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            }

            .um-contact-card:hover {
                border-color: rgba(0, 255, 163, 0.15);
                transform: translateY(-4px);
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px -10px rgba(0, 255, 163, 0.1);
            }

            /* Ambient top glow in cards */
            .um-contact-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.3), transparent);
                opacity: 0.5;
                transition: opacity 0.4s;
            }

            .um-contact-card:hover::before {
                opacity: 1;
            }

            /* Contact Grid Left Column */
            .um-contact-left {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
            }

            /* Phone layout */
            .um-phone-row {
                display: flex;
                align-items: flex-end;
                justify-content: space-between;
                gap: 1rem;
                flex-wrap: wrap;
                margin-bottom: 2rem;
            }

            .um-phone-number {
                font-size: clamp(2.5rem, 4vw, 3.5rem);
                font-weight: 800;
                letter-spacing: -0.03em;
                color: #ffffff;
                line-height: 1;
                text-decoration: none;
                transition: color 0.3s;
            }

            .um-contact-card:hover .um-phone-number {
                color: #00FFA3;
                text-shadow: 0 0 20px rgba(0, 255, 163, 0.4);
            }

            .um-phone-schedule {
                font-size: 0.75rem;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.5);
                letter-spacing: 0.1em;
                text-transform: uppercase;
                margin-bottom: 0.5rem;
                display: block;
            }

            .um-badge-available {
                display: inline-flex;
                align-items: center;
                gap: 0.6rem;
                background: rgba(0, 255, 163, 0.05);
                border: 1px solid rgba(0, 255, 163, 0.15);
                padding: 0.5rem 1rem;
                border-radius: 50px;
                font-size: 0.85rem;
                font-weight: 600;
                color: #e2e8f0;
                width: fit-content;
                margin-top: auto;
            }

            .um-badge-available::before {
                content: '';
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #00FFA3;
                box-shadow: 0 0 10px #00FFA3;
                animation: umPulseDot 2s infinite;
            }

            @keyframes umPulseDot {

                0%,
                100% {
                    opacity: 1;
                }

                50% {
                    opacity: 0.4;
                }
            }

            /* Email Layout */
            .um-email-title {
                font-size: 1.4rem;
                font-weight: 700;
                color: #ffffff;
                margin-bottom: 1.2rem;
            }

            .um-email-link {
                display: inline-flex;
                align-items: center;
                gap: 0.75rem;
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(255, 255, 255, 0.08);
                padding: 1.2rem 1.8rem;
                border-radius: 12px;
                font-weight: 600;
                color: #E2E8F0;
                text-decoration: none;
                transition: all 0.3s ease;
                font-size: 1.05rem;
                width: fit-content;
            }

            .um-email-link:hover {
                background: rgba(0, 255, 163, 0.05);
                border-color: rgba(0, 255, 163, 0.3);
                color: #00FFA3;
                transform: translateX(4px);
            }

            /* Map Box */
            .um-map-card {
                padding: 0.75rem;
            }

            .um-map-wrap-new {
                width: 100%;
                height: 100%;
                min-height: 480px;
                border-radius: 16px;
                overflow: hidden;
                position: relative;
                filter: grayscale(0.8) contrast(1.1) opacity(0.8) hue-rotate(10deg);
                transition: filter 0.5s ease;
            }

            .um-map-card:hover .um-map-wrap-new {
                filter: grayscale(0) contrast(1) opacity(1);
            }

            .um-map-wrap-new iframe {
                width: 100%;
                height: 100%;
                border: none;
                position: absolute;
                top: 0;
                left: 0;
            }

            .um-address-info {
                position: absolute;
                bottom: 1.5rem;
                left: 1.5rem;
                right: 1.5rem;
                background: rgba(8, 15, 30, 0.85);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                padding: 1.25rem 1.5rem;
                border-radius: 12px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                display: flex;
                align-items: center;
                gap: 1.2rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                pointer-events: none;
            }

            .um-address-icon {
                width: 44px;
                height: 44px;
                border-radius: 10px;
                background: rgba(0, 255, 163, 0.05);
                display: flex;
                align-items: center;
                justify-content: center;
                color: #00FFA3;
                flex-shrink: 0;
                border: 1px solid rgba(0, 255, 163, 0.15);
            }

            .um-address-text {
                font-size: 0.95rem;
                color: #E2E8F0;
                font-weight: 500;
                line-height: 1.5;
            }

/* ==========================================================================
   HOME PAGE STYLES - Block 9: FAQ Section
   ========================================================================== */
            /* ── FAQ SECTION ────────────────────────────────────── */
            #um-faq-section {
                --faq-bg: #020B1C;
                --faq-accent: #00FFA3;
                --faq-accent-dim: rgba(0, 255, 163, 0.12);
                --faq-border: rgba(255, 255, 255, 0.06);
                --faq-border-hover: rgba(0, 255, 163, 0.3);
                --faq-text: rgba(255, 255, 255, 0.75);
                --faq-text-dim: rgba(255, 255, 255, 0.45);
                background: var(--faq-bg);
                font-family: 'Outfit', sans-serif;
                padding: 100px 0;
                position: relative;
                overflow: hidden;
            }

            /* desktop breakout */
            @media (min-width: 1025px) {
                #um-faq-section {
                    width: 100vw;
                    max-width: none;
                    margin-left: calc(50% - 50vw);
                    margin-right: calc(50% - 50vw);
                }
            }

            @media (max-width: 768px) {
                #um-faq-section {
                    padding: 70px 0;
                }
            }

            /* subtle grid */
            #um-faq-section::before {
                content: '';
                position: absolute;
                inset: 0;
                background-image:
                    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
                background-size: 80px 80px;
                mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 85%);
                -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 85%);
                pointer-events: none;
                z-index: 0;
            }

            /* ambient glow top-center */
            #um-faq-section::after {
                content: '';
                position: absolute;
                top: -120px;
                left: 50%;
                transform: translateX(-50%);
                width: 500px;
                height: 300px;
                background: radial-gradient(ellipse, rgba(0, 255, 163, 0.06) 0%, transparent 70%);
                pointer-events: none;
                z-index: 0;
            }

            .um-faq-inner {
                max-width: 860px;
                width: 100%;
                margin: 0 auto;
                padding: 0 2rem;
                position: relative;
                z-index: 1;
            }

            .um-faq-eyebrow {
                font-family: 'Nothing You Could Do', cursive;
                color: var(--faq-accent);
                font-size: 1.4rem;
                display: block;
                text-align: center;
                margin-bottom: 1rem;
                text-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
            }

            .um-faq-heading {
                font-size: clamp(1.8rem, 4vw, 3rem);
                font-weight: 800;
                color: #ffffff;
                text-align: center;
                text-transform: uppercase;
                letter-spacing: -0.03em;
                line-height: 1.1;
                margin: 0 0 3.5rem 0;
                background: linear-gradient(175deg, #ffffff 50%, rgba(255, 255, 255, 0.3));
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .um-faq-heading span {
                background: linear-gradient(135deg, #ffffff 0%, #00FFA3 40%, #00a86b 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            /* ── ACCORDION ITEM ── */
            .um-faq-item {
                border: 1px solid var(--faq-border);
                border-radius: 16px;
                margin-bottom: 1rem;
                background: rgba(6, 19, 43, 0.45);
                backdrop-filter: blur(20px) saturate(140%);
                -webkit-backdrop-filter: blur(20px) saturate(140%);
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
                transition: border-color 0.35s ease, box-shadow 0.35s ease;
                overflow: hidden;
            }

            .um-faq-item:hover {
                border-color: var(--faq-border-hover);
                box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 163, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
            }

            .um-faq-item[open] {
                border-color: rgba(0, 255, 163, 0.25);
                box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 255, 163, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
            }

            /* ── SUMMARY / TRIGGER ── */
            .um-faq-item summary {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 1rem;
                padding: 1.6rem 2rem;
                cursor: pointer;
                list-style: none;
                user-select: none;
                -webkit-user-select: none;
            }

            .um-faq-item summary::-webkit-details-marker {
                display: none;
            }

            .um-faq-question {
                font-size: 1.05rem;
                font-weight: 700;
                color: #ffffff;
                line-height: 1.45;
                flex: 1;
                transition: color 0.3s;
            }

            .um-faq-item:hover .um-faq-question,
            .um-faq-item[open] .um-faq-question {
                color: var(--faq-accent);
            }

            .um-faq-icon {
                flex-shrink: 0;
                width: 32px;
                height: 32px;
                border-radius: 50%;
                border: 1px solid var(--faq-border);
                background: rgba(255, 255, 255, 0.03);
                display: flex;
                align-items: center;
                justify-content: center;
                transition: background 0.35s, border-color 0.35s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            }

            .um-faq-item[open] .um-faq-icon {
                background: var(--faq-accent-dim);
                border-color: rgba(0, 255, 163, 0.4);
                transform: rotate(45deg);
            }

            .um-faq-icon svg {
                width: 14px;
                height: 14px;
                stroke: rgba(255, 255, 255, 0.5);
                stroke-width: 2.5;
                fill: none;
                transition: stroke 0.3s;
            }

            .um-faq-item[open] .um-faq-icon svg,
            .um-faq-item:hover .um-faq-icon svg {
                stroke: var(--faq-accent);
            }

            /* ── ANSWER BODY ── */
            .um-faq-body {
                padding: 0 2rem 1.8rem 2rem;
                border-top: 1px solid rgba(255, 255, 255, 0.04);
            }

            .um-faq-answer {
                font-size: 0.975rem;
                line-height: 1.8;
                color: var(--faq-text);
                padding-top: 1.2rem;
            }

            .um-faq-answer strong {
                color: #ffffff;
                font-weight: 600;
            }

            /* open/close animation via max-height trick */
            details.um-faq-item .um-faq-body {
                animation: umFaqOpen 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
            }

            @keyframes umFaqOpen {
                from {
                    opacity: 0;
                    transform: translateY(-8px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            @media (max-width: 600px) {
                .um-faq-item summary {
                    padding: 1.25rem 1.25rem;
                }

                .um-faq-body {
                    padding: 0 1.25rem 1.5rem 1.25rem;
                }

                .um-faq-question {
                    font-size: 0.95rem;
                }

                .um-faq-answer {
                    font-size: 0.9rem;
                }
            }
