/* =========================================
   Easypass WP - THE MASTER RESTORATION
   Estética Web3 / Glassmorphism / 3D Elevation
   ========================================= */

/* (Variables moved to ep-theme.css) */

/* =========================================
   1. Header (Alineación Derecha Premium)
   ========================================= */
.ep-site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(var(--ep-bg-card-rgb), 0.8);
    /* Requires RGB vars or fallback */
    background: var(--ep-bg-card);
    /* Fallback/Base */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ep-border-color);
    padding: 20px 0; /* Restored to original */
    transition: background 0.3s ease, border-color 0.3s ease;
}

.ep-home-content {
    padding: 40px 16px 16px 16px;
}

/* Fix for WP Admin Bar */
.admin-bar .ep-site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .ep-site-header {
        top: 46px;
    }
}

/* For better glass effect */
[data-theme="dark"] .ep-site-header {
    background: rgba(3, 7, 18, 0.8);
}

[data-theme="light"] .ep-site-header {
    background: rgba(255, 255, 255, 0.85);
}


.ep-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.ep-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ep-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ep-nav-link,
.ep-nav-list li a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ep-text-muted);
    transition: color 0.2s;
}

.ep-nav-link:hover,
.ep-nav-list li a:hover,
.ep-nav-list li.current-menu-item>a {
    color: var(--ep-brand);
}

.ep-header-actions {
    display: flex;
    align-items: center;
    gap: 10px; /* Reduced from 15px */
}

/* Button Variants */
.ep-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px; /* Slightly reduced */
    border-radius: 10px; /* More modern than 12px */
    font-weight: 700;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.2;
    border: 1px solid transparent;
}

.ep-btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: 8px;
}

.ep-btn-primary,
#place_order {
    background: linear-gradient(135deg, var(--ep-brand), #2563eb) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}

.ep-btn-accent {
    background: linear-gradient(135deg, var(--ep-accent), #7c3aed) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3) !important;
}

.ep-btn-primary:hover,
#place_order:hover,
.ep-btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4) !important;
    filter: brightness(1.1);
}

.ep-btn-accent:hover {
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4) !important;
}

.ep-btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--ep-border-color);
    color: var(--ep-text-main);
}

.ep-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--ep-brand);
}

.ep-theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--ep-text-muted);
    transition: color 0.2s;
    padding: 5px;
}

.ep-theme-toggle:hover {
    color: var(--ep-text-main);
}

/* Mobile Toggle - Hidden on Desktop */
.ep-mobile-toggle {
    display: none;
    /* Hide by default */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ep-text-main);
    cursor: pointer;
}

/* Logo */
.ep-logo a {
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ep-text-main);
}

.ep-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--ep-brand), var(--ep-accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    color: #fff;
}

/* Mobile Responsive Header */
@media (max-width: 768px) {
    .ep-header-inner {
        padding: 0 26px;
    }

    .ep-mobile-toggle {
        display: block;
        /* Show on mobile */
        z-index: 1002;
        /* Above the menu */
        position: relative;
    }

    /* Full Screen Overlay */
    .ep-nav-wrapper {
        display: none;
        /* Hidden by default */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        /* Center Vertically */
        align-items: center;
        /* Center Horizontally */

        background: rgba(var(--ep-bg-card-rgb), 0.95);
        /* Deep frosted bg */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        padding: 40px;
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    /* Active State (Shown) */
    .ep-nav-wrapper.ep-active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    /* Typography & Spacing */
    .ep-nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 40px;
        width: 100%;
    }

    .ep-nav-link,
    .ep-nav-list li a {
        font-size: 1.8rem;
        /* Large text */
        font-weight: 800;
        color: var(--ep-text-main);
        /* Brighter text */
        letter-spacing: -0.02em;
    }

    .ep-nav-link:hover,
    .ep-nav-list li a:hover {
        color: var(--ep-brand);
        transform: scale(1.05);
    }

    /* Actions (Login/Toggle) */
    .ep-header-actions {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .ep-header-actions .ep-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 1.1rem;
    }
}

/* --- Swiper / Netflix Style Slider --- */
.ep-featured-slider,
.ep-category-slider {
    padding: 40px 0 60px 0 !important;
    /* Vertical padding for hover */
    overflow: hidden !important;
    position: relative;
    /* Use margin to align with container text, but keep overflow hidden working */
    margin: -20px 0;
}

/* Ensure slides stretch to fill height */
.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
    transition: transform 0.3s ease;
    display: flex;
    padding: 0;
    /* Remove padding to let Swiper handle 16px gap exactly */
}

/* Force card to take full height of the slide */
.ep-catalog-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
    box-sizing: border-box;
}

.ep-card-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* UNIFORMITY FIX: Limit Title to 2 lines always */
.ep-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.4em;
    line-height: 1.2;
    margin-bottom: 15px;
}

.ep-card-btn {
    margin-top: auto;
    align-self: flex-start;
    width: 100%;
    text-align: center;
}

.swiper-slide:hover {
    z-index: 10;
}

/* Custom Arrows - Positioned Inside to avoid clipping */
.ep-swiper-next,
.ep-swiper-prev {
    color: #fff !important;
    background: rgba(var(--ep-brand-rgb, 59, 130, 246), 0.7);
    backdrop-filter: blur(8px);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 20;
}

.ep-swiper-next:after,
.ep-swiper-prev:after {
    font-size: 20px !important;
    font-weight: 900;
}

.ep-swiper-next:hover,
.ep-swiper-prev:hover {
    background: var(--ep-brand);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 0 20px var(--ep-brand);
}

.ep-swiper-next {
    right: 10px !important;
}

.ep-swiper-prev {
    left: 10px !important;
}

/* Hide arrows on mobile for better touch experience */
@media (max-width: 768px) {

    .ep-swiper-next,
    .ep-swiper-prev {
        display: none !important;
    }

    .ep-featured-slider,
    .ep-category-slider {
        padding-bottom: 30px !important;
    }
}

/* Section Header Fix */
.ep-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.ep-section-title {
    margin-bottom: 0 !important;
    font-size: 1.8rem;
    font-weight: 800;
}

/* --- Home Hero (The "Wow" Effect) --- */
.ep-home-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    /* Apply the rich gradient here */
    background: radial-gradient(circle at 50% 30%, #1e1b4b 0%, var(--ep-bg-body) 70%);
    text-align: center;
}

.ep-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.6;
    mix-blend-mode: overlay;
}

.ep-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--ep-bg-body) 10%, transparent 100%);
}

.ep-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.ep-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #ffffff 30%, var(--ep-brand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.ep-hero-description {
    color: var(--ep-text-muted);
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
    max-width: 600px;
}

.ep-hero-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    color: var(--ep-text-muted);
    font-weight: 500;
}

.ep-badge-hero {
    background: rgba(var(--ep-brand-rgb, 59, 130, 246), 0.1);
    color: var(--ep-brand);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(var(--ep-brand-rgb, 59, 130, 246), 0.2);
}

/* =========================================
   3. Home Cards (3D Elevation & Premium Shadows)
   ========================================= */
.ep-card-home {
    background: var(--ep-bg-card) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    min-height: 440px;
}

.ep-card-home:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--ep-brand) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.ep-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ep-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 8px 14px;
    text-align: center;
}

.ep-date-day {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.ep-date-month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--ep-brand);
    font-weight: 700;
}

.ep-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ep-card-title {
    font-size: 1.4rem;
    color: #fff !important;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.ep-card-action {
    margin-top: auto;
    padding-top: 20px;
    color: var(--ep-brand) !important;
    font-weight: 700;
    font-size: 1rem;
}

/* Grid spacing for catalog pages */
.ep-events-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    padding: 20px 0;
}

/* =========================================
   4. Event Page (Immersive Restoration)
   ========================================= */
.ep-single-event-wrapper {
    background: radial-gradient(circle at 50% 0%, #1e1b4b 0%, var(--ep-bg-body) 60%) !important;
    padding-bottom: 100px;
}

.ep-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    margin-bottom: 60px;
    background-position: center;
}

@media (max-width: 768px) {
    .ep-hero {
        border-radius: 0 0 16px 16px;
        align-items: center; /* Fix: Center Vertically */
        justify-content: center; /* Fix: Center Horizontally */
        padding-top: 80px; /* Offset for Sticky Header on Mobile */
        margin-bottom: 24px;
    }

    /* Adjust for Admin Bar on Mobile if active */
    .admin-bar .ep-hero {
        padding-top: 126px; /* 80px + 46px WP Admin Bar */
    }

    .ep-hero-content {
        padding: 20px; /* Reduced vertical since container has padding-top */
        text-align: center;
        width: 100%;
    }

    .ep-hero-title {
        font-size: 2.2rem; /* Fix: Smaller Title */
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .ep-hero-meta {
        justify-content: center;
    }
}

.ep-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--ep-bg-body) 0%, rgba(3, 7, 18, 0.2) 100%);
}

.ep-hero-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 60px;
    z-index: 10;
}

.ep-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff !important;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* --- TICKETS & DESCRIPTION CONTAINERS --- */
.ep-tickets-section,
.ep-event-desc {
    background: var(--ep-bg-card);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Restore container constraints */
    max-width: 900px;
    margin: 0 auto 40px;
    /* Add bottom margin for spacing */
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {

    .ep-tickets-section,
    .ep-event-desc {
        padding: 16px;
        border-radius: 16px;
    }
}

[data-theme="light"] .ep-tickets-section,
[data-theme="light"] .ep-event-desc {
    border-color: var(--ep-border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.ep-tickets-title,
.ep-event-desc h3 {
    color: var(--ep-text-main) !important;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.ep-desc-text {
    color: var(--ep-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Forzar tarjeta de ticket oscura (Default Dark) */
/* In Light mode, override to variable based */
.ep-ticket-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 24px !important;
    margin-bottom: 16px !important;
    display: flex !important;
    justify-content: space-between !important;
    color: var(--ep-text-main) !important;
}

[data-theme="light"] .ep-ticket-card {
    background: #ffffff !important;
    border: 1px solid var(--ep-border-color) !important;
    color: var(--ep-text-main) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ep-ticket-name {
    color: var(--ep-text-main) !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
}

.ep-ticket-price {
    color: var(--ep-brand) !important;
    font-weight: 800 !important;
    font-size: 1.4rem !important;
}

.ep-ticket-description,
.ep-ticket-description p {
    color: var(--ep-text-muted) !important;
}

/* Home Cards Text Color Fix */
.ep-card-title {
    font-size: 1.4rem;
    color: var(--ep-text-main) !important;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

/* Hero Text Fix for Light Mode */
[data-theme="light"] .ep-hero-title {
    background: linear-gradient(to right, #111827 30%, var(--ep-brand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.ep-checkout-wrapper {
    background: var(--ep-bg-card) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 30px !important;
    padding: 40px !important;
    color: #fff !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
    background: #1f2937 !important;
    border: 1px solid #374151 !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 14px !important;
}

/* Footer Absolutamente Limpio */
.ep-site-footer {
    background: #000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 80px 26px 40px 26px;
    margin-top: 80px !important;
}

.ep-site-footer ul,
.ep-site-footer li {
    list-style: none !important;
    background: none !important;
    border: none !important;
}

.ep-footer-bottom {
    text-align: center !important;
    color: var(--ep-text-muted) !important;
    margin-top: 40px !important;
    padding-top: 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Botones (Moved to Top) */

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   5. Landing / Organizer Page Styles
   ========================================= */

/* Hero Section (Landing) */
.ep-hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 50% 30%, #1e1b4b 0%, var(--ep-bg-body) 70%);
    overflow: hidden;
    text-align: center;
}

.ep-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.6;
    mix-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}

.ep-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ep-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #ffffff 30%, var(--ep-brand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ep-hero-content p {
    font-size: 1.3rem;
    color: var(--ep-text-muted);
    line-height: 1.6;
}

.ep-badge-new {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 99px;
    background: rgba(var(--ep-brand-rgb, 59, 130, 246), 0.1);
    color: var(--ep-brand);
    border: 1px solid rgba(var(--ep-brand-rgb, 59, 130, 246), 0.2);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Grid */
.ep-features-section {
    padding: 100px 0;
}

.ep-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.ep-feature-card {
    background: var(--ep-bg-card);
    border: 1px solid var(--ep-border-color);
    padding: 40px;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.ep-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--ep-brand);
}

.ep-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.ep-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ep-feature-card p {
    color: var(--ep-text-muted);
    line-height: 1.6;
}

/* Spotlight Section (Side by Side) */
.ep-spotlight-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.ep-spotlight-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ep-spotlight-visual,
.ep-spotlight-content {
    flex: 1;
}

.ep-spotlight-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.ep-spotlight-content p {
    font-size: 1.2rem;
    color: var(--ep-text-muted);
    margin-bottom: 30px;
}

.ep-check-list li {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--ep-text-main);
}

.ep-check-icon {
    color: #10b981;
    font-weight: 800;
}

@media (max-width: 900px) {
    .ep-spotlight-row {
        flex-direction: column;
    }

    .ep-hero-content h1 {
        font-size: 2.8rem;
    }
}

/* Calculator Section */
.ep-calculator-section {
    padding: 100px 0;
    text-align: center;
}

.ep-calc-box {
    max-width: 600px;
    margin: 40px auto 0;
    background: var(--ep-bg-card);
    border: 1px solid var(--ep-border-color);
    border-radius: 24px;
    padding: 40px;
}

.ep-input-group {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ep-calc-input {
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid var(--ep-brand) !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: var(--ep-text-main) !important;
    width: 140px !important;
    text-align: center !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.ep-results-row {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.ep-result-item {
    text-align: center;
}

.ep-result-label {
    font-size: 0.9rem;
    color: var(--ep-text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ep-result-value {
    font-size: 2.5rem;
    font-weight: 800;
}

/* Trust Grid */
.ep-trust-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.ep-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.ep-trust-card {
    text-align: center;
    padding: 30px;
    background: var(--ep-bg-surface);
    border-radius: 20px;
    border: 1px solid var(--ep-border-color);
}

.ep-trust-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ep-trust-card h3 {
    margin-bottom: 10px;
    font-weight: 700;
}

/* FAQ Section */
.ep-faq-section {
    padding: 100px 0;
}

.ep-faq-item {
    background: var(--ep-bg-card);
    border: 1px solid var(--ep-border-color);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.ep-faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.ep-faq-question::marker {
    display: none;
}

.ep-faq-answer {
    padding: 0 20px 20px;
    color: var(--ep-text-muted);
    line-height: 1.6;
}

/* CTA Section */
.ep-cta-section {
    padding: 100px 0;
    text-align: center;
}

.ep-cta-box {
    background: radial-gradient(circle at center, #1e1b4b 0%, var(--ep-bg-card) 100%);
    border: 1px solid var(--ep-brand);
    border-radius: 30px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.ep-cta-box h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.ep-cta-box p {
    font-size: 1.4rem;
    color: var(--ep-text-muted);
}