/**
 * FEYMA - Estilos Épicos para Páginas Internas
 * Incluye: Hero, Secciones, Cards, Efectos
 */

/* ============================================
   VARIABLES Y UTILIDADES
   ============================================ */
:root {
    --feyma-purple: #3D3180;
    --feyma-purple-dark: #2a2260;
    --feyma-gold: #F7B32B;
    --feyma-gold-light: #f7c96b;
    --feyma-dark: #0a0a0f;
    --feyma-dark-light: #1a1a2e;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #F7B32B 0%, #f7c96b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: #F7B32B !important;
}

/* ============================================
   HERO SECTION ÉPICO
   ============================================ */
.page-hero-epic {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d2460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-epic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(90deg, transparent 0px, transparent 49px, rgba(247, 179, 43, 0.03) 49px, rgba(247, 179, 43, 0.03) 50px),
        repeating-linear-gradient(0deg, transparent 0px, transparent 49px, rgba(247, 179, 43, 0.03) 49px, rgba(247, 179, 43, 0.03) 50px);
    z-index: 1;
}

.hero-circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(247,179,43,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(61,49,128,0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(247,179,43,0.05) 0%, transparent 70%);
    z-index: 2;
}

/* Partículas flotantes */
.hero-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles-container .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #F7B32B;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(247,179,43,0.8), 0 0 20px rgba(247,179,43,0.4);
    animation: floatParticle 20s infinite ease-in-out;
}

.hero-particles-container .particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.hero-particles-container .particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 2s; }
.hero-particles-container .particle:nth-child(3) { top: 60%; left: 15%; animation-delay: 4s; }
.hero-particles-container .particle:nth-child(4) { top: 70%; left: 85%; animation-delay: 6s; }
.hero-particles-container .particle:nth-child(5) { top: 40%; left: 50%; animation-delay: 8s; }
.hero-particles-container .particle:nth-child(6) { top: 80%; left: 40%; animation-delay: 10s; }

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(30px, -40px) scale(1.2); opacity: 1; }
    50% { transform: translate(-20px, -80px) scale(0.8); opacity: 0.8; }
    75% { transform: translate(40px, -40px) scale(1.1); opacity: 1; }
}

/* Línea de escaneo */
.hero-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(247,179,43,0.6), transparent);
    z-index: 4;
    pointer-events: none;
    animation: scanDown 4s linear infinite;
}

@keyframes scanDown {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Orbes de brillo */
.hero-glow-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: pulseOrb 8s ease-in-out infinite;
}

.glow-orb.orb-1 {
    width: 300px;
    height: 300px;
    background: #F7B32B;
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.glow-orb.orb-2 {
    width: 200px;
    height: 200px;
    background: #3D3180;
    bottom: -50px;
    left: 5%;
    animation-delay: 2s;
}

.glow-orb.orb-3 {
    width: 150px;
    height: 150px;
    background: #F7B32B;
    top: 50%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes pulseOrb {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

/* Contenido del Hero */
.hero-epic-content {
    text-align: center;
    padding: 50px;
}

.hero-badge-epic {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(247,179,43,0.15);
    border: 1px solid rgba(247,179,43,0.3);
    border-radius: 30px;
    color: #F7B32B;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-badge-epic i {
    font-size: 18px;
}

.hero-title-epic {
    font-size: 56px;
    font-weight: 300;
    background: linear-gradient(135deg, #F7B32B 0%, #f7c96b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle-epic {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumb épico */
.breadcrumb-epic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-epic li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-epic li a:hover {
    color: #F7B32B;
}

.breadcrumb-epic li.separator {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

.breadcrumb-epic li.active {
    color: #F7B32B;
    font-weight: 200;
}

/* ============================================
   SECCIÓN TU ALIADO
   ============================================ */
.aliado-section {
    position: relative;
    background: #0a0a0f;
    padding: 80px 0;
    overflow: hidden;
}

.aliado-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(90deg, transparent 0px, transparent 49px, rgba(247, 179, 43, 0.02) 49px, rgba(247, 179, 43, 0.02) 50px),
        repeating-linear-gradient(0deg, transparent 0px, transparent 49px, rgba(247, 179, 43, 0.02) 49px, rgba(247, 179, 43, 0.02) 50px);
    opacity: 0.5;
}

.aliado-main-title {
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Logo Card Épico */
.logo-card-epic {
    position: relative;
    background: linear-gradient(135deg, rgba(247,179,43,0.1) 0%, rgba(61,49,128,0.2) 50%, rgba(61,49,128,0.3) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(247,179,43,0.2);
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(247,179,43,0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.logo-card-circuit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, transparent 48%, rgba(247,179,43,0.1) 50%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(247,179,43,0.1) 50%, transparent 52%);
    background-size: 30px 30px;
    opacity: 0.3;
}

.logo-card-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(247,179,43,0.8), transparent);
    animation: logoScan 3s linear infinite;
}

@keyframes logoScan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Decoraciones de circuito */
.circuit-decoration {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #F7B32B;
    font-size: 12px;
    opacity: 0.6;
}

.circuit-decoration.top-left {
    top: 20px;
    left: 20px;
}

.circuit-decoration.bottom-right {
    bottom: 20px;
    right: 20px;
    flex-direction: column;
}

.circuit-dot {
    width: 8px;
    height: 8px;
    background: #F7B32B;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(247,179,43,0.8);
}

.circuit-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #F7B32B, transparent);
}

.circuit-line.vertical {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #F7B32B, transparent);
}

.circuit-arrows {
    color: #F7B32B;
    font-weight: bold;
    animation: arrowPulse 1s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Logo wrapper */
.logo-wrapper {
    position: relative;
    z-index: 5;
}

.feyma-logo-main {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(247,179,43,0.3));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Contenido aliado */
.aliado-content {
    padding-left: 20px;
}

.aliado-text {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.aliado-text.lead {
    font-size: 19px;
    color: rgba(255,255,255,0.95);
}

.aliado-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Botones épicos */
.btn-epic-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #F7B32B 0%, #e5a020 100%);
    color: #0a0a0f;
    border-radius: 8px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(247,179,43,0.3);
}

.btn-epic-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(247,179,43,0.5);
    color: #0a0a0f;
}

.btn-epic-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    color: #F7B32B;
    border: 1px solid rgba(247,179,43,0.5);
    border-radius: 8px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-epic-outline:hover {
    background: rgba(247,179,43,0.1);
    border-color: #F7B32B;
    color: #F7B32B;
    transform: translateY(-3px);
}

/* ============================================
   STATS ÉPICOS
   ============================================ */
.stats-epic-section {
    position: relative;
    background: linear-gradient(135deg, #3D3180 0%, #2a2260 100%);
    padding: 60px 0;
    overflow: hidden;
}

.stats-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 50%, rgba(247,179,43,0.2) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(247,179,43,0.2) 0%, transparent 50%);
}

.stats-epic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-epic-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.stat-epic-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.stat-epic-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(247,179,43,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-epic-icon i {
    font-size: 28px;
    color: #F7B32B;
}

.stat-epic-number {
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-epic-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   VALORES ÉPICOS
   ============================================ */
.values-epic-section {
    background: #0f0f15;
    padding: 80px 0;
}

.section-title-epic {
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 15px;
}

.section-subtitle-epic {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
}

.value-card-epic {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
}

.value-card-epic:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(247,179,43,0.3);
    transform: translateY(-8px);
}

.value-card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(247,179,43,0.15) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card-epic:hover .value-card-glow {
    opacity: 1;
}

.value-icon-epic {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.value-icon-epic.purple {
    background: linear-gradient(135deg, rgba(61,49,128,0.3) 0%, rgba(61,49,128,0.1) 100%);
    border: 1px solid rgba(61,49,128,0.3);
}

.value-icon-epic.gold {
    background: linear-gradient(135deg, rgba(247,179,43,0.3) 0%, rgba(247,179,43,0.1) 100%);
    border: 1px solid rgba(247,179,43,0.3);
}

.value-icon-epic i {
    font-size: 32px;
}

.value-icon-epic.purple i {
    color: #8b7fd6;
}

.value-icon-epic.gold i {
    color: #F7B32B;
}

.value-card-epic:hover .value-icon-epic {
    transform: scale(1.1);
}

.value-card-epic h3 {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 12px;
}

.value-card-epic p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   MISIÓN Y VISIÓN ÉPICOS
   ============================================ */
.mission-vision-epic {
    position: relative;
    background: linear-gradient(180deg, #0f0f15 0%, #0a0a0f 100%);
    padding: 80px 0;
    overflow: hidden;
}

.mv-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(247,179,43,0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(61,49,128,0.08) 0%, transparent 40%);
}

.mission-card-epic,
.vision-card-epic {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 45px 40px;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mission-card-epic:hover,
.vision-card-epic:hover {
    border-color: rgba(247,179,43,0.3);
    background: rgba(255,255,255,0.04);
}

.mv-card-circuit {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background:
        linear-gradient(135deg, transparent 40%, rgba(247,179,43,0.05) 50%, transparent 60%),
        linear-gradient(45deg, transparent 40%, rgba(247,179,43,0.05) 50%, transparent 60%);
    opacity: 0.5;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(247,179,43,0.2) 0%, rgba(247,179,43,0.05) 100%);
    border: 1px solid rgba(247,179,43,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon i {
    font-size: 36px;
    color: #F7B32B;
}

.mission-card-epic h2,
.vision-card-epic h2 {
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.mission-card-epic p,
.vision-card-epic p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   MARCAS ÉPICO
   ============================================ */
.brands-epic-section {
    background: #0f0f15;
    padding: 80px 0;
}

.brands-epic-marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.brands-epic-marquee::before,
.brands-epic-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.brands-epic-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #0f0f15, transparent);
}

.brands-epic-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #0f0f15, transparent);
}

.brands-epic-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
}

.brands-epic-track img {
    height: 45px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%) brightness(2);
    transition: all 0.3s ease;
}

.brands-epic-track img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.15);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   CTA ÉPICO
   ============================================ */
.cta-epic-section {
    position: relative;
    background: linear-gradient(135deg, #3D3180 0%, #2a2260 50%, #1a1a2e 100%);
    padding: 100px 0;
    overflow: hidden;
}

.cta-epic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(90deg, transparent 0px, transparent 49px, rgba(247, 179, 43, 0.03) 49px, rgba(247, 179, 43, 0.03) 50px),
        repeating-linear-gradient(0deg, transparent 0px, transparent 49px, rgba(247, 179, 43, 0.03) 49px, rgba(247, 179, 43, 0.03) 50px);
}

.cta-circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(247,179,43,0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(247,179,43,0.15) 0%, transparent 40%);
}

.cta-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #F7B32B;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(247,179,43,0.8);
    animation: floatParticle 15s infinite ease-in-out;
}

.cta-particles .particle:nth-child(1) { top: 20%; left: 10%; }
.cta-particles .particle:nth-child(2) { top: 70%; right: 15%; animation-delay: 5s; }
.cta-particles .particle:nth-child(3) { bottom: 20%; left: 50%; animation-delay: 10s; }

.cta-epic-content {
    position: relative;
    z-index: 5;
}

.cta-epic-content h2 {
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.cta-epic-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
}

.cta-epic-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-epic-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-epic-cta.primary {
    background: linear-gradient(135deg, #F7B32B 0%, #e5a020 100%);
    color: #0a0a0f;
    box-shadow: 0 4px 25px rgba(247,179,43,0.4);
}

.btn-epic-cta.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(247,179,43,0.6);
    color: #0a0a0f;
}

.btn-epic-cta.secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-epic-cta.secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-4px);
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title-epic {
        font-size: 42px;
    }

    .aliado-main-title {
        font-size: 32px;
    }

    .logo-card-epic {
        min-height: 350px;
        margin-bottom: 30px;
    }

    .aliado-content {
        padding-left: 0;
    }

    .stats-epic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title-epic {
        font-size: 34px;
    }

    .cta-epic-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .page-hero-epic {
        padding: 80px 0 50px;
        min-height: 300px;
    }

    .hero-title-epic {
        font-size: 32px;
    }

    .hero-subtitle-epic {
        font-size: 16px;
    }

    .aliado-section {
        padding: 60px 0;
    }

    .aliado-main-title {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .logo-card-epic {
        min-height: 300px;
        padding: 40px 30px;
    }

    .feyma-logo-main {
        max-width: 200px;
    }

    .aliado-text {
        font-size: 15px;
    }

    .stats-epic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-epic-item {
        padding: 20px 15px;
    }

    .stat-epic-number {
        font-size: 32px;
    }

    .stat-epic-label {
        font-size: 12px;
    }

    .values-epic-section,
    .mission-vision-epic,
    .brands-epic-section {
        padding: 60px 0;
    }

    .section-title-epic {
        font-size: 28px;
    }

    .value-card-epic {
        padding: 25px 20px;
    }

    .mission-card-epic,
    .vision-card-epic {
        padding: 30px 25px;
    }

    .mission-card-epic h2,
    .vision-card-epic h2 {
        font-size: 24px;
    }

    .cta-epic-section {
        padding: 70px 0;
    }

    .cta-epic-content h2 {
        font-size: 26px;
    }

    .cta-epic-content p {
        font-size: 16px;
    }

    .btn-epic-cta {
        padding: 14px 28px;
        font-size: 14px;
    }

    .brands-epic-track img {
        height: 35px;
    }

    .brands-epic-track {
        gap: 50px;
    }
}

@media (max-width: 575px) {
    .hero-title-epic {
        font-size: 28px;
    }

    .aliado-main-title {
        font-size: 22px;
    }

    .aliado-cta {
        flex-direction: column;
    }

    .aliado-cta a {
        width: 100%;
        justify-content: center;
    }

    .cta-epic-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-epic-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
/* ============================================
   PÁGINA DE CONTACTO - ESTILOS ÉPICOS
   ============================================ */

/* Contact Info Section */
.contact-info-epic {
    position: relative;
    background: #0a0a0f;
    padding: 80px 0;
    margin-top: -50px;
    z-index: 15;
}

.contact-info-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(247,179,43,0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(61,49,128,0.08) 0%, transparent 40%);
}

/* Contact Cards */
.contact-card-epic {
    position: relative;
    display: block;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
}

.contact-card-epic:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(247,179,43,0.3);
    transform: translateY(-8px);
}

.contact-card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card-epic.whatsapp .contact-card-glow {
    background: #25D366;
}

.contact-card-epic.email .contact-card-glow {
    background: #F7B32B;
}

.contact-card-epic.location .contact-card-glow {
    background: #3D3180;
}

.contact-card-epic:hover .contact-card-glow {
    opacity: 0.3;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card-epic.whatsapp .contact-card-icon {
    background: linear-gradient(135deg, rgba(37,211,102,0.2) 0%, rgba(37,211,102,0.05) 100%);
    border: 1px solid rgba(37,211,102,0.3);
}

.contact-card-epic.whatsapp .contact-card-icon i {
    color: #25D366;
    font-size: 36px;
}

.contact-card-epic.email .contact-card-icon {
    background: linear-gradient(135deg, rgba(247,179,43,0.2) 0%, rgba(247,179,43,0.05) 100%);
    border: 1px solid rgba(247,179,43,0.3);
}

.contact-card-epic.email .contact-card-icon i {
    color: #F7B32B;
    font-size: 36px;
}

.contact-card-epic.location .contact-card-icon {
    background: linear-gradient(135deg, rgba(61,49,128,0.3) 0%, rgba(61,49,128,0.1) 100%);
    border: 1px solid rgba(61,49,128,0.3);
}

.contact-card-epic.location .contact-card-icon i {
    color: #8b7fd6;
    font-size: 36px;
}

.contact-card-epic:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-epic h3 {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
}

.contact-card-value {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-card-value small {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.contact-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 300;
    color: #F7B32B;
    transition: all 0.3s ease;
}

.contact-card-epic.whatsapp .contact-card-action {
    color: #25D366;
}

.contact-card-epic:hover .contact-card-action {
    gap: 12px;
}

.contact-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(247,179,43,0.15);
    border-radius: 20px;
    font-size: 13px;
    color: #F7B32B;
}

/* Contact Form Section */
.contact-form-epic {
    position: relative;
    background: linear-gradient(180deg, #0a0a0f 0%, #0f0f15 100%);
    padding: 80px 0;
    overflow: hidden;
}

.form-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(90deg, transparent 0px, transparent 49px, rgba(247, 179, 43, 0.02) 49px, rgba(247, 179, 43, 0.02) 50px),
        repeating-linear-gradient(0deg, transparent 0px, transparent 49px, rgba(247, 179, 43, 0.02) 49px, rgba(247, 179, 43, 0.02) 50px);
    opacity: 0.5;
}

.form-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #F7B32B;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(247,179,43,0.8);
    animation: floatParticle 20s infinite ease-in-out;
}

.form-particles .particle:nth-child(1) { top: 10%; left: 5%; }
.form-particles .particle:nth-child(2) { top: 50%; right: 5%; animation-delay: 7s; }
.form-particles .particle:nth-child(3) { bottom: 15%; left: 15%; animation-delay: 14s; }

.form-wrapper-epic {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 50px;
    z-index: 5;
}

.form-header {
    margin-bottom: 40px;
}

/* Form Groups */
.form-group-epic {
    margin-bottom: 0;
}

.form-group-epic label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.form-group-epic label i {
    color: #F7B32B;
    font-size: 16px;
}

.form-group-epic label .required {
    color: #F7B32B;
}

.form-group-epic input,
.form-group-epic select,
.form-group-epic textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group-epic input::placeholder,
.form-group-epic textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-group-epic input:focus,
.form-group-epic select:focus,
.form-group-epic textarea:focus {
    outline: none;
    border-color: rgba(247,179,43,0.5);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 20px rgba(247,179,43,0.1);
}

.form-group-epic select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23F7B32B' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-group-epic select option {
    background: #1a1a2e;
    color: #fff;
}

.form-group-epic textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
.form-submit-wrapper {
    text-align: center;
    margin-top: 20px;
}

.btn-submit-epic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 50px;
    background: linear-gradient(135deg, #F7B32B 0%, #e5a020 100%);
    color: #0a0a0f;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(247,179,43,0.4);
}

.btn-submit-epic:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(247,179,43,0.6);
}

.btn-submit-epic:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-submit-epic .spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-privacy {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-privacy i {
    color: #25D366;
}

/* Form Messages */
.form-messages {
    margin-top: 30px;
    padding: 20px 25px;
    border-radius: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-messages.success {
    background: rgba(37,211,102,0.15);
    border: 1px solid rgba(37,211,102,0.3);
    color: #25D366;
}

.form-messages.error {
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    color: #ef4444;
}

/* FAQ Quick Section */
.faq-quick-epic {
    background: #0f0f15;
    padding: 80px 0;
}

.faq-item-epic {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.faq-item-epic:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(247,179,43,0.2);
}

.faq-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(247,179,43,0.2) 0%, rgba(247,179,43,0.05) 100%);
    border: 1px solid rgba(247,179,43,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon i {
    font-size: 22px;
    color: #F7B32B;
}

.faq-content h4 {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 8px;
}

.faq-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
}

/* Map Section */
.map-epic-section {
    position: relative;
}

.map-wrapper-epic {
    position: relative;
    height: 450px;
}

.map-wrapper-epic iframe {
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease;
}

.map-wrapper-epic:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.map-info-box {
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247,179,43,0.3);
    border-radius: 16px;
    padding: 25px 30px;
    max-width: 300px;
}

.map-info-box h3 {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-info-box h3 i {
    color: #F7B32B;
}

.map-info-box p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-map-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #F7B32B 0%, #e5a020 100%);
    color: #0a0a0f;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-map-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247,179,43,0.4);
    color: #0a0a0f;
}

/* Contact Responsive */
@media (max-width: 991px) {
    .contact-info-epic {
        margin-top: 0;
        padding: 60px 0;
    }

    .form-wrapper-epic {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .contact-info-epic {
        padding: 50px 0;
    }

    .contact-card-epic {
        padding: 30px 25px;
    }

    .contact-card-icon {
        width: 70px;
        height: 70px;
    }

    .contact-card-icon i {
        font-size: 28px !important;
    }

    .contact-form-epic {
        padding: 60px 0;
    }

    .form-wrapper-epic {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .form-group-epic input,
    .form-group-epic select,
    .form-group-epic textarea {
        padding: 14px 16px;
        font-size: 15px;
    }

    .btn-submit-epic {
        width: 100%;
        padding: 16px 30px;
        font-size: 16px;
    }

    .faq-quick-epic {
        padding: 60px 0;
    }

    .faq-item-epic {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .faq-icon {
        margin: 0 auto;
    }

    .map-overlay {
        top: 15px;
        left: 15px;
        right: 15px;
    }

    .map-info-box {
        max-width: 100%;
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .contact-card-value {
        font-size: 16px;
    }

    .section-title-epic {
        font-size: 26px;
    }
}
/* reCAPTCHA v2 Styles */
.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.recaptcha-wrapper .g-recaptcha {
    transform: scale(1);
    transform-origin: center;
}

@media (max-width: 400px) {
    .recaptcha-wrapper .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}

/* ============================================
   FAQ EPIC PAGE STYLES
   ============================================ */

/* FAQ Hero */
.faq-hero-epic {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    overflow: hidden;
}

.faq-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circuit-pattern-faq {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    font-size: 40px;
    color: rgba(59, 130, 246, 0.1);
    animation: floatIcon 6s ease-in-out infinite;
}

.float-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 30%; right: 15%; animation-delay: 1.5s; }
.float-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 3s; }
.float-icon:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 4.5s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 0.2; }
}

.faq-hero-epic .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.faq-hero-epic .orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.15);
    top: -100px;
    right: -100px;
}

.faq-hero-epic .orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.1);
    bottom: -50px;
    left: -50px;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 24px;
}

.faq-hero-title {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Search Box */
.faq-search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-wrapper .search-icon {
    position: absolute;
    left: 20px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.search-wrapper input {
    width: 100%;
    padding: 18px 50px 18px 55px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    color: #fff;
    transition: all 0.3s ease;
}

.search-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-wrapper input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.search-clear {
    position: absolute;
    right: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-clear:hover {
    background: rgba(255, 255, 255, 0.2);
}

.search-suggestions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.search-suggestions span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.suggestion-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    color: #fff;
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

/* Stats Bar */
.faq-stats-bar {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #e5e7eb;
}

.stats-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 12px;
    color: #fff;
    font-size: 22px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 22px;
    font-weight: 300;
    color: #111827;
}

.stat-label {
    font-size: 13px;
    color: #6b7280;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

/* Categories Epic */
.faq-categories-epic {
    padding: 80px 0;
    background: #f9fafb;
}

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 0;
}

.category-card-epic {
    display: block;
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
}

.category-card-epic .card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card-epic:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.category-card-epic:hover .card-glow {
    opacity: 1;
}

.category-card-epic .card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 14px;
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.category-card-epic h3 {
    font-size: 20px;
    font-weight: 300;
    color: #111827;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.category-card-epic p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.category-card-epic .card-count {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 300;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.category-card-epic .card-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
    color: #6b7280;
    transition: all 0.3s ease;
}

.category-card-epic:hover .card-arrow {
    background: #3b82f6;
    color: #fff;
    transform: translateX(5px);
}

/* FAQ Content Epic */
.faq-content-epic {
    padding: 80px 0;
    background: #fff;
}

.faq-section-epic {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.section-header-epic {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}

.section-header-epic .header-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 14px;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.section-header-epic .header-text h2 {
    font-size: 24px;
    font-weight: 300;
    color: #111827;
    margin-bottom: 4px;
}

.section-header-epic .header-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Accordion Epic */
.accordion-epic {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item-epic {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item-epic:hover {
    background: #f3f4f6;
}

.accordion-item-epic.search-highlight {
    border: 1px solid #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.accordion-header-epic {
    margin: 0;
}

.accordion-button-epic {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 300;
    color: #111827;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    gap: 15px;
    transition: all 0.3s ease;
}

.accordion-button-epic .question-icon {
    color: #3b82f6;
    font-size: 20px;
    flex-shrink: 0;
}

.accordion-button-epic .question-text {
    flex: 1;
}

.accordion-button-epic .toggle-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #6b7280;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-button-epic:not(.collapsed) .toggle-icon {
    background: #3b82f6;
    color: #fff;
    transform: rotate(45deg);
}

.accordion-body-epic {
    padding: 0 24px 24px 60px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
}

.accordion-body-epic p {
    margin-bottom: 15px;
}

.accordion-body-epic p:last-of-type {
    margin-bottom: 0;
}

/* Answer Elements */
.answer-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.answer-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.answer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #111827;
}

.benefits-list li i {
    color: #10b981;
    font-size: 16px;
}

.steps-list {
    padding-left: 20px;
    margin: 15px 0;
}

.steps-list li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.steps-list li::marker {
    color: #3b82f6;
    font-weight: 300;
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 15px 0;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.payment-method i {
    color: #3b82f6;
    font-size: 20px;
}

.payment-method span {
    font-size: 13px;
    color: #374151;
}

/* Installments Info */
.installments-info {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.installment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.installment-option.highlight {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.installment-number {
    font-size: 28px;
    font-weight: 300;
    color: #3b82f6;
}

.installment-text {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}

/* Security Badges */
.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.security-badge i {
    color: #10b981;
    font-size: 18px;
}

.security-badge span {
    font-size: 13px;
    font-weight: 300;
    color: #065f46;
}

/* Return Policy Box */
.return-policy-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin: 15px 0;
}

.return-policy-box .policy-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3b82f6;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.return-policy-box h4 {
    font-size: 16px;
    font-weight: 300;
    color: #111827;
    margin-bottom: 4px;
}

.return-policy-box p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Inline Link Button */
.btn-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 8px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-inline-link:hover {
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Answer Footer */
.answer-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.helpful-text {
    font-size: 13px;
    color: #6b7280;
}

.btn-helpful {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-helpful:hover {
    color: #3b82f6;
    border-color: #3b82f6;
}

/* CTA Epic */
.faq-cta-epic {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    overflow: hidden;
}

.faq-cta-epic .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.faq-cta-epic .cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.faq-cta-epic .cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.faq-cta-epic .cta-content {
    position: relative;
    z-index: 2;
}

.faq-cta-epic .cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 36px;
    margin: 0 auto 30px;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
}

.faq-cta-epic h2 {
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 15px;
}

.faq-cta-epic p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-cta-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 300;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-cta-secondary:hover {
    color: #fff;
    background: #10b981;
    border-color: #10b981;
}

.cta-schedule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.cta-schedule i {
    font-size: 16px;
}

/* FAQ Responsive */
@media (max-width: 991px) {
    .faq-hero-title { font-size: 36px; }
    .stats-wrapper { gap: 25px; }
    .stat-divider { display: none; }
    .stat-item { flex: 0 0 calc(50% - 15px); justify-content: center; }
    .payment-methods-grid { grid-template-columns: 1fr; }
    .installments-info { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 767px) {
    .faq-hero-epic { padding: 100px 0 60px; }
    .faq-hero-title { font-size: 28px; }
    .faq-hero-subtitle { font-size: 16px; }
    .search-wrapper input { padding: 15px 45px 15px 50px; font-size: 15px; }
    .stats-wrapper { flex-direction: column; gap: 20px; }
    .stat-item { flex: 0 0 100%; justify-content: flex-start; padding: 0 20px; }
    .faq-categories-epic, .faq-content-epic { padding: 50px 0; }
    .section-header-epic { flex-direction: column; text-align: center; }
    .accordion-body-epic { padding: 0 20px 20px 20px; }
    .accordion-button-epic { padding: 16px 20px; }
    .category-card-epic .card-arrow { display: none; }
    .return-policy-box { flex-direction: column; text-align: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .faq-cta-epic h2 { font-size: 26px; }
    .faq-cta-epic p { font-size: 16px; }
}

@media (max-width: 480px) {
    .search-suggestions { flex-direction: column; }
    .installments-info { gap: 10px; }
    .installment-option { padding: 12px 18px; }
    .installment-number { font-size: 24px; }
}
/* ============================================
   FAQ EPIC PAGE STYLES
   ============================================ */

/* FAQ Hero */
.faq-hero-epic {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    overflow: hidden;
}

.faq-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circuit-pattern-faq {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    font-size: 40px;
    color: rgba(59, 130, 246, 0.1);
    animation: floatIcon 6s ease-in-out infinite;
}

.float-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 30%; right: 15%; animation-delay: 1.5s; }
.float-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 3s; }
.float-icon:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 4.5s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 0.2; }
}

.faq-hero-epic .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.faq-hero-epic .orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.15);
    top: -100px;
    right: -100px;
}

.faq-hero-epic .orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.1);
    bottom: -50px;
    left: -50px;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 24px;
}

.faq-hero-title {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Search Box */
.faq-search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-wrapper .search-icon {
    position: absolute;
    left: 20px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.search-wrapper input {
    width: 100%;
    padding: 18px 50px 18px 55px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    color: #fff;
    transition: all 0.3s ease;
}

.search-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-wrapper input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.search-clear {
    position: absolute;
    right: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-clear:hover {
    background: rgba(255, 255, 255, 0.2);
}

.search-suggestions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.search-suggestions span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.suggestion-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    color: #fff;
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

/* Stats Bar */
.faq-stats-bar {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #e5e7eb;
}

.stats-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 12px;
    color: #fff;
    font-size: 22px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 22px;
    font-weight: 300;
    color: #111827;
}

.stat-label {
    font-size: 13px;
    color: #6b7280;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

/* Categories Epic */
.faq-categories-epic {
    padding: 80px 0;
    background: #f9fafb;
}

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 0;
}

.category-card-epic {
    display: block;
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
}

.category-card-epic .card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card-epic:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.category-card-epic:hover .card-glow {
    opacity: 1;
}

.category-card-epic .card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 14px;
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.category-card-epic h3 {
    font-size: 20px;
    font-weight: 300;
    color: #111827;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.category-card-epic p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.category-card-epic .card-count {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 300;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.category-card-epic .card-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
    color: #6b7280;
    transition: all 0.3s ease;
}

.category-card-epic:hover .card-arrow {
    background: #3b82f6;
    color: #fff;
    transform: translateX(5px);
}

/* FAQ Content Epic */
.faq-content-epic {
    padding: 80px 0;
    background: #fff;
}

.faq-section-epic {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.section-header-epic {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}

.section-header-epic .header-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 14px;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.section-header-epic .header-text h2 {
    font-size: 24px;
    font-weight: 300;
    color: #111827;
    margin-bottom: 4px;
}

.section-header-epic .header-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Accordion Epic */
.accordion-epic {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item-epic {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item-epic:hover {
    background: #f3f4f6;
}

.accordion-item-epic.search-highlight {
    border: 1px solid #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.accordion-header-epic {
    margin: 0;
}

.accordion-button-epic {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 300;
    color: #111827;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    gap: 15px;
    transition: all 0.3s ease;
}

.accordion-button-epic .question-icon {
    color: #3b82f6;
    font-size: 20px;
    flex-shrink: 0;
}

.accordion-button-epic .question-text {
    flex: 1;
}

.accordion-button-epic .toggle-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #6b7280;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-button-epic:not(.collapsed) .toggle-icon {
    background: #3b82f6;
    color: #fff;
    transform: rotate(45deg);
}

.accordion-body-epic {
    padding: 0 24px 24px 60px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
}

.accordion-body-epic p {
    margin-bottom: 15px;
}

.accordion-body-epic p:last-of-type {
    margin-bottom: 0;
}

/* Answer Elements */
.answer-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.answer-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.answer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #111827;
}

.benefits-list li i {
    color: #10b981;
    font-size: 16px;
}

.steps-list {
    padding-left: 20px;
    margin: 15px 0;
}

.steps-list li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.steps-list li::marker {
    color: #3b82f6;
    font-weight: 300;
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 15px 0;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.payment-method i {
    color: #3b82f6;
    font-size: 20px;
}

.payment-method span {
    font-size: 13px;
    color: #374151;
}

/* Installments Info */
.installments-info {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.installment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.installment-option.highlight {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.installment-number {
    font-size: 28px;
    font-weight: 300;
    color: #3b82f6;
}

.installment-text {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}

/* Security Badges */
.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.security-badge i {
    color: #10b981;
    font-size: 18px;
}

.security-badge span {
    font-size: 13px;
    font-weight: 300;
    color: #065f46;
}

/* Return Policy Box */
.return-policy-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin: 15px 0;
}

.return-policy-box .policy-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3b82f6;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.return-policy-box h4 {
    font-size: 16px;
    font-weight: 300;
    color: #111827;
    margin-bottom: 4px;
}

.return-policy-box p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Inline Link Button */
.btn-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 8px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-inline-link:hover {
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Answer Footer */
.answer-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.helpful-text {
    font-size: 13px;
    color: #6b7280;
}

.btn-helpful {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-helpful:hover {
    color: #3b82f6;
    border-color: #3b82f6;
}

/* CTA Epic */
.faq-cta-epic {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    overflow: hidden;
}

.faq-cta-epic .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.faq-cta-epic .cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.faq-cta-epic .cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.faq-cta-epic .cta-content {
    position: relative;
    z-index: 2;
}

.faq-cta-epic .cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 36px;
    margin: 0 auto 30px;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
}

.faq-cta-epic h2 {
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 15px;
}

.faq-cta-epic p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-cta-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 300;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-cta-secondary:hover {
    color: #fff;
    background: #10b981;
    border-color: #10b981;
}

.cta-schedule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.cta-schedule i {
    font-size: 16px;
}

/* FAQ Responsive */
@media (max-width: 991px) {
    .faq-hero-title { font-size: 36px; }
    .stats-wrapper { gap: 25px; }
    .stat-divider { display: none; }
    .stat-item { flex: 0 0 calc(50% - 15px); justify-content: center; }
    .payment-methods-grid { grid-template-columns: 1fr; }
    .installments-info { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 767px) {
    .faq-hero-epic { padding: 100px 0 60px; }
    .faq-hero-title { font-size: 28px; }
    .faq-hero-subtitle { font-size: 16px; }
    .search-wrapper input { padding: 15px 45px 15px 50px; font-size: 15px; }
    .stats-wrapper { flex-direction: column; gap: 20px; }
    .stat-item { flex: 0 0 100%; justify-content: flex-start; padding: 0 20px; }
    .faq-categories-epic, .faq-content-epic { padding: 50px 0; }
    .section-header-epic { flex-direction: column; text-align: center; }
    .accordion-body-epic { padding: 0 20px 20px 20px; }
    .accordion-button-epic { padding: 16px 20px; }
    .category-card-epic .card-arrow { display: none; }
    .return-policy-box { flex-direction: column; text-align: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .faq-cta-epic h2 { font-size: 26px; }
    .faq-cta-epic p { font-size: 16px; }
}

@media (max-width: 480px) {
    .search-suggestions { flex-direction: column; }
    .installments-info { gap: 10px; }
    .installment-option { padding: 12px 18px; }
    .installment-number { font-size: 24px; }
}

/* Return Highlight Box */
.return-highlight-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    margin-bottom: 30px;
}

.return-days {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    background: #f59e0b;
    border-radius: 12px;
    color: #fff;
}

.days-number {
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
}

.days-text {
    font-size: 14px;
    font-weight: 300;
}

.return-info h4 {
    font-size: 18px;
    font-weight: 300;
    color: #92400e;
    margin-bottom: 8px;
}

.return-info p {
    font-size: 14px;
    color: #b45309;
    margin: 0;
}

/* Conditions Grid */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.condition-item i {
    color: #f59e0b;
    font-size: 20px;
}

.condition-item span {
    font-size: 14px;
    color: #374151;
}

/* Warranty Info */
.warranty-info {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.warranty-item {
    flex: 1;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
}

.warranty-item.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: #3b82f6;
}

.warranty-time {
    font-size: 24px;
    font-weight: 300;
    color: #3b82f6;
    margin-bottom: 5px;
}

.warranty-item.highlight .warranty-time {
    color: #8b5cf6;
}

.warranty-desc {
    font-size: 13px;
    color: #6b7280;
}

/* Process Steps */
.process-steps {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.process-steps li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.process-steps li:last-child {
    border-bottom: none;
}

.process-steps .step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    flex-shrink: 0;
}

.process-steps .step-text {
    font-size: 14px;
    color: #374151;
}

/* Shipping Map Box */
.shipping-map-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(79, 70, 229, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    margin-bottom: 30px;
}

.shipping-map-box .map-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6366f1;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.shipping-map-box h4 {
    font-size: 16px;
    font-weight: 300;
    color: #4338ca;
    margin-bottom: 4px;
}

.shipping-map-box p {
    font-size: 14px;
    color: #4f46e5;
    margin: 0;
}

/* Delivery Times */
.delivery-times {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.delivery-zone {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.zone-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    color: #6366f1;
    font-size: 20px;
}

.zone-name {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #111827;
}

.zone-time {
    display: block;
    font-size: 13px;
    color: #6b7280;
}

.delivery-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    margin-top: 10px;
}

.delivery-note i {
    color: #3b82f6;
}

/* Shipping Promo */
.shipping-promo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    margin-top: 15px;
}

.shipping-promo i {
    color: #10b981;
    font-size: 22px;
}

.shipping-promo span {
    font-size: 14px;
    color: #065f46;
}

/* Policies CTA Box */
.policies-cta-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    border-radius: 16px;
    margin-top: 10px;
}

.policies-cta-box .cta-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
}

.policies-cta-box .cta-content {
    flex: 1;
}

.policies-cta-box h3 {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 5px;
}

.policies-cta-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.policies-cta-box .cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-cta-policies {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-policies:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-cta-secondary-policies {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary-policies:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

/* Policies Responsive */
@media (max-width: 991px) {
    .policies-hero-title {
        font-size: 36px;
    }

    .policy-header-epic {
        flex-direction: column;
        text-align: center;
    }

    .warranty-info {
        flex-direction: column;
    }

    .delivery-times {
        flex-direction: column;
    }

    .policies-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .policies-cta-box .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .policies-hero-epic {
        padding: 100px 0 60px;
    }

    .policies-hero-title {
        font-size: 28px;
    }

    .policies-hero-subtitle {
        font-size: 16px;
    }

    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .policies-nav-bar .nav-wrapper {
        gap: 10px;
    }

    .policy-nav-link span {
        display: none;
    }

    .policy-nav-link {
        padding: 10px 14px;
    }

    .policies-content-epic {
        padding: 40px 0 60px;
    }

    .policy-header-epic {
        padding: 20px;
    }

    .header-icon-box {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .header-info h2 {
        font-size: 18px;
    }

    .policy-body-epic {
        padding: 20px;
    }

    .policy-item {
        flex-direction: column;
        gap: 15px;
    }

    .item-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .return-highlight-box {
        flex-direction: column;
        text-align: center;
    }

    .privacy-highlight-box {
        flex-direction: column;
        text-align: center;
    }

    .shipping-map-box {
        flex-direction: column;
        text-align: center;
    }

    .policies-cta-box .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-policies,
    .btn-cta-secondary-policies {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   POLICIES EPIC PAGE STYLES
   ============================================ */

/* Policies Hero */
.policies-hero-epic {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    overflow: hidden;
}

.policies-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circuit-pattern-policies {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.floating-docs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-doc {
    position: absolute;
    font-size: 50px;
    color: rgba(59, 130, 246, 0.08);
    animation: floatDoc 8s ease-in-out infinite;
}

.float-doc:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.float-doc:nth-child(2) { top: 25%; right: 12%; animation-delay: 2s; }
.float-doc:nth-child(3) { bottom: 25%; left: 15%; animation-delay: 4s; }

@keyframes floatDoc {
    0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 0.08; }
    50% { transform: translateY(-15px) rotate(5deg); opacity: 0.15; }
}

.policies-hero-epic .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.policies-hero-epic .orb-1 {
    width: 350px;
    height: 350px;
    background: rgba(59, 130, 246, 0.12);
    top: -80px;
    right: -80px;
}

.policies-hero-epic .orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(139, 92, 246, 0.08);
    bottom: -50px;
    left: -50px;
}

.policies-hero-content {
    position: relative;
    z-index: 2;
}

.policies-hero-title {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.policies-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 35px;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-badge-mini {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.trust-badge-mini i {
    color: #10b981;
    font-size: 16px;
}

/* Policies Nav Bar */
.policies-nav-bar {
    background: #0f0f15;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.policies-nav-bar .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.nav-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-right: 4px;
}

.policy-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-nav-link i {
    font-size: 16px;
    color: var(--feyma-gold);
    flex-shrink: 0;
}

.policy-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(247, 179, 43, 0.35);
    transform: translateY(-2px);
}

.policy-nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(247,179,43,0.2) 0%, rgba(247,179,43,0.05) 100%);
    border-color: rgba(247, 179, 43, 0.5);
}

/* Policies Content */
.policies-content-epic {
    padding: 60px 0 80px;
    background: #f9fafb;
}

/* Sidebar */
.policies-sidebar {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    position: relative;
}

.policies-sidebar.is-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
    font-weight: 300;
    color: #111827;
}

.sidebar-header i {
    font-size: 18px;
    color: #3b82f6;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #4b5563;
    background: transparent;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-link i {
    font-size: 16px;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.sidebar-link:hover {
    background: #f3f4f6;
    color: #111827;
}

.sidebar-link:hover i {
    color: #3b82f6;
}

.sidebar-link.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #3b82f6;
    font-weight: 300;
}

.sidebar-link.active i {
    color: #3b82f6;
}

.sidebar-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.last-updated {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

/* Policy Sections */
.policy-section-epic {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    margin-bottom: 30px;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.policy-header-epic {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-bottom: 1px solid #e5e7eb;
}

.header-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 14px;
    color: #fff;
    font-size: 26px;
    flex-shrink: 0;
}

.header-icon-box.privacy {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.header-icon-box.returns {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.header-icon-box.shipping {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.header-info h2 {
    font-size: 22px;
    font-weight: 300;
    color: #111827;
    margin-bottom: 4px;
}

.policy-version {
    font-size: 13px;
    color: #6b7280;
}

.policy-body-epic {
    padding: 30px;
}

.policy-intro {
    padding: 20px;
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid #3b82f6;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
}

.policy-intro p {
    margin: 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
}

/* Policy Items */
.policy-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.policy-item:last-child {
    margin-bottom: 0;
}

.item-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    flex-shrink: 0;
}

.item-content h3 {
    font-size: 18px;
    font-weight: 300;
    color: #111827;
    margin-bottom: 10px;
}

.item-content p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

.item-content p:last-child {
    margin-bottom: 0;
}

/* Policy Lists */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #374151;
}

.policy-list li i {
    color: #10b981;
    font-size: 16px;
    margin-top: 2px;
}

/* Highlight Boxes */
.privacy-highlight-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    margin-bottom: 30px;
}

.privacy-highlight-box .highlight-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10b981;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.privacy-highlight-box h4 {
    font-size: 16px;
    font-weight: 300;
    color: #065f46;
    margin-bottom: 4px;
}

.privacy-highlight-box p {
    font-size: 14px;
    color: #047857;
    margin: 0;
}

/* Security Features */
.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.security-feature i {
    color: #3b82f6;
    font-size: 18px;
}

.security-feature span {
    font-size: 13px;
    color: #374151;
}

/* Return Highlight Box */
.return-highlight-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    margin-bottom: 30px;
}

.return-days {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    background: #f59e0b;
    border-radius: 12px;
    color: #fff;
}

.days-number {
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
}

.days-text {
    font-size: 14px;
    font-weight: 300;
}

.return-info h4 {
    font-size: 18px;
    font-weight: 300;
    color: #92400e;
    margin-bottom: 8px;
}

.return-info p {
    font-size: 14px;
    color: #b45309;
    margin: 0;
}

/* Conditions Grid */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.condition-item i {
    color: #f59e0b;
    font-size: 20px;
}

.condition-item span {
    font-size: 14px;
    color: #374151;
}

/* Warranty Info */
.warranty-info {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.warranty-item {
    flex: 1;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
}

.warranty-item.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: #3b82f6;
}

.warranty-time {
    font-size: 24px;
    font-weight: 300;
    color: #3b82f6;
    margin-bottom: 5px;
}

.warranty-item.highlight .warranty-time {
    color: #8b5cf6;
}

.warranty-desc {
    font-size: 13px;
    color: #6b7280;
}

/* Process Steps */
.process-steps {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.process-steps li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.process-steps li:last-child {
    border-bottom: none;
}

.process-steps .step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    flex-shrink: 0;
}

.process-steps .step-text {
    font-size: 14px;
    color: #374151;
}

/* Shipping Map Box */
.shipping-map-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(79, 70, 229, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    margin-bottom: 30px;
}

.shipping-map-box .map-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6366f1;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.shipping-map-box h4 {
    font-size: 16px;
    font-weight: 300;
    color: #4338ca;
    margin-bottom: 4px;
}

.shipping-map-box p {
    font-size: 14px;
    color: #4f46e5;
    margin: 0;
}

/* Delivery Times */
.delivery-times {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.delivery-zone {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.zone-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    color: #6366f1;
    font-size: 20px;
}

.zone-name {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #111827;
}

.zone-time {
    display: block;
    font-size: 13px;
    color: #6b7280;
}

.delivery-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    margin-top: 10px;
}

.delivery-note i {
    color: #3b82f6;
}

/* Shipping Promo */
.shipping-promo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    margin-top: 15px;
}

.shipping-promo i {
    color: #10b981;
    font-size: 22px;
}

.shipping-promo span {
    font-size: 14px;
    color: #065f46;
}

/* Policies CTA Box */
.policies-cta-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    border-radius: 16px;
    margin-top: 10px;
}

.policies-cta-box .cta-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
}

.policies-cta-box .cta-content {
    flex: 1;
}

.policies-cta-box h3 {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 5px;
}

.policies-cta-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.policies-cta-box .cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-cta-policies {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-policies:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-cta-secondary-policies {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary-policies:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

/* Policies Responsive */
@media (max-width: 991px) {
    .policies-hero-title {
        font-size: 36px;
    }

    .policy-header-epic {
        flex-direction: column;
        text-align: center;
    }

    .warranty-info {
        flex-direction: column;
    }

    .delivery-times {
        flex-direction: column;
    }

    .policies-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .policies-cta-box .cta-buttons {
        justify-content: center;
    }
}

/* ============================================
   TRACKING PAGE EPIC STYLES
   ============================================ */

/* Tracking Hero */
.tracking-hero-epic {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    overflow: hidden;
}

.tracking-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circuit-pattern-tracking {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.floating-packages {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-package {
    position: absolute;
    font-size: 50px;
    color: rgba(59, 130, 246, 0.08);
    animation: floatPackage 8s ease-in-out infinite;
}

.float-package:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.float-package:nth-child(2) { top: 30%; right: 15%; animation-delay: 2s; }
.float-package:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }

@keyframes floatPackage {
    0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 0.08; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.15; }
}

.tracking-hero-epic .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.tracking-hero-epic .orb-1 {
    width: 350px;
    height: 350px;
    background: rgba(59, 130, 246, 0.12);
    top: -80px;
    right: -80px;
}

.tracking-hero-epic .orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(139, 92, 246, 0.08);
    bottom: -50px;
    left: -50px;
}

.tracking-hero-content {
    position: relative;
    z-index: 2;
}

.tracking-hero-title {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.tracking-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto;
}

/* Tracking Search Section */
.tracking-search-section {
    padding: 60px 0;
    background: #f9fafb;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.tracking-search-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.search-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.search-card-header .header-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 14px;
    color: #fff;
    font-size: 24px;
}

.search-card-header .header-text h2 {
    font-size: 22px;
    font-weight: 300;
    color: #111827;
    margin-bottom: 4px;
}

.search-card-header .header-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Tracking Form */
.tracking-form .form-group {
    margin-bottom: 24px;
}

.tracking-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 300;
    color: #374151;
    margin-bottom: 8px;
}

.tracking-form label i {
    color: #3b82f6;
    font-size: 16px;
}

.tracking-form .form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    color: #111827;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tracking-form .form-control:focus {
    outline: none;
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.tracking-form .form-control::placeholder {
    color: #9ca3af;
}

.tracking-form .form-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #9ca3af;
}

.btn-tracking-search {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-tracking-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-tracking-search:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Tracking Messages */
.tracking-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 14px;
}

.tracking-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.tracking-message.error i {
    font-size: 20px;
}

/* Tracking Results Section */
.tracking-results-section {
    padding: 60px 0 80px;
    background: #f9fafb;
}

/* Order Status Card */
.order-status-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.order-number-display {
    display: flex;
    flex-direction: column;
}

.order-number-display .label {
    font-size: 13px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-number-display .number {
    font-size: 28px;
    font-weight: 300;
    color: #111827;
}

.order-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 300;
    border-radius: 50px;
    background: #f3f4f6;
    color: #4b5563;
}

.order-status-badge.pending,
.order-status-badge.on-hold {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.order-status-badge.processing {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.order-status-badge.shipped {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.order-status-badge.completed,
.order-status-badge.delivered {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.order-status-badge.cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* Order Timeline */
.order-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.order-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 30px;
    right: 30px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.timeline-step .step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    color: #9ca3af;
    font-size: 20px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.timeline-step.completed .step-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-color: #3b82f6;
    color: #fff;
}

.timeline-step.current .step-icon {
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2); }
    50% { box-shadow: 0 0 0 12px rgba(59, 130, 246, 0.1); }
}

.timeline-step .step-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-step .step-title {
    font-size: 13px;
    font-weight: 300;
    color: #6b7280;
}

.timeline-step.completed .step-title {
    color: #111827;
}

.timeline-step .step-date {
    font-size: 11px;
    color: #9ca3af;
}

/* Order Details Grid */
.order-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.detail-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.detail-card .detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-bottom: 1px solid #e5e7eb;
}

.detail-card .detail-header i {
    font-size: 20px;
    color: #3b82f6;
}

.detail-card .detail-header h3 {
    font-size: 15px;
    font-weight: 300;
    color: #111827;
    margin: 0;
}

.detail-card .detail-body {
    padding: 20px;
}

/* Shipping Address */
#result-shipping-address p {
    margin: 0 0 6px;
    font-size: 14px;
    color: #4b5563;
}

#result-shipping-address .address-name {
    font-weight: 300;
    color: #111827;
}

/* Tracking Info */
.tracking-info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.tracking-info-row:last-of-type {
    border-bottom: none;
}

.tracking-info-row .label {
    font-size: 13px;
    color: #6b7280;
}

.tracking-info-row .value {
    font-size: 14px;
    font-weight: 300;
    color: #111827;
}

.tracking-info-row .tracking-code {
    font-family: monospace;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 6px;
}

.btn-track-external {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 300;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-track-external:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #2563eb;
}

/* Order Items */
.order-items {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
}

.order-item .item-qty {
    font-weight: 300;
    color: #3b82f6;
    min-width: 30px;
}

.order-item .item-name {
    flex: 1;
    color: #374151;
}

.order-item .item-price {
    font-weight: 300;
    color: #111827;
}

/* Order Totals */
.order-totals .total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #6b7280;
}

.order-totals .total-row.total {
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid #e5e7eb;
    font-size: 18px;
    font-weight: 300;
    color: #111827;
}

/* Tracking Actions */
.tracking-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-new-search,
.btn-my-account {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 300;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-new-search {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.btn-new-search:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.btn-my-account {
    color: #fff;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border: none;
}

.btn-my-account:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Help Section */
.tracking-help-section {
    padding: 0 0 80px;
    background: #f9fafb;
}

.help-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 40px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    border-radius: 20px;
}

.help-card .help-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
}

.help-card .help-content {
    flex: 1;
}

.help-card h3 {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 6px;
}

.help-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.help-actions {
    display: flex;
    gap: 12px;
}

.btn-help-contact,
.btn-help-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 300;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-help-contact {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-help-contact:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.btn-help-whatsapp {
    color: #fff;
    background: #25d366;
    border: none;
}

.btn-help-whatsapp:hover {
    color: #fff;
    background: #1fb855;
    transform: translateY(-2px);
}

/* Tracking Responsive */
@media (max-width: 991px) {
    .tracking-hero-title {
        font-size: 36px;
    }

    .order-details-grid {
        grid-template-columns: 1fr;
    }

    .order-timeline {
        flex-direction: column;
        gap: 20px;
    }

    .order-timeline::before {
        top: 25px;
        bottom: 25px;
        left: 24px;
        right: auto;
        width: 4px;
        height: auto;
    }

    .timeline-step {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }

    .timeline-step .step-icon {
        margin-bottom: 0;
    }

    .help-card {
        flex-direction: column;
        text-align: center;
    }

    .help-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-help-contact,
    .btn-help-whatsapp {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .tracking-hero-epic {
        padding: 100px 0 60px;
    }

    .tracking-hero-title {
        font-size: 28px;
    }

    .tracking-hero-subtitle {
        font-size: 16px;
    }

    .tracking-search-card {
        padding: 25px;
    }

    .search-card-header {
        flex-direction: column;
        text-align: center;
    }

    .status-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .order-number-display {
        align-items: center;
    }

    .tracking-actions {
        flex-direction: column;
    }

    .btn-new-search,
    .btn-my-account {
        width: 100%;
        justify-content: center;
    }
}

/* ============================
   FAQ PAGE — Accordion épico
   ============================ */
.faq-section-epic {
    background: #fff;
}

.faq-section-epic .faq-accordion .accordion-item {
    border: 1px solid rgba(61, 49, 128, 0.15);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(61, 49, 128, 0.06);
    transition: box-shadow 0.3s ease;
}

.faq-section-epic .faq-accordion .accordion-item:hover {
    box-shadow: 0 4px 20px rgba(61, 49, 128, 0.15);
}

.faq-section-epic .faq-accordion .accordion-button {
    background: #fff;
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 300;
    padding: 1.25rem 1.5rem;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.faq-section-epic .faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--feyma-purple) 0%, #2d2460 100%);
    color: #fff;
    box-shadow: none;
}

.faq-section-epic .faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-section-epic .faq-accordion .accordion-button i {
    font-size: 18px;
    color: var(--feyma-gold);
    flex-shrink: 0;
}

.faq-section-epic .faq-accordion .accordion-button:not(.collapsed) i {
    color: var(--feyma-gold);
}

.faq-section-epic .faq-accordion .accordion-body {
    padding: 1.25rem 1.5rem;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid rgba(61, 49, 128, 0.1);
}

.faq-section-epic .faq-accordion .accordion-body a {
    color: var(--feyma-purple);
    text-decoration: underline;
}

.faq-section-epic .faq-accordion .accordion-body a:hover {
    color: var(--feyma-gold);
}

/* ============================
   POLÍTICAS — Contenido texto plano
   ============================ */
.policy-text-section {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(61, 49, 128, 0.1);
}

.policy-text-section:last-of-type {
    border-bottom: none;
}

.policy-text-section h2 {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--feyma-purple);
    margin-bottom: 0.5rem;
}

.policy-text-section .policy-meta {
    font-size: 12px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.policy-text-section h3 {
    font-size: 1.05rem;
    font-weight: 300;
    color: #1a1a2e;
    margin-top: 1.5rem;
    margin-bottom: 0.4rem;
}

.policy-text-section p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.policy-text-section ul,
.policy-text-section ol {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.75;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-text-section ul li,
.policy-text-section ol li {
    margin-bottom: 0.35rem;
}

.policy-text-section .highlight-note {
    background: rgba(61, 49, 128, 0.06);
    border-left: 3px solid var(--feyma-purple);
    border-radius: 0 8px 8px 0;
    padding: 0.85rem 1.25rem;
    margin: 1rem 0;
    font-size: 15px;
    color: #374151;
}

.policies-content-plain {
    padding: 3rem 0 4rem;
}

.policies-cta-box-plain {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--feyma-purple) 0%, #2d2460 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.policies-cta-box-plain h3 {
    color: #fff!important;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0.25rem;
}

.policies-cta-box-plain p {
    color: rgba(255,255,255,0.75);
    margin: 0;
    font-size: 14px;
}

.policies-cta-box-plain .cta-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .policies-cta-box-plain {
        flex-direction: column;
        text-align: center;
    }
    .policies-cta-box-plain .cta-buttons {
        justify-content: center;
    }
}
