/* ========================================
   Variables de Color y Configuración
======================================== */
:root {
    --primary-orange: #FF6B35;
    --primary-blue: #004E89;
    --primary-purple: #7B2CBF;
    --primary-yellow: #FFD23F;
    --primary-green: #06D6A0;
    
    --dark-bg: #0F1419;
    --dark-card: #1A1F26;
    --text-primary: #FFFFFF;
    --text-secondary: #A0AEC0;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    --gradient-blue: linear-gradient(135deg, var(--primary-blue), #0077B6);
    --gradient-success: linear-gradient(135deg, var(--primary-green), #00B4D8);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Reset y Estilos Base
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Navegación
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-brand i {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(123, 44, 191, 0.1), transparent 50%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.25rem;
    background: var(--dark-card);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.badge i {
    color: var(--primary-orange);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Browser Mockup */
.hero-visual {
    position: relative;
}

.browser-mockup {
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

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

.browser-header {
    background: #2D3748;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #FF5F56; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #27C93F; }

.browser-url {
    flex: 1;
    background: #1A202C;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.browser-content {
    padding: 40px;
    min-height: 300px;
}

.mockup-lines {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.line {
    height: 12px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.3), rgba(123, 44, 191, 0.3));
    border-radius: 6px;
    animation: pulse 2s ease-in-out infinite;
}

.line.short {
    width: 70%;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    animation: slideUp 0.6s ease-out backwards;
}

.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

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

/* ========================================
   SEO Banner
======================================== */
.seo-banner {
    background: var(--gradient-blue);
    padding: 3rem 0;
    margin: 4rem 0;
}

.seo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.seo-icon {
    font-size: 4rem;
    color: var(--primary-yellow);
}

.seo-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.seo-text p {
    color: rgba(255, 255, 255, 0.9);
}

.seo-stats {
    display: flex;
    gap: 2rem;
}

.seo-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.seo-stat i {
    color: var(--primary-yellow);
    font-size: 1.5rem;
}

/* ========================================
   Botones
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
}

/* ========================================
   Secciones Generales
======================================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ========================================
   Servicios
======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card[data-color="orange"]::before {
    background: var(--primary-orange);
}

.service-card[data-color="purple"]::before {
    background: var(--primary-purple);
}

.service-card[data-color="blue"]::before {
    background: var(--primary-blue);
}

.service-card[data-color="yellow"]::before {
    background: var(--primary-yellow);
}

.service-card[data-color="green"]::before {
    background: var(--primary-green);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: var(--primary-purple);
    box-shadow: 0 0 30px rgba(123, 44, 191, 0.3);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-purple);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.service-card[data-color="orange"] .service-icon {
    color: var(--primary-orange);
}

.service-card[data-color="purple"] .service-icon {
    color: var(--primary-purple);
}

.service-card[data-color="blue"] .service-icon {
    color: var(--primary-blue);
}

.service-card[data-color="yellow"] .service-icon {
    color: var(--primary-yellow);
}

.service-card[data-color="green"] .service-icon {
    color: var(--primary-green);
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.service-features li i {
    color: var(--primary-green);
    font-size: 1rem;
}

.service-price {
    margin: 2rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.price-breakdown {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.btn-service {
    width: 100%;
    justify-content: center;
    background: var(--dark-bg);
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-service:hover {
    background: var(--primary-orange);
    color: white;
}

.domain-info {
    background: var(--dark-card);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.domain-info i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.service-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(0, 78, 137, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary-blue);
}

.whatsapp-number {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-number i {
    color: #25D366;
}

/* ========================================
   Sección Entiende Qué Contratas
======================================== */
.understand-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.understand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.understand-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
}

.understand-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-lg);
}

.understand-animation {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
}

/* Animación Web Sencilla */
.animation-web {
    width: 150px;
}

.web-screen {
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: var(--shadow-md);
    animation: webPulse 3s ease-in-out infinite;
}

@keyframes webPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.web-header {
    height: 8px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-purple));
    border-radius: 4px;
    margin-bottom: 10px;
}

.web-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.web-text {
    height: 6px;
    background: #E2E8F0;
    border-radius: 3px;
}

.web-text.short {
    width: 60%;
}

/* Animación E-commerce */
.animation-ecommerce {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ecommerce-product {
    background: white;
    border-radius: 12px;
    padding: 15px;
    width: 100px;
    box-shadow: var(--shadow-md);
    animation: productFloat 2s ease-in-out infinite;
}

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

.product-img {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    border-radius: 8px;
    margin-bottom: 8px;
}

.product-details {
    height: 4px;
    background: #E2E8F0;
    border-radius: 2px;
    margin-bottom: 4px;
}

.cart-icon {
    font-size: 3rem;
    color: var(--primary-purple);
    animation: cartBounce 1s ease-in-out infinite;
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Animación SEO */
.animation-seo {
    width: 180px;
}

.seo-search {
    background: white;
    border-radius: 30px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-md);
    animation: searchPulse 2s ease-in-out infinite;
}

@keyframes searchPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4); }
}

.seo-search i {
    color: #4285F4;
    font-size: 1.5rem;
}

.search-bar {
    flex: 1;
    height: 6px;
    background: #E2E8F0;
    border-radius: 3px;
}

.seo-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.result {
    background: rgba(255, 255, 255, 0.9);
    height: 30px;
    border-radius: 6px;
    opacity: 0.5;
}

.result.highlight {
    border-left: 4px solid var(--primary-orange);
    opacity: 1;
    animation: resultGlow 2s ease-in-out infinite;
}

@keyframes resultGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(255, 107, 53, 0); }
    50% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
}

/* Animación SEM */
.animation-sem {
    width: 180px;
}

.sem-ad {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--primary-blue);
    animation: adPop 3s ease-in-out infinite;
}

@keyframes adPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ad-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-bottom: 8px;
}

.ad-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ad-title {
    height: 8px;
    background: #2D3748;
    border-radius: 4px;
}

.ad-desc {
    height: 5px;
    background: #E2E8F0;
    border-radius: 3px;
}

.sem-clicks {
    text-align: center;
    margin-top: 15px;
    font-size: 2rem;
    color: var(--primary-blue);
    animation: clickPulse 1.5s ease-in-out infinite;
}

@keyframes clickPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

/* Animación Email Marketing */
.animation-email {
    position: relative;
}

.email-envelope {
    position: relative;
    width: 120px;
    height: 80px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: envelopeShake 3s ease-in-out infinite;
}

@keyframes envelopeShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.email-envelope i {
    font-size: 3rem;
    color: var(--primary-yellow);
}

.email-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.email-lines span {
    width: 60px;
    height: 3px;
    background: #2D3748;
    border-radius: 2px;
}

.email-send {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--primary-yellow);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: sendPulse 2s ease-in-out infinite;
}

@keyframes sendPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(15deg); }
}

.email-send i {
    color: white;
    font-size: 1.2rem;
}

/* Animación Google My Business */
.animation-gmb {
    width: 150px;
}

.gmb-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: var(--shadow-md);
    animation: gmbFloat 3s ease-in-out infinite;
}

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

.gmb-photo {
    width: 100%;
    height: 70px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    border-radius: 8px;
    margin-bottom: 10px;
}

.gmb-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gmb-name {
    height: 8px;
    background: #2D3748;
    border-radius: 4px;
}

.gmb-stars {
    display: flex;
    gap: 3px;
}

.gmb-stars i {
    color: #FBBC04;
    font-size: 0.9rem;
    animation: starTwinkle 1.5s ease-in-out infinite;
}

.gmb-stars i:nth-child(2) { animation-delay: 0.1s; }
.gmb-stars i:nth-child(3) { animation-delay: 0.2s; }
.gmb-stars i:nth-child(4) { animation-delay: 0.3s; }
.gmb-stars i:nth-child(5) { animation-delay: 0.4s; }

@keyframes starTwinkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.understand-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.understand-card h3 i {
    color: var(--primary-orange);
}

.understand-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.understand-card p strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

/* ========================================
   Precios
======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-purple);
    box-shadow: 0 0 30px rgba(123, 44, 191, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: var(--primary-orange);
    vertical-align: super;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.pricing-price .period {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.pricing-features li i {
    color: var(--primary-green);
}

.btn-pricing {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    justify-content: center;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.pricing-note {
    background: var(--dark-card);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid rgba(0, 78, 137, 0.3);
}

.pricing-note i {
    font-size: 2rem;
    color: var(--primary-blue);
}

/* ========================================
   Promoción Especial
======================================== */
.promo-section {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    padding: 4rem 0;
}

.promo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.promo-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.promo-icon {
    font-size: 4rem;
    color: var(--primary-yellow);
}

.promo-text h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.promo-text .highlight {
    color: var(--primary-yellow);
    font-weight: 700;
}

.promo-value {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.promo-timer {
    text-align: center;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.countdown {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    min-width: 80px;
}

.countdown-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.promo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.benefit-item i {
    color: var(--primary-yellow);
    font-size: 1.5rem;
}

.btn-promo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: var(--primary-yellow);
    color: var(--dark-bg);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(255, 210, 63, 0.4);
}

.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 210, 63, 0.6);
}

/* ========================================
   Por Qué Elegirnos
======================================== */
.why-us {
    background: var(--dark-card);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-secondary);
}

/* ========================================
   Plan de Referidos
======================================== */
.referral-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(123, 44, 191, 0.1));
    padding: 5rem 0;
}

.referral-card {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.3);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.referral-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
}

.referral-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.referral-card > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.referral-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.referral-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
}

.referral-benefit i {
    color: var(--primary-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.referral-benefit span {
    color: var(--text-secondary);
}

.btn-referral {
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    transition: var(--transition);
}

.btn-referral:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

/* ========================================
   Contacto y Agendamiento
======================================== */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.contact-card {
    background: var(--dark-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-card {
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-card:hover {
    border-color: #25D366;
}

.schedule-card {
    border-color: rgba(0, 78, 137, 0.3);
}

.schedule-card:hover {
    border-color: var(--primary-blue);
}

.contact-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(255, 107, 53, 0); }
}

.whatsapp-card .contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.schedule-card .contact-icon {
    background: var(--gradient-blue);
}

.contact-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-schedule {
    background: var(--gradient-blue);
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-schedule:hover {
    transform: translateY(-2px);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.trust-badge i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

/* ========================================
   Sección de Proceso
======================================== */
.process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0a1a 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-slow 8s ease-in-out infinite;
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-slow 8s ease-in-out infinite reverse;
}

.process-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Instrucción de interacción */
.process-instruction {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(123, 44, 191, 0.1));
    border-radius: 16px;
    border: 2px dashed var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: pulse-instruction 2s ease-in-out infinite;
}

@keyframes pulse-instruction {
    0%, 100% {
        transform: scale(1);
        border-color: var(--primary-orange);
    }
    50% {
        transform: scale(1.02);
        border-color: var(--primary-purple);
    }
}

.process-instruction i {
    font-size: 2rem;
    color: var(--primary-orange);
    animation: point-finger 1.5s ease-in-out infinite;
}

@keyframes point-finger {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

.process-instruction p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Navegación de pasos */
.process-navigation {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 1rem;
    background: var(--dark-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
}

/* Cursor animado que recorre los primeros 3 pasos */
.process-navigation::before {
    content: '👆';
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    pointer-events: none;
    animation: cursor-guide 6s ease-in-out infinite;
    z-index: 10;
}

@keyframes cursor-guide {
    0%, 100% {
        opacity: 0;
        left: calc(12.5% - 10px);
        top: -40px;
    }
    5%, 25% {
        opacity: 1;
        left: calc(12.5% - 10px);
        top: -40px;
    }
    30%, 50% {
        opacity: 1;
        left: calc(25% - 10px);
        top: -40px;
    }
    55%, 75% {
        opacity: 1;
        left: calc(37.5% - 10px);
        top: -40px;
    }
    80% {
        opacity: 0;
        left: calc(37.5% - 10px);
        top: -40px;
    }
}

.process-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.process-nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.process-nav-btn.active::after {
    width: 80%;
}

.process-nav-btn:hover {
    background: rgba(255, 107, 53, 0.05);
}

.process-nav-btn.active {
    background: rgba(255, 107, 53, 0.1);
}

.nav-number {
    width: 35px;
    height: 35px;
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.process-nav-btn.active .nav-number {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.process-nav-btn.payment-step.active .nav-number {
    animation: pulse-payment 1.5s ease-in-out infinite;
}

@keyframes pulse-payment {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
}

.nav-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: center;
}

.process-nav-btn.active .nav-label {
    color: var(--primary-orange);
}

/* Contenido de pasos */
.process-content-wrapper {
    position: relative;
    min-height: 500px;
    margin-bottom: 2rem;
}

.process-step-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.process-step-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

/* Visual del paso */
.step-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.step-icon {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.gradient-orange {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.gradient-blue {
    background: linear-gradient(135deg, #4A90E2, #2E5BFF);
}

.gradient-purple {
    background: linear-gradient(135deg, #7B2CBF, #9D4EDD);
}

.gradient-green {
    background: linear-gradient(135deg, #06D6A0, #1B9AAA);
}

/* Decoración flotante */
.step-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 20px;
    opacity: 0.1;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--primary-orange);
    top: 10%;
    left: 10%;
    animation: float-shape 4s ease-in-out infinite;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--primary-purple);
    bottom: 15%;
    right: 10%;
    animation: float-shape 5s ease-in-out infinite reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    top: 50%;
    right: 5%;
    animation: float-shape 6s ease-in-out infinite;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(20px, -20px) rotate(120deg);
    }
    66% {
        transform: translate(-10px, 10px) rotate(240deg);
    }
}

/* Información del paso */
.step-info {
    padding: 2rem;
}

.step-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-badge.payment {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.step-badge.ongoing {
    background: rgba(77, 144, 254, 0.2);
    color: #4D90FE;
    border: 2px solid #4D90FE;
}

.step-info h3 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-color);
    font-size: 1rem;
}

.step-features i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Controles de navegación */
.process-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
}

.process-control-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--dark-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-control-btn:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.process-control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.process-control-btn:disabled:hover {
    transform: none;
    background: var(--dark-card);
    border-color: var(--border-color);
    box-shadow: none;
}

.process-progress {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    padding: 1rem 2rem;
    background: var(--dark-card);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

#currentStepNum {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

/* Barra de progreso */
.process-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--dark-card);
    border-radius: 10px;
    margin-top: 2rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 12.5%;
}

/* ========================================
   Modal y Agendamiento
======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--dark-card);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    border: none;
    color: var(--primary-orange);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-orange);
    color: white;
    transform: rotate(90deg);
}

.scheduler-modal {
    padding: 3rem;
}

.scheduler-header {
    text-align: center;
    margin-bottom: 2rem;
}

.scheduler-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.scheduler-header h2 i {
    color: var(--primary-orange);
}

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

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav {
    background: var(--dark-bg);
    border: none;
    color: var(--primary-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-nav:hover {
    background: var(--primary-orange);
    color: white;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.day-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 8px 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--dark-bg);
    color: var(--text-primary);
    font-weight: 500;
}

.calendar-day:hover:not(.disabled):not(.other-month) {
    background: var(--primary-orange);
    color: white;
}

.calendar-day.selected {
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.other-month {
    opacity: 0.2;
    cursor: default;
}

.scheduler-time h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.time-slot {
    padding: 1rem;
    background: var(--dark-bg);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-weight: 500;
}

.time-slot:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
}

.time-slot.selected {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-orange);
}

.time-slot.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.no-selection {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem;
}

.scheduler-form {
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.scheduler-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-orange);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

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

.selected-datetime {
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-orange);
}

.selected-datetime i {
    color: var(--primary-orange);
    margin-right: 10px;
}

.btn-confirm {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem;
    font-size: 1.1rem;
    justify-content: center;
}

.btn-confirm:hover {
    transform: translateY(-2px);
}

/* ========================================
   Panel de Administración
======================================== */
.admin-panel {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
}

.admin-toggle {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: adminPulse 2s ease-in-out infinite;
}

@keyframes adminPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(255, 107, 53, 0.8); }
}

.admin-toggle:hover {
    transform: scale(1.1) rotate(90deg);
}

.admin-toggle i {
    font-size: 1.5rem;
    color: white;
}

.admin-content {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 450px;
    max-height: 600px;
    background: var(--dark-card);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-content.active {
    display: flex;
}

.admin-header {
    padding: 1.5rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h3 {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-header h3 i {
    color: var(--primary-orange);
}

.admin-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.admin-close:hover {
    color: var(--primary-orange);
}

.admin-tabs {
    display: flex;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.admin-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.admin-tab:hover {
    color: var(--primary-orange);
}

.admin-tab.active {
    color: var(--primary-orange);
}

.admin-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-orange);
}

.notification-badge {
    background: var(--primary-orange);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.admin-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.appointments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.appointment-item {
    background: var(--dark-bg);
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
}

.appointment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.appointment-name {
    font-weight: 600;
}

.appointment-datetime {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.appointment-datetime i {
    color: var(--primary-orange);
}

.appointment-contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.appointment-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.btn-approve,
.btn-reject {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-approve {
    background: var(--primary-green);
    color: white;
}

.btn-approve:hover {
    background: #05B38A;
}

.btn-reject {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-orange);
}

.btn-reject:hover {
    background: var(--primary-orange);
    color: white;
}

.no-data {
    text-align: center;
    color: var(--text-secondary);
    padding: 3rem 1rem;
}

.availability-settings {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.availability-settings h4 {
    margin-bottom: 1rem;
}

.day-settings {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--dark-bg);
    border-radius: 12px;
}

.day-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.day-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.time-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-range input[type="time"] {
    padding: 0.5rem;
    background: var(--dark-card);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
}

.btn-save-availability {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-save-availability:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--dark-card);
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

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

.footer-brand h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand h3 i {
    color: var(--primary-orange);
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 10px;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-orange);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    color: var(--text-secondary);
}

/* ========================================
   WhatsApp Flotante
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Modal de WhatsApp */
.whatsapp-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: var(--dark-card);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.whatsapp-modal.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.whatsapp-modal-header {
    background: #25D366;
    padding: 1rem 1.5rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.whatsapp-avatar {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 1.5rem;
}

.whatsapp-header-info h3 {
    margin: 0;
    font-size: 1.1rem;
}

.whatsapp-header-info p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.whatsapp-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-modal-body {
    padding: 1.5rem;
}

.whatsapp-message {
    background: var(--dark-bg);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
}

.whatsapp-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent var(--dark-bg) transparent transparent;
}

.whatsapp-message p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

#whatsappMessage {
    width: 100%;
    padding: 0.75rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.3s;
}

#whatsappMessage:focus {
    outline: none;
    border-color: #25D366;
}

.whatsapp-modal-footer {
    padding: 0 1.5rem 1.5rem;
}

.btn-send-whatsapp {
    width: 100%;
    padding: 0.9rem;
    background: #25D366;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-send-whatsapp:hover {
    background: #20bd5a;
}

.btn-send-whatsapp i {
    font-size: 1.2rem;
}

/* ========================================
   Scroll to Top
======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Toast Notifications
======================================== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--dark-card);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    animation: toastSlideIn 0.3s ease-out;
    border-left: 4px solid var(--primary-orange);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.success {
    border-left-color: var(--primary-green);
}

.toast.error {
    border-left-color: #EF4444;
}

.toast.info {
    border-left-color: var(--primary-blue);
}

.toast i {
    font-size: 1.5rem;
}

.toast.success i {
    color: var(--primary-green);
}

.toast.error i {
    color: #EF4444;
}

.toast.info i {
    color: var(--primary-blue);
}

.toast-message {
    flex: 1;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.toast-close:hover {
    color: var(--primary-orange);
}

/* ========================================
   Animaciones de Entrada
======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        order: -1;
    }
    
    .scheduler-body {
        grid-template-columns: 1fr;
    }
    
    .admin-content {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark-card);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        display: none;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .seo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .understand-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-offer {
        flex-direction: column;
    }
    
    .countdown {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .admin-panel {
        bottom: 20px;
        right: 20px;
    }
    
    .admin-content {
        width: calc(100vw - 40px);
        right: -20px;
        max-height: 70vh;
    }
    
    .process-instruction {
        flex-direction: column;
        padding: 1rem;
    }

    .process-instruction i {
        font-size: 1.5rem;
    }

    .process-instruction p {
        font-size: 0.95rem;
    }

    .process-navigation {
        gap: 0.25rem;
        padding: 0.75rem;
    }

    .process-navigation::before {
        display: none;
    }

    .process-nav-btn {
        padding: 0.75rem 0.5rem;
    }

    .nav-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .nav-label {
        font-size: 0.65rem;
    }

    .process-step-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-visual {
        min-height: 300px;
    }

    .step-icon {
        width: 150px;
        height: 150px;
        font-size: 3.5rem;
    }

    .step-info h3 {
        font-size: 1.8rem;
    }

    .process-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .process-control-btn {
        width: 100%;
        justify-content: center;
    }

    .process-progress {
        width: 100%;
        text-align: center;
    }

    .whatsapp-float {
        right: 20px;
        bottom: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .whatsapp-modal {
        right: 20px;
        bottom: 85px;
        width: calc(100vw - 40px);
        max-width: 350px;
    }

    .scroll-top {
        right: 20px;
        bottom: 90px;
    }
    
    .toast-container {
        right: 20px;
        left: 20px;
    }
    
    .toast {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .time-slots {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Scrollbar Personalizada
======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple);
}
/* ========================================
   Sección Nuestros Clientes
======================================== */
.clients-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.05) 0%, rgba(123, 44, 191, 0.05) 100%);
    position: relative;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

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

.client-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.client-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.client-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 107, 53, 0.08);
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
    gap: 15px;
}

.client-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.15);
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
}

.client-badge i {
    font-size: 12px;
}

.client-badge.premium {
    color: var(--primary-yellow);
    background: rgba(255, 210, 63, 0.15);
}

.client-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.client-link:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.client-preview {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-image {
    width: 100%;
    height: 100%;
}

.client-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.client-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.client-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.12);
    padding: 6px 12px;
    border-radius: 6px;
}

.feature-tag i {
    font-size: 11px;
}

.client-highlight {
    font-size: 13px;
    color: var(--text-secondary);
    background: rgba(255, 107, 53, 0.08);
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-orange);
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-client {
    align-self: flex-start;
    padding: 12px 24px;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-top: auto;
}

.btn-client:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateX(4px);
}

.btn-client.btn-primary {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.btn-client.btn-primary:hover {
    background: #E55A2B;
    border-color: #E55A2B;
}

.clients-cta {
    text-align: center;
    padding: 30px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
}

.clients-cta p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.clients-cta p i {
    color: var(--primary-orange);
    font-size: 20px;
}

.btn-cta {
    padding: 12px 32px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .clients-section {
        padding: 60px 20px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .client-card {
        border-radius: 12px;
    }

    .client-info {
        padding: 20px;
    }

    .client-name {
        font-size: 18px;
    }

    .client-features {
        gap: 8px;
    }

    .feature-tag {
        font-size: 11px;
    }
}