:root {
    --dark-background: #0a0a0a;
    --card-background: #111111;
    --elevated-background: #1a1a1a;
    --primary-accent: #FFD700;
    --secondary-accent: #f1d63d;
    --tertiary-accent: #FF6B6B;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #707070;
    --border-color: #2a2a2a;
    --hover-glow: rgba(255, 215, 0, 0.15);

    --font-main: 'Inter', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, var(--dark-background) 0%, #0f0f0f 100%);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Floating Navigation */
/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1001;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hamburger-menu:hover {
    background: rgba(17, 17, 17, 1);
    border-color: var(--primary-accent);
}

.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
}

.hamburger-menu.active .hamburger-icon span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.hamburger-menu.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger-menu.active .hamburger-icon span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(25px);
    border-left: 2px solid var(--primary-accent);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 6rem 2.5rem 2rem;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
    transform: translateX(0);
}

.mobile-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(255, 215, 0, 0.05) 100%);
    pointer-events: none;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.mobile-nav li {
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInFromRight 0.6s ease-out forwards;
}

.mobile-nav li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav li:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav li:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 1.5rem 1.5rem;
    margin: 0.5rem 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mobile-nav a:hover {
    color: var(--primary-accent);
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-accent);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.mobile-nav a:hover::before {
    left: 100%;
}

.mobile-nav a::after {
    content: 'â†’';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    opacity: 0;
    color: var(--primary-accent);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-nav a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* TÃ­tulo del menÃº mÃ³vil */
.mobile-nav::after {
    content: 'NavegaciÃ³n';
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    color: var(--primary-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    z-index: 1000;
    transition: var(--transition-smooth);
    opacity: 0;
    animation: slideDown 1s 2s ease-out forwards;
}

@keyframes slideDown {
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.floating-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.floating-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.floating-nav a:hover, .floating-nav a.active {
    color: var(--primary-accent);
}

.floating-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-accent);
    border-radius: 1px;
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.floating-nav a:hover::after {
    transform: scaleX(1);
}

/* Utility Classes - Optimizadas para rendimiento */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* Optimizaciones de rendimiento */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling mejorado */
html {
    scroll-behavior: smooth;
}

/* Hero Section Enhanced */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, var(--dark-background) 0%, #0f0f0f 100%);
}

/* Contenedor de las partÃ­culas */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Para que no interfieran con el clic */
    z-index: 0; /* DetrÃ¡s del contenido del hÃ©roe */
    overflow: hidden; /* Evita que las partÃ­culas se salgan si se mueven mucho */
}

/* Estilo de cada partÃ­cula individual */
.particle {
    position: absolute;
    width: 2px;  /* TamaÃ±o de la partÃ­cula */
    height: 2px; /* TamaÃ±o de la partÃ­cula */
    background: var(--primary-accent); /* Color de la partÃ­cula, usa tu variable CSS */
    border-radius: 50%; /* Para hacerlas circulares */
    opacity: 0.2; /* Opacidad inicial */
    /* AnimaciÃ³n: nombre, duraciÃ³n, timing-function, iteraciÃ³n */
    animation: float 8s ease-in-out infinite;
}

/* Variaciones en la animaciÃ³n para algunas partÃ­culas */
.particle:nth-child(2n) { /* PartÃ­culas pares */
    animation-duration: 10s;
    animation-delay: -2s; /* Empieza un poco antes en el ciclo */
    width: 3px;
    height: 3px;
}
.particle:nth-child(3n) { /* MÃºltiplos de 3 */
    animation-duration: 6s;
    opacity: 0.3;
    width: 1px;
    height: 1px;
}
.particle:nth-child(5n) { /* MÃºltiplos de 5 para mÃ¡s variedad */
    animation-duration: 12s;
    opacity: 0.15;
    background: var(--secondary-accent, var(--primary-accent)); /* Usa color secundario si existe */
}

/* AnimaciÃ³n @keyframes para el movimiento de las partÃ­culas */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(90deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-25px) translateX(-5px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-10px) translateX(15px) rotate(270deg);
        opacity: 0.3;
    }
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    animation: heroFadeIn 2s ease-out forwards;
    opacity: 0;
}

@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-section h1 {
    font-family: var(--font-main);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-accent) 0%, #ffed4a 100%);
    color: #000;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    transition: var(--transition-bounce);
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.3),
        0 0 0 0 rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.4),
        0 0 0 10px rgba(255, 215, 0, 0.1);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-smooth);
}

.cta-button:hover::after {
    left: 100%;
}

/* Hero Image - Burj Khalifa */
.hero-image-left {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    height: 60vh;
    width: auto;
    opacity: 0;
    z-index: 0;
    animation: heroImageFloat 6s ease-in-out infinite, fadeInImage 1.5s ease-out 0.5s forwards;
}

@keyframes heroImageFloat {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(10px); }
}

/* Contact Image - Burj Al Arab */
.contact-image-right {
    position: absolute;
    right: 5%;
    top: 20%;
    height: 50vh;
    width: auto;
    opacity: 0;
    z-index: 0;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.2));
    animation: contactImageFloat 8s ease-in-out infinite, fadeInContactImage 1.5s ease-out 0.3s forwards;
}

@keyframes contactImageFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* AnimaciÃ³n de apariciÃ³n para imÃ¡genes */
@keyframes fadeInImage {
    0% { 
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }
    100% { 
        opacity: 0.9;
        transform: translateY(-50%) scale(1);
    }
}

/* AnimaciÃ³n de apariciÃ³n para imagen de contacto */
@keyframes fadeInContactImage {
    0% { 
        opacity: 0;
        transform: scale(0.8);
    }
    100% { 
        opacity: 0.9;
        transform: scale(1);
    }
}

/* AnimaciÃ³n para iconos */
.icon {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible .icon {
    opacity: 1;
    transform: scale(1);
}

/* AnimaciÃ³n para avatares de testimonios */
.author-avatar {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible .author-avatar {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Estilos extraÃ­dos del HTML inline */

/* Span con color de acento primario */
.primary-accent-text {
    color: var(--primary-accent);
}

/* Delays de transiciÃ³n para animaciones */
.delay-01 {
    transition-delay: 0.1s;
}

.delay-02 {
    transition-delay: 0.2s;
}

.delay-03 {
    transition-delay: 0.3s;
}

.delay-04 {
    transition-delay: 0.4s;
}

.delay-05 {
    transition-delay: 0.5s;
}

.delay-015 {
    transition-delay: 0.15s;
}

.delay-045 {
    transition-delay: 0.45s;
}

.delay-06 {
    transition-delay: 0.6s;
}

.delay-075 {
    transition-delay: 0.75s;
}

/* Estilos para secciÃ³n de contacto */
.contact-title {
    color: var(--text-primary);
}

.contact-subtitle {
    color: var(--text-secondary);
    transition-delay: 0.1s;
}

.contact-form-delay {
    transition-delay: 0.2s;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-accent);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* General Container & Section Styling */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-section {
    padding: 8rem 0;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary-accent), transparent);
    transform: translateX(-50%);
}

#why-dubai::before {
    display: none;
}

.section-title {
    text-align: center;
    font-family: var(--font-main);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 5rem auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Enhanced Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(145deg, var(--card-background) 0%, var(--elevated-background) 100%); /* Estilo C1 */
    padding: 2.5rem 2rem;
    border-radius: 18px; /* Entre C1 (20px) y C2 (16px) */
    border: 1px solid var(--border-color);
    box-shadow:
        0 8px 35px rgba(0,0,0,0.25), /* Sombra C1-like */
        inset 0 1px 0 rgba(255,255,255,0.05); /* Brillo interno sutil */
    transition: var(--transition-smooth);
    text-align: center; /* Para alinear icono y texto */
    position: relative;
    overflow: hidden;
}
/* Barra superior al hover, estilo C1 */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-accent), #FFEB3B); /* Usando colores del primario */
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 15px 50px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255, 215, 0, 0.15); /* Glow sutil al borde */
}
 .feature-card:hover::before {
    transform: scaleX(1);
}


.feature-card .icon-wrapper {
    width: 70px; /* Entre C1 (80px) y C2 (auto con padding) */
    height: 70px;
    background: linear-gradient(135deg, var(--primary-accent), #ffed4a); /* Gradiente C1 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem auto; /* Margen ajustado */
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
}

.feature-card img.icon {
    width: 36px; /* Manteniendo tamaÃ±o de C2 */
    height: 36px;
    filter: brightness(0) saturate(100%); /* Icono negro sobre fondo dorado, como C1 */
}

.feature-card h3 {
    font-family: var(--font-display); /* Fuente Display */
    font-size: 1.35rem;
    font-weight: 600; /* Un poco menos que C1 para copy mÃ¡s largo */
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* --- Process Section Styling (Simplificado pero con estÃ©tica C1) --- */
.process-timeline {
    position: relative;
    max-width: 850px; /* Ligeramente mÃ¡s ancho */
    margin: 0 auto;
}
/* LÃ­nea central del CÃ³digo 1 (modificada) */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 20px; /* Empezar despuÃ©s del nÃºmero del primer paso */
    bottom: 20px; /* Terminar antes del nÃºmero del Ãºltimo paso */
    left: 30px; /* PosiciÃ³n para que los nÃºmeros queden a la izquierda */
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-accent) 0%, var(--border-color) 20%, var(--border-color) 80%, var(--primary-accent) 100%);
    border-radius: 1px;
    opacity: 0.7;
}

.process-step-card {
    background: var(--card-background); /* Como tarjetas de C1 */
    padding: 2rem 2.5rem 2rem 3.5rem; /* Espacio para el nÃºmero */
    border-radius: 16px;
    margin-bottom: 2.5rem; /* Menos margen que C1 */
    margin-left: 70px; /* Margen para la lÃ­nea y el nÃºmero */
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.process-step-card:hover {
    transform: translateX(5px); /* Menos movimiento */
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border-color: rgba(255, 215, 0, 0.2);
}
 /* Conector horizontal a la lÃ­nea vertical */
.process-step-card::after {
    content: '';
    position: absolute;
    left: -40px; /* (70px margen izquierdo) - 30px (posiciÃ³n de la lÃ­nea) */
    top: 50%;
    transform: translateY(-50%);
    width: 38px; /* Distancia a la lÃ­nea principal */
    height: 2px;
    background-color: var(--primary-accent);
    opacity: 0.7;
}


.process-step-card .step-number { /* Estilo del C1 para los nÃºmeros */
    position: absolute;
    left: -85px; /* (70px margen) + (15px para separarlo de la linea) */
    top: 50%;
    transform: translateY(-50%);
    width: 50px; /* Reducido de C1 */
    height: 50px;
    background: linear-gradient(135deg, var(--primary-accent), #ffed4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 1.1rem; /* Reducido */
    font-weight: 700;
    color: #0a0a0a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.process-step-card .step-content h3 {
    font-family: var(--font-main);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}
.process-step-card .step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Enhanced Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
}

.testimonial-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition-smooth);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-accent);
    position: absolute;
    top: -5px;
    left: 15px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.testimonial-card .quote {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.testimonial-card .author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-accent);
}

.testimonial-card .author-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.testimonial-card .author-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Enhanced FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item details {
    background: var(--card-background);
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.faq-item details[open] {
    border-color: var(--primary-accent);
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.1);
}

.faq-item summary {
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.5rem 2rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.faq-item summary:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--primary-accent);
    transition: var(--transition-smooth);
    font-weight: 300;
}

.faq-item details[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 2rem 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Enhanced Contact Section */
.contact-section {
    background: var(--dark-background);
    padding: 8rem 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary-accent), transparent);
    transform: translateX(-50%);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--card-background), rgba(26, 26, 26, 0.95));
    padding: 5rem 4rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: var(--transition-smooth);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form-container label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    position: relative;
}

.contact-form-container label::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: var(--transition-smooth);
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 1.4rem 1.8rem;
    margin-bottom: 0.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 
        0 0 0 4px rgba(255, 215, 0, 0.15),
        0 8px 25px rgba(255, 215, 0, 0.1);
    background: var(--card-background);
    transform: translateY(-2px);
}

.contact-form-container input:focus + label::after,
.contact-form-container textarea:focus + label::after {
    width: 100%;
}

.contact-form-container textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-container {
    text-align: center;
    margin-top: 3rem;
}

.contact-form-container .cta-button {
    background: linear-gradient(135deg, var(--primary-accent), #ffed4e);
    color: var(--dark-background);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-container .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
}

.contact-form-container .cta-button:hover::before {
    left: 100%;
}

.contact-form-container .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.contact-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-accent);
}

.benefit-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Footer Enhancement */
footer {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--dark-background);
    border-top: 1px solid var(--border-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 1px;
    background: var(--primary-accent);
    transform: translateX(-50%);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

footer a {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

footer a:hover {
    color: var(--secondary-accent);
}

/* Estilos del footer */
.footer-main {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--primary-accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-legal-notice {
    background: rgba(255, 193, 7, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-top: 3px solid var(--primary-accent);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-legal-notice strong {
    color: var(--primary-accent);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.footer-copyright {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    width: 100%;
}

.scroll-down-indicator { /* Del CÃ³digo 2, se mantiene */
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary); /* Usar color del C1 */
    border-radius: 12px;
    opacity: 0.6; /* Ligeramente menos opaco */
}
.scroll-down-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--text-secondary);
    border-radius: 2px;
    animation: scrollIndicatorAnimation 2s infinite ease-in-out;
}
@keyframes scrollIndicatorAnimation {
    0%, 100% { opacity: 0; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 6px); }
}

/* Responsive */

/* Extra Large Screens */
@media (min-width: 1400px) {
    .page-container { max-width: 1400px; }
    .hero-section h1 { font-size: 6rem; }
    .features-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Large Screens */
@media (max-width: 1399px) {
    .page-container { max-width: 1200px; padding: 0 2rem; }
}

/* Medium-Large Screens */
@media (max-width: 1199px) {
    .page-container { padding: 0 1.5rem; }
    .hero-section { padding: 2rem 1rem; }
    .hero-image-left { height: 50vh; left: 3%; }
    .contact-image-right { height: 45vh; right: 3%; }
    .features-grid, .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* Tablets */
@media (max-width: 991px) {
    .floating-nav { display: none; }
    .hamburger-menu { display: block; }
    .mobile-nav { display: block; }
    
    .hero-section {
        min-height: 100vh;
        padding: 2rem 1.5rem;
        justify-content: center;
    }
    .hero-content { 
        max-width: 100%; 
        padding: 0 1rem;
        margin: 0 auto;
        text-align: center;
    }
    .hero-section h1 {
        font-size: clamp(2.8rem, 7vw, 4.5rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
        letter-spacing: -0.05em;
        word-spacing: 0.1em;
    }
    .hero-section .subtitle {
        font-size: clamp(1.2rem, 3.2vw, 1.5rem);
        margin-bottom: 3rem;
        line-height: 1.5;
        max-width: 100%;
        padding: 0 1rem;
        white-space: normal;
        word-wrap: break-word;
    }
    .cta-button { padding: 1.2rem 3.5rem; font-size: 1.2rem; }
    
    .content-section::before { display: none; }
    .contact-section::before { display: none; }
    .content-section { padding: 3rem 0; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    
    .process-step-card { margin-left: 50px; padding: 2rem; }
    .process-step-card .step-number { left: -70px; width: 45px; height: 45px; }
    
    .stats-section { padding: 2.5rem 0; }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
        padding: 0 1rem;
        margin: 1.5rem auto;
    }
    .stat-item { padding: 1rem 0.6rem; text-align: center; }
    .stat-number { font-size: 2rem; margin-bottom: 0.4rem; }
    .stat-label { font-size: 0.85rem; line-height: 1.3; }
    
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .contact-form-container { padding: 2.5rem 2rem; margin: 0 1rem; }
    .form-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-benefits { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
    .footer-legal-notice { padding: 1.2rem 1.5rem; margin-bottom: 1.5rem; }
}

/* Large Mobile/Small Tablets */
@media (max-width: 767px) {
    .floating-nav, .hero-image-left, .contact-image-right { display: none; }
    .hamburger-menu { display: block; }
    .mobile-nav { display: block; }
    
    .hero-section {
        min-height: 95vh;
        padding: 1.5rem 1rem;
        justify-content: center;
    }
    .hero-content { 
        max-width: 100%; 
        padding: 0 0.5rem;
        margin: 0 auto;
        text-align: center;
    }
    .hero-section h1 {
        font-size: clamp(2.2rem, 9vw, 4rem);
        line-height: 1.2;
        margin-bottom: 1.2rem;
        letter-spacing: -0.05em;
        word-spacing: 0.15em;
    }
    .hero-section .subtitle {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
        margin-bottom: 2.5rem;
        line-height: 1.5;
        max-width: 100%;
        padding: 0 0.5rem;
        white-space: normal;
        word-wrap: break-word;
    }
    .cta-button { padding: 1.1rem 3rem; font-size: 1.1rem; }
    
    .content-section::before { display: none; }
    .contact-section::before { display: none; }
    .content-section { padding: 2.5rem 0; }
    .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .process-timeline::before { left: 20px; }
    .process-step-card {
        margin-left: 45px;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    .process-step-card::after { left: -25px; width: 23px; }
    .process-step-card .step-number {
        left: -65px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .stats-section { padding: 2rem 0; }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        max-width: 100%;
        padding: 0 0.8rem;
        margin: 1rem auto;
    }
    .stat-item { padding: 0.8rem 0.4rem; text-align: center; }
    .stat-number { font-size: 1.8rem; margin-bottom: 0.3rem; }
    .stat-label { font-size: 0.8rem; line-height: 1.3; }
    
    .testimonial-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-section { padding: 4rem 0; }
    .contact-form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 12px;
    }
    .form-header h3 { font-size: 1.4rem; }
    .form-header p { font-size: 0.95rem; }
    .contact-benefits { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
    .benefit-item { padding: 1rem; }
    .footer-legal-notice {
        padding: 1rem 1.2rem;
        margin-bottom: 1.2rem;
        max-width: 100%;
    }
    .footer-legal-notice p { font-size: 0.85rem; line-height: 1.5; }
}

/* Standard Mobile */
@media (max-width: 575px) {
    .page-container { padding: 0 1rem; }
    
    .hamburger-menu {
         top: 1rem;
         right: 1rem;
         padding: 0.6rem;
     }
     
     .mobile-nav {
         width: 100%;
         right: -100%;
         padding: 5rem 2rem 2rem;
     }
     
     .mobile-nav a {
         font-size: 1.1rem;
         padding: 1.2rem 1.2rem;
     }
     
     .mobile-nav::after {
         top: 1.5rem;
         left: 2rem;
         font-size: 0.8rem;
     }
    
    .hero-section {
        min-height: 90vh;
        padding: 1rem 0.5rem;
        justify-content: center;
    }
    .hero-content { 
        max-width: 100%; 
        padding: 0 0.25rem;
        margin: 0 auto;
        text-align: center;
    }
    .hero-section h1 {
        font-size: clamp(2rem, 11vw, 3.2rem);
        margin-bottom: 1rem;
        line-height: 1.3;
        letter-spacing: -0.04em;
        word-spacing: 0.2em;
    }
    .hero-section .subtitle {
        font-size: clamp(1rem, 5vw, 1.2rem);
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        line-height: 1.4;
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
    }
    .cta-button { padding: 1rem 2.5rem; font-size: 1rem; }
    
    .content-section::before { display: none; }
    .contact-section::before { display: none; }
    .content-section { padding: 2rem 0; }
    
    .process-step-card { margin-left: 35px; padding: 1.2rem; }
    .process-step-card .step-number {
        left: -55px;
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .stats-section { padding: 1.5rem 0; }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        max-width: 100%;
        padding: 0 0.5rem;
        margin: 1rem auto;
    }
    .stat-item { padding: 0.6rem 0.2rem; text-align: center; }
    .stat-number { font-size: 1.6rem; margin-bottom: 0.2rem; }
    .stat-label { font-size: 0.75rem; line-height: 1.2; }
    
    .contact-form-container { padding: 1.5rem 1rem; margin: 0 0.5rem; }
    .form-header { margin-bottom: 1.5rem; }
    .form-header h3 { font-size: 1.2rem; }
    .form-header p { font-size: 0.9rem; }
    .contact-form-container input,
    .contact-form-container textarea { padding: 1rem 1.2rem; font-size: 0.9rem; }
    .contact-form-container .cta-button { padding: 0.9rem 2rem; font-size: 0.95rem; }
    .footer-legal-notice { padding: 0.8rem 1rem; border-radius: 8px; }
    .footer-legal-notice p { font-size: 0.8rem; line-height: 1.4; }
}

/* Small Mobile */
@media (max-width: 479px) {
    .page-container { padding: 0 0.75rem; }
    
    .hamburger-menu {
         top: 0.8rem;
         right: 0.8rem;
         padding: 0.5rem;
     }
     
     .hamburger-icon {
         width: 20px;
         height: 16px;
     }
     
     .mobile-nav {
         width: 100%;
         padding: 4.5rem 1.5rem 2rem;
     }
     
     .mobile-nav a {
         font-size: 1rem;
         padding: 1rem 1rem;
     }
     
     .mobile-nav::after {
         top: 1.2rem;
         left: 1.5rem;
         font-size: 0.75rem;
     }
    
    .hero-section {
        padding: 0.6rem 0.25rem;
        min-height: 100vh;
        justify-content: center;
    }
    .hero-content { 
        max-width: 100%; 
        padding: 0;
        margin: 0 auto;
        text-align: center;
    }
    .hero-section h1 {
        font-size: clamp(1.8rem, 13vw, 2.8rem);
        line-height: 1.2;
        margin-bottom: 0.8rem;
        letter-spacing: -0.03em;
        word-spacing: 0.25em;
    }
    .hero-section .subtitle {
        font-size: clamp(0.95rem, 6vw, 1.1rem);
        padding: 0 0.5rem;
        margin-bottom: 1.8rem;
        line-height: 1.4;
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
    }
    .cta-button { padding: 0.9rem 2rem; font-size: 0.95rem; margin-top: 0.3rem; }
    
    .content-section::before { display: none; }
    .contact-section::before { display: none; }
    .content-section { padding: 1.5rem 0; }
    
    .stats-section { padding: 1rem 0; }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
        max-width: 100%;
        padding: 0 0.25rem;
        margin: 0.8rem auto;
    }
    .stat-item { padding: 0.5rem 0.15rem; text-align: center; }
    .stat-number { font-size: 1.4rem; margin-bottom: 0.1rem; }
    .stat-label { font-size: 0.7rem; line-height: 1.1; }
    
    .contact-form-container { padding: 1.2rem 0.75rem; margin: 0 0.25rem; }
    .footer-legal-notice { padding: 0.6rem 0.8rem; margin-bottom: 1rem; }
    .footer-legal-notice p { font-size: 0.75rem; line-height: 1.3; }
}

/* OrientaciÃ³n y Optimizaciones */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section { min-height: 100vh; padding: 1rem; }
    .hero-section h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .hero-section .subtitle { font-size: clamp(0.85rem, 2.5vw, 1rem); margin-bottom: 1.5rem; }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image-left, .contact-image-right {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { transition: none; transform: none; opacity: 1; }
    html { scroll-behavior: auto; }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .particle, .hero-image-left, .contact-image-right { animation: none; }
}

@media print {
    .floating-nav, .hero-particles, .particle, .hero-image-left, .contact-image-right { display: none; }
    .hero-section { height: auto; padding: 2rem 0; }
    .content-section { padding: 1rem 0; }
    .page-container { max-width: 100%; padding: 0; }
}