/* ===== MODERN PROFESSIONAL DESIGN ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --primary-color: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    
    /* Accent Colors */
    --accent-color: #06b6d4;
    --accent-light: #67e8f9;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --dark: #0f172a;
    
    /* Theme Colors */
    --text-color: var(--gray-800);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --surface-color: var(--gray-50);
    --border-color: var(--gray-200);
    --card-bg: var(--white);
    --input-bg: var(--white);
    --secondary-color: #2563eb;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Borders */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
    --border-radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    transition: var(--transition-fast);
}

/* ===== MODERN HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(29, 78, 216, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.logo-text:hover {
    transform: scale(1.05);
}

.logo-text:hover .logo-insta {
    animation: pulse 0.6s ease-in-out;
}

.logo-text:hover .logo-boost {
    animation: glow 0.6s ease-in-out;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
    }
    50% {
        text-shadow: 0 4px 8px rgba(251, 191, 36, 0.6), 0 0 20px rgba(251, 191, 36, 0.4);
    }
}

.logo-insta {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.logo-bot {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.logo-boost {
    color: #ff1744;
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.5), 0 2px 4px rgba(255, 23, 68, 0.3);
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.navbar__link {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--border-radius-sm);
    position: relative;
    transition: var(--transition-fast);
    text-decoration: none;
    letter-spacing: 0.025em;
}

.navbar__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
    border-radius: 1px;
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.navbar__link.active::after {
    width: 100%;
}

/* Modern Toggle Switch */
.color-mode-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}
  
  .color-mode-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
    border-radius: var(--border-radius-full);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background: var(--white);
    transition: var(--transition-normal);
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-md);
}

  input:checked + .slider {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    border-color: rgba(251, 191, 36, 0.5);
  }
  
  input:checked + .slider:before {
    transform: translateX(24px);
    background: var(--white);
}

/* Mobile Menu */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.navbar__hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
}

.navbar__hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: var(--border-radius-full);
    transition: var(--transition-normal);
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.seccion-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding-top: 80px;
}

.seccion-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.container-login {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    background: none;
    backdrop-filter: none;
}

.contenedor-derecha {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.titulo-derecha {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.titulo-derecha .highlight {
    color: #00bfff;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.4), 0 2px 4px rgba(0, 191, 255, 0.3);
}

.subtitulo-derecha {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.contenedor-imagenes {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.contenedor-imagenes img {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    padding: var(--space-sm);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
    object-fit: contain;
}

.contenedor-imagenes img:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

/* Modern Login Form */
.form-content-login {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 450px;
}

.header-login {
    text-align: center;
    margin-bottom: var(--space-2xl);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
}

.subtitle-login {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: var(--space-2xl);
}

.input-header-login {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.input-container-login {
    position: relative;
    margin-bottom: var(--space-lg);
}

.input-field-login {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
}

.input-field-login:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.input-icon-login {
    position: absolute;
    right: var(--space-md);
    top: calc(50% + 12px);
    transform: translateY(-50%);
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition-fast);
}

.input-icon-login:hover {
    color: var(--primary-color);
}

.login-button-login {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
}

.login-button-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.login-links-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: var(--space-lg) 0;
    font-size: 0.9rem;
}

.forgot-password,
.register-link {
    color: var(--primary-color);
    font-weight: 500;
}

.forgot-password:hover,
.register-link:hover {
    color: var(--primary-dark);
}

.register-link span {
    color: var(--primary-color);
    font-weight: 600;
}

.separator-login {
    display: flex;
    align-items: center;
    margin: var(--space-xl) 0;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.separator-login::before,
.separator-login::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.separator-login span {
    padding: 0 var(--space-md);
}

.google-button-login {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: var(--transition-fast);
    text-decoration: none;
}

.google-button-login:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

/* ===== FEATURES SECTION ===== */
.sec2bots {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
    position: relative;
}

.sec2bots-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.sec2bots-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    text-align: center;
}

.sec2bots-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto var(--space-4xl);
    line-height: 1.6;
    text-align: center;
}

.sec2bots-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-4xl);
}

.sec2bots-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.sec2bots-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: var(--transition-normal);
}

.sec2bots-card:hover .feature-icon::before {
    transform: translateX(100%);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
    z-index: 1;
    position: relative;
}

.sec2bots-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-2xl);
}

.sec2bots-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.sec2bots-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.sec2bots-card-text {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    opacity: 0.3;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 2;
}

.stats-content {
    text-align: center;
}

.stats-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.stats-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto var(--space-4xl);
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-4xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-2xl);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-2xl);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    transition: var(--transition-normal);
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== TESTIMONIALS CAROUSEL SECTION ===== */
.testimonials-carousel {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: visible;
}

.testimonials-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(99,102,241,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>');
    opacity: 0.7;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--space-xl) + 40px);
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--primary-color);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--border-radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-md);
}

.testimonials-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

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

.testimonials-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-slider {
    position: relative;
    margin-bottom: var(--space-4xl);
    overflow: visible;
    border-radius: var(--border-radius-2xl);
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background: var(--white);
    padding: var(--space-4xl);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-gradient);
}

.quote-icon {
    position: absolute;
    top: var(--space-2xl);
    left: var(--space-2xl);
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin: var(--space-4xl) 0 var(--space-3xl);
    padding-left: var(--space-4xl);
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    justify-content: space-between;
    flex-wrap: wrap;
}

.author-avatar {
    position: relative;
    flex-shrink: 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-full);
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.verified-icon {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: #1DA1F2;
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 2px solid var(--white);
}

.author-info {
    flex: 1;
    min-width: 200px;
}

.author-info h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.author-role {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.author-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.rating-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-text {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
}

.growth-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--border-radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    min-width: 120px;
}

.growth-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
}

.growth-label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--border-radius-full);
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-light);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-xl);
    z-index: 100;
}

.nav-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.15);
    box-shadow: var(--shadow-2xl);
}

.nav-arrow.prev {
    left: -30px;
}

.nav-arrow.next {
    right: -30px;
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.metric {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-fast);
}

.metric:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ===== MODERN PROCESS SECTION ===== */
.process-modern {
    padding: var(--space-4xl) 0;
    background: var(--white);
    position: relative;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.process-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.process-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.process-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-4xl);
    margin-bottom: var(--space-4xl);
}

.timeline-line {
    display: none;
}

.process-step {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-indicator {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: var(--transition-normal);
}

.step-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.step-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.step-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.feature-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius-md);
    font-size: 0.8rem;
    font-weight: 500;
}

.process-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius-2xl);
    padding: var(--space-4xl);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-2xl);
}

.cta-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

/* Removed duplicate .btn-primary definition - consolidated below */

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-4xl);
    position: relative;
    z-index: 2;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: var(--space-xs);
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== PROCESS SECTION ===== */
.sec4bots {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.sec4bots h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4xl);
    text-align: center;
}

.pasos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.paso-columna {
    text-align: center;
    position: relative;
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
}

.paso-columna:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.paso-numero {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.paso-connector {
    position: absolute;
    top: 50%;
    right: -50px;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: translateY(-50%);
    z-index: 1;
}

.paso-connector::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-light);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.paso-columna:last-child .paso-connector {
    display: none;
}

.paso-imagen {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 2;
}

.paso-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-full);
}

.paso-texto h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.paso-texto p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
/* ===== MODERN SERVICES SECTION ===== */
.services-modern {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.services-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.services-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

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

.service-card.instagram::before {
    background: linear-gradient(45deg, #E4405F, #C13584);
}

.service-card.facebook::before {
    background: linear-gradient(45deg, #1877F2, #42A5F5);
}

.service-card.twitter::before {
    background: linear-gradient(45deg, #1DA1F2, #14171A);
}

.service-card.tiktok::before {
    background: linear-gradient(45deg, #FF0050, #000000);
}

.service-card.youtube::before {
    background: linear-gradient(45deg, #FF0000, #CC0000);
}

.service-card.more-platforms::before {
    background: var(--primary-gradient);
}

.service-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.service-card.instagram .service-icon {
    background: linear-gradient(45deg, #E4405F, #C13584);
}

.service-card.facebook .service-icon {
    background: #1877F2;
}

.service-card.twitter .service-icon {
    background: #1DA1F2;
}

.service-card.tiktok .service-icon {
    background: linear-gradient(45deg, #FF0050, #000000);
}

.service-card.youtube .service-icon {
    background: #FF0000;
}

.service-card.more-platforms .service-icon {
    background: var(--primary-gradient);
}

.service-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.service-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content {
    flex: 1;
    margin-bottom: var(--space-lg);
}

.service-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-700);
    font-size: 0.9rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
}

.service-stats {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-lg);
}

.service-stats .stat {
    text-align: center;
}

.service-stats .stat-number {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.service-stats .stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
    flex-wrap: wrap;
}

.platform-icons i {
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.platform-icons i:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.service-footer {
    margin-top: auto;
}

.service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
}

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

/* ===== MODERN FOOTER ===== */
/* Updated: 2024-12-19 15:30 - Footer styles swapped */
.modern-footer {
    background: #374151; /* var(--gray-800) */
    color: var(--gray-300);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-xl) var(--space-2xl);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-4xl);
}

.footer-section h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-full);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: var(--space-lg);
}

.footer-logo-text {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-logo-text .logo-insta {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.4);
}

.footer-logo-text .logo-bot {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.4);
}

.footer-logo-text .logo-boost {
    color: #ff1744;
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.5), 0 2px 4px rgba(255, 23, 68, 0.4);
}

.footer-description {
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition-fast);
    border: 1px solid var(--gray-700);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

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

.footer-links a:hover {
    color: var(--white);
    padding-left: var(--space-sm);
}

.footer-contact {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-700);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--gray-400);
    font-size: 0.9rem;
}

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

.footer-bottom {
    background: #0f172a; /* darker gray */
    border-top: 1px solid var(--gray-700);
    color: #ffffff; /* white text */
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-badges {
    display: flex;
    gap: var(--space-md);
}

.badge {
    background: var(--gray-700);
    color: var(--gray-300);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--gray-600);
}

/* ===== PROFESSIONAL CHAT WIDGET ===== */
.chat-widget {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: 10000;
    font-family: 'Inter', sans-serif;
}

/* Chat Button */
.chat-button {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.chat-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-button:hover::before {
    opacity: 1;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.chat-button:active {
    transform: scale(0.95);
}

.chat-icon {
    color: var(--white);
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.chat-button:hover .chat-icon {
    transform: scale(1.1);
}

/* Pulse animation */
.chat-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 20px;
    width: 350px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.chat-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-info h4 {
    margin: 0 0 var(--space-xs);
    font-size: 1rem;
    font-weight: 600;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

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

.chat-close {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    min-width: 36px;
    min-height: 36px;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chat-close i {
    position: relative;
    z-index: 11;
    pointer-events: none;
    font-size: 1.2rem;
    line-height: 1;
}

/* Chat Body */
.chat-body {
    padding: var(--space-lg);
    max-height: 300px;
    overflow-y: auto;
}

.chat-message {
    background: var(--gray-50);
    padding: var(--space-md);
    border-radius: 12px;
    margin-bottom: var(--space-md);
    position: relative;
}

.chat-message::before {
    content: '';
    position: absolute;
    top: 12px;
    left: -6px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid var(--gray-50);
}

.message-text {
    margin: 0 0 var(--space-sm);
    color: var(--gray-700);
    line-height: 1.5;
    font-size: 0.9rem;
}

.message-text.greeting {
    font-weight: 600;
    color: var(--gray-900);
}

.message-time {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
}

/* Chat Footer */
.chat-footer {
    padding: var(--space-md) var(--space-lg);
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.chat-actions {
    display: flex;
    gap: var(--space-sm);
}

.chat-action-btn {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    text-decoration: none;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-email:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    transform: translateY(-1px);
}

/* Dark mode support */
[data-theme="dark"] .chat-window {
    background: #2a2a2a;
    border-color: #4a4a4a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .chat-message {
    background: #3a3a3a;
}

[data-theme="dark"] .chat-message::before {
    border-right-color: #3a3a3a;
}

[data-theme="dark"] .message-text {
    color: #e5e7eb;
}

[data-theme="dark"] .message-text.greeting {
    color: #ffffff;
    font-weight: 600;
}

[data-theme="dark"] .message-time {
    color: #9ca3af;
}



[data-theme="dark"] .btn-email {
    background: #4a4a4a;
    color: #e5e7eb;
    border-color: #6b7280;
}

[data-theme="dark"] .btn-email:hover {
    background: #6b7280;
    border-color: #9ca3af;
    color: #ffffff;
}

/* Mejoras adicionales para el modo oscuro del chat */
[data-theme="dark"] .chat-info h4 {
    color: #ffffff;
}

[data-theme="dark"] .chat-status {
    color: #e5e7eb;
}

[data-theme="dark"] .chat-status span {
    color: #ffffff;
}

[data-theme="dark"] .chat-close {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

[data-theme="dark"] .chat-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

[data-theme="dark"] .chat-close i {
    color: #ffffff;
}

/* Responsive design */
@media (max-width: 480px) {
    .chat-widget {
        bottom: var(--space-md);
        right: var(--space-md);
    }
    
}

    .chat-button {
        width: 56px;
        height: 56px;
    }
    
    .chat-icon {
        font-size: 1.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* ===== ERROR NOTIFICATIONS ===== */
.error-login,
.success-login {
    position: fixed;
    top: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    width: 90%;
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 1100;
    display: none;
    align-items: center;
    gap: var(--space-md);
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.4s ease-out;
}

.error-login {
    background: rgba(239, 68, 68, 0.95);
    color: var(--white);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.success-login {
    background: rgba(16, 185, 129, 0.95);
    color: var(--white);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.error-login.active,
.success-login.active {
    display: flex;
}

.close-notification {
    margin-left: auto;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container-login {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
        padding: var(--space-lg);
    }
    
    .testimonios-container {
        grid-template-columns: 1fr;
    }
    
    .contenedor-derecha {
        order: -1;
    }
}

@media (max-width: 768px) {
    .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-xl);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}
    
    .navbar__menu.active {
        right: 0;
    }
    
    /* Estilos específicos para enlaces del menú móvil */
.navbar__menu .navbar__link {
    color: var(--gray-800);
    font-weight: 600;
}

.navbar__menu .navbar__link:hover {
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
}

.navbar__menu .navbar__link.active {
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.15);
}

.navbar__menu .navbar__link::after {
    background: var(--primary-color);
}

/* Toggle del modo oscuro en menú móvil */
.navbar__menu .color-mode-switch .slider {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.3);
}

.navbar__menu .color-mode-switch .slider:before {
    background: var(--gray-800);
}

.navbar__menu .color-mode-switch input:checked + .slider {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    border-color: rgba(251, 191, 36, 0.5);
}

.navbar__menu .color-mode-switch input:checked + .slider:before {
    background: var(--gray-800);
}


    
    .navbar__hamburger {
        display: flex;
    }
    
    .container-login {
        padding: var(--space-lg);
        gap: var(--space-xl);
    }
    
    .sec2bots-title,
    .sec3bots-header h1,
    .sec4bots h1,
    .sec5bots-header h1 {
        font-size: 2rem;
    }
    
    .sec2bots-cards,
    .sec5bots-columns {
        grid-template-columns: 1fr;
    }
    
        .paso-connector {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .contenedor-imagenes img {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-content {
        padding: var(--space-2xl);
    }
    
    .quote-icon {
        top: var(--space-lg);
        left: var(--space-lg);
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        margin: var(--space-2xl) 0;
        padding-left: var(--space-2xl);
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .author-info {
        min-width: auto;
    }
    
    .nav-arrow {
        display: none;
    }
    
    .testimonials-container {
        padding: 0 var(--space-xl);
    }
    
    .success-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        padding: var(--space-lg);
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .process-step:nth-child(even) .step-content {
        text-align: center;
    }
    
    .timeline-line {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stats {
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .form-content-login {
        padding: var(--space-lg);
        margin: 0 auto;
        max-width: calc(100% - 1rem);
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }
    
    .testimonial-content {
        padding: var(--space-lg);
    }
    
    .quote-icon {
        top: var(--space-md);
        left: var(--space-md);
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin: var(--space-lg) 0;
        padding-left: var(--space-lg);
    }
    
    .author-avatar img {
        width: 60px;
        height: 60px;
    }
    
    .author-info h4 {
        font-size: 1.2rem;
    }
    
    .growth-badge {
        min-width: auto;
        padding: var(--space-sm) var(--space-md);
    }
    
    .growth-number {
        font-size: 1.2rem;
    }
    
    .success-metrics {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .metric {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .process-cta {
        padding: var(--space-2xl);
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .service-card {
        padding: var(--space-lg);
    }
    
    .chat-widget {
        bottom: var(--space-lg);
        right: var(--space-lg);
    }
    
    .chat-button {
        width: 50px;
        height: 50px;
    }
    
    .chat-icon {
        font-size: 1.25rem;
    }
    
    .chat-window {
        width: calc(100vw - 32px);
        position: fixed;
        left: 50%;
        transform: translateX(-50%) translateY(20px) scale(0.95);
        margin: 0;
        bottom: 100px;
    }
    
    .chat-window.active {
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* ===== DARK MODE SUPPORT ===== */
[data-theme="dark"] {
    --white: #1a1a1a;
    --gray-50: #2a2a2a;
    --gray-100: #3a3a3a;
    --gray-200: #4a4a4a;
    --gray-300: #6b7280;
    --gray-400: #9ca3af;
    --gray-500: #d1d5db;
    --gray-600: #e5e7eb;
    --gray-700: #f3f4f6;
    --gray-800: #f9fafb;
    --gray-900: #ffffff;
    --dark: #ffffff;
}

[data-theme="dark"] .header {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .navbar__link {
    color: rgba(255, 255, 255, 0.9);
    background: transparent !important;
}

[data-theme="dark"] .navbar__link:hover {
    color: var(--white);
    background: none !important;
}

[data-theme="dark"] .navbar__link.active {
    color: var(--white);
    background: none !important;
}

/* Estilos del modo oscuro para el menú móvil */
[data-theme="dark"] .navbar__menu {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .navbar__menu .navbar__link {
    color: var(--gray-800);
}

[data-theme="dark"] .navbar__menu .navbar__link:hover {
    color: var(--primary-color);
}

[data-theme="dark"] .navbar__menu .navbar__link.active {
    color: var(--primary-color);
}

/* Toggle del modo oscuro en menú móvil - modo oscuro */
[data-theme="dark"] .navbar__menu .color-mode-switch .slider {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .navbar__menu .color-mode-switch .slider:before {
    background: var(--gray-800);
}

[data-theme="dark"] .navbar__menu .color-mode-switch input:checked + .slider {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    border-color: rgba(251, 191, 36, 0.4);
}

[data-theme="dark"] .navbar__menu .color-mode-switch input:checked + .slider:before {
    background: var(--gray-800);
}



[data-theme="dark"] .slider {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] input:checked + .slider {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    border-color: rgba(251, 191, 36, 0.4);
}

[data-theme="dark"] .form-content-login {
    background: rgba(42, 42, 42, 0.95);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .input-field-login {
    background: var(--gray-100);
    border-color: var(--gray-200);
    color: var(--gray-800);
}

[data-theme="dark"] .sec2bots-card,
[data-theme="dark"] .testimonio-card,
[data-theme="dark"] .sec5bots-column {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

[data-theme="dark"] .chat-window {
    background: #2a2a2a;
    border-color: #4a4a4a;
}

/* ===== FOOTER MODE OSCURO ===== */
[data-theme="dark"] .modern-footer {
    background: #111827; /* var(--gray-900) */
    color: var(--gray-300);
}

[data-theme="dark"] .footer-section h4 {
    color: #ffffff; /* white */
}

[data-theme="dark"] .footer-logo-text {
    color: var(--white);
}

[data-theme="dark"] .footer-logo-text .logo-insta {
    color: var(--white);
}

[data-theme="dark"] .footer-logo-text .logo-bot {
    color: var(--white);
}

[data-theme="dark"] .footer-description {
    color: var(--gray-400);
}

[data-theme="dark"] .footer-social a {
    background: var(--gray-700);
    color: var(--gray-400);
    border-color: var(--gray-600);
}

[data-theme="dark"] .footer-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

[data-theme="dark"] .footer-links a {
    color: var(--gray-400);
}

[data-theme="dark"] .footer-links a:hover {
    color: var(--white);
}

[data-theme="dark"] .footer-contact {
    border-top-color: var(--gray-600);
}

[data-theme="dark"] .footer-contact p {
    color: var(--gray-400);
}

[data-theme="dark"] .footer-bottom {
    background: #1e293b; /* lighter gray for dark mode */
    border-top-color: var(--gray-700);
    color: #ffffff; /* white text */
}

[data-theme="dark"] .badge {
    background: var(--gray-700);
    color: var(--gray-300);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-primary { color: var(--primary-color); }
.text-gray { color: var(--gray-600); }
.text-dark { color: var(--gray-900); }

.bg-primary { background: var(--primary-gradient); }
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-50); }

.rounded-sm { border-radius: var(--border-radius-sm); }
.rounded-md { border-radius: var(--border-radius-md); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-xl { border-radius: var(--border-radius-xl); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.mb-4 { margin-bottom: var(--space-md); }
.mb-8 { margin-bottom: var(--space-xl); }
.mt-4 { margin-top: var(--space-md); }
.mt-8 { margin-top: var(--space-xl); }

/* ===== PRECIOS PAGE STYLES ===== */
.preciosbots {
    min-height: 100vh;
    padding: calc(80px + var(--space-2xl)) var(--space-xl) var(--space-2xl);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.search-container {
    max-width: 1400px;
    margin: 0 auto var(--space-2xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.search-external-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.search-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md) var(--space-lg);
    min-width: 300px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.search-bar:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.search-text {
    color: var(--gray-500);
    font-weight: 500;
}

.search-icon {
    color: var(--gray-400);
    font-size: 1.2rem;
}

.pricing-table-container {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.pricing-table {
    width: 100%;
}

.table-header {
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-lg);
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-item {
    display: flex;
    gap: var(--space-lg);
}

.left-items {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-lg);
}

.right-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--space-lg);
}

.header-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-body {
    max-height: 70vh;
    overflow-y: auto;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-lg);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition-fast);
    cursor: pointer;
}

.table-row:hover {
    background: var(--gray-50);
}

.table-row:last-child {
    border-bottom: none;
}

.row-item {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.row-text {
    font-size: 0.9rem;
    color: var(--gray-700);
}

.descripcion-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--border-radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.descripcion-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--space-2xl);
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-200);
}

.modal-header {
    margin-bottom: var(--space-lg);
}

.modal-id {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 var(--space-sm);
}

.modal-title {
    color: var(--gray-900);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.modal-subheader {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.grid-item {
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
}

/* ==============================================
   PRICING PAGE STYLES
   ============================================== */

/* Pricing Hero Section */
.pricing-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 60px;
    color: var(--white) !important;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.pricing-hero-content {
    text-align: center;
}

.pricing-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white) !important;
}

.pricing-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: var(--white) !important;
}

.pricing-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-stat {
    text-align: center;
}

.pricing-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white) !important;
}

/* Specific styles for pricing hero elements */
.pricing-hero .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-hero .section-badge i {
    color: var(--white) !important;
}

.pricing-hero .section-badge span {
    color: var(--white) !important;
}

.pricing-hero .highlight-text {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Pricing Filters Section */
.pricing-filters {
    background: var(--surface-color);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.filters-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.clear-filters {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-filters:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.filter-label i {
    color: var(--primary-color);
}

.filter-input,
.filter-select {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Pricing Services Section */
.pricing-services {
    padding: 60px 0;
    background: var(--white);
}

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

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.services-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.services-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.services-count span {
    font-weight: 600;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

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

.service-card.instagram::before {
    background: linear-gradient(45deg, #E4405F, #C13584);
}

.service-card.facebook::before {
    background: linear-gradient(45deg, #1877F2, #42A5F5);
}

.service-card.twitter::before {
    background: linear-gradient(45deg, #1DA1F2, #14171A);
}

.service-card.tiktok::before {
    background: linear-gradient(45deg, #FF0050, #000000);
}

.service-card.youtube::before {
    background: linear-gradient(45deg, #FF0000, #CC0000);
}

.service-card.more-platforms::before {
    background: var(--primary-gradient);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.service-id {
    background: var(--surface-color);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.service-platform {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E4405F, #C13584);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.service-content {
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

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

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

.service-details {
    display: flex;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.detail-item i {
    color: var(--primary-color);
}

.service-footer {
    display: flex;
    gap: 12px;
}

.service-btn-secondary,
.service-btn-primary {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    border: none;
}

.service-btn-secondary {
    background: var(--surface-color);
    color: var(--text-secondary);
    flex: 1;
}

.service-btn-secondary:hover {
    background: var(--border-color);
    color: var(--text-color);
}

.service-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    flex: 2;
}

.service-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.empty-state p {
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Details Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--surface-color);
    color: var(--text-color);
}

.modal-content {
    padding: 24px;
}

.service-detail-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.detail-value {
    font-weight: 600;
    color: var(--text-color);
}

.service-description h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.service-description p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-footer {
    padding: 0 24px 24px;
    display: flex;
    gap: 12px;
}

.btn-secondary,
.btn-primary {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: none;
}

.btn-secondary {
    background: var(--surface-color);
    color: var(--text-secondary);
    flex: 1;
}

.btn-secondary:hover {
    background: var(--border-color);
    color: var(--text-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    flex: 2;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Responsive Design for Pricing Page */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 100px 0 40px;
    }
    
    .pricing-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .filters-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }
    
    .services-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-footer {
        flex-direction: column;
    }
    
    .modal-container {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
}

@media (max-width: 480px) {
    .pricing-stats {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-details {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================
   REGISTRATION PAGE STYLES
   ============================================ */

.registration-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.registration-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    min-height: calc(100vh - 80px);
}

/* Left Content */
.registration-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.content-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    border: 1px solid rgba(79, 70, 229, 0.3);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.content-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin: 0;
}

.registration-section .highlight-text {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    background: var(--white);
    border-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.1);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.benefit-text h4 {
    margin: 0 0 var(--space-xs) 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.benefit-text p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Social Platforms */
.social-platforms {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.social-platforms h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.platform-icons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.platform-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-icon:hover {
    transform: translateY(-3px) scale(1.05);
}

.platform-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.platform-icon.facebook {
    background: #1877f2;
}

.platform-icon.twitter {
    background: #000000;
}

.platform-icon.youtube {
    background: #ff0000;
}

.platform-icon.tiktok {
    background: #000000;
}

/* Registration Form */
.registration-form-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.error-message {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    color: #dc2626;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.error-message.active {
    opacity: 1;
    transform: translateY(0);
}

.close-notification {
    background: none;
    border: none;
    color: #dc2626;
    font-size: 18px;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: var(--space-2xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    position: relative;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 20px 20px 0 0;
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.form-header h2 {
    margin: 0 0 var(--space-sm) 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
}

.form-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: flex;
    gap: var(--space-md);
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-label {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

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

.form-input {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    color: var(--text-color);
    background: var(--input-bg);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-strength {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-fill.weak {
    background: #ef4444;
}

.strength-fill.fair {
    background: #f59e0b;
}

.strength-fill.good {
    background: #10b981;
}

.strength-fill.strong {
    background: #059669;
}

.strength-text {
    font-size: 12px;
    color: var(--text-muted);
}

.password-match {
    font-size: 12px;
    margin-top: var(--space-xs);
}

.password-match.match {
    color: #10b981;
}

.password-match.no-match {
    color: #ef4444;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.checkbox-label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

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

.link-primary:hover {
    text-decoration: underline;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.form-footer {
    margin-top: var(--space-lg);
    text-align: center;
}

.divider {
    position: relative;
    margin: var(--space-lg) 0;
    color: var(--text-muted);
    font-size: 14px;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    background: var(--white);
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

.login-link {
    color: var(--text-muted);
    font-size: 14px;
}

/* Dark mode adjustments */
[data-theme="dark"] .registration-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

[data-theme="dark"] .section-badge {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    color: var(--white);
}

[data-theme="dark"] .content-title {
    color: var(--white);
}

[data-theme="dark"] .content-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #6366f1;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .benefit-text h4 {
    color: var(--white);
}

[data-theme="dark"] .benefit-text p {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .social-platforms h5 {
    color: var(--white);
}

[data-theme="dark"] .form-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .form-card::before {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

[data-theme="dark"] .form-header h2 {
    color: var(--white);
}

[data-theme="dark"] .form-header p {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .form-label {
    color: var(--white);
}

[data-theme="dark"] .form-input {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

[data-theme="dark"] .form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .form-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

[data-theme="dark"] .password-toggle {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .password-toggle:hover {
    color: #6366f1;
}

[data-theme="dark"] .strength-text {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .checkbox-label {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .login-link {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .divider {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .divider::before {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .divider span {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .registration-section .highlight-text {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .error-message {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

[data-theme="dark"] .close-notification {
    color: #fca5a5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .registration-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        padding: var(--space-lg);
    }
    
    .registration-content {
        order: 2;
    }
    
    .registration-form-container {
        order: 1;
    }
    
    .content-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .registration-section {
        padding-top: calc(80px + var(--space-md));
    }
    
    .registration-container {
        padding: var(--space-md);
        gap: var(--space-xl);
    }
    
    .form-card {
        padding: var(--space-xl);
    }
    
    .benefits-list {
        gap: var(--space-md);
    }
    
    .benefit-item {
        padding: var(--space-sm);
    }
    
    .platform-icons {
        justify-content: center;
    }
    
    .platform-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .form-card {
        padding: var(--space-lg);
        border-radius: 16px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .content-subtitle {
        font-size: 1rem;
    }
    
    .benefit-text h4 {
        font-size: 1rem;
    }
    
    .benefit-text p {
        font-size: 0.9rem;
    }
}

/* ================================
   CONTACT PAGE STYLES
================================ */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.contact-hero .section-badge i {
    font-size: 1rem;
    color: #ffd700;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    text-align: center;
    color: #ffffff;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.contact-hero .highlight-text {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    position: relative;
}

.contact-hero .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 2px;
    opacity: 0.7;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    line-height: 1.6;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: #ffffff;
}

/* Contact Methods Section */
.contact-methods {
    padding: 80px 0;
    background: var(--background-color);
}

.contact-methods-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.contact-methods-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

[data-theme="dark"] .contact-methods-header h2 {
    color: #ffffff;
}

.contact-methods-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

[data-theme="dark"] .contact-methods-header p {
    color: #b3b3b3;
}

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

.contact-method-card {
    background: var(--card-background);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-method-card:hover::before {
    left: 100%;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.method-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.whatsapp-bg {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.email-bg {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.chat-bg {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.method-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

[data-theme="dark"] .method-content h3 {
    color: #ffffff;
}

.method-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

[data-theme="dark"] .method-content p {
    color: #b3b3b3;
}

.method-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.method-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.method-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.whatsapp-btn:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--background-secondary);
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding: 2rem;
}

.contact-info-header {
    margin-bottom: 2rem;
}

.contact-info-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

[data-theme="dark"] .contact-info-header h3 {
    color: #ffffff;
}

.contact-info-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

[data-theme="dark"] .contact-info-header p {
    color: #b3b3b3;
}

.contact-info-list {
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-background);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

[data-theme="dark"] .info-content h4 {
    color: #ffffff;
}

.info-content p {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

[data-theme="dark"] .info-content p {
    color: #ffffff;
}

.info-availability {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

[data-theme="dark"] .info-availability {
    color: #b3b3b3;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

[data-theme="dark"] .contact-social h4 {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.contact-form-card {
    background: var(--card-background);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.form-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

[data-theme="dark"] .form-header h3 {
    color: #ffffff;
}

.form-header p {
    color: var(--text-secondary);
}

[data-theme="dark"] .form-header p {
    color: #b3b3b3;
}

.modern-contact-form .form-row {
    margin-bottom: 1.5rem;
}

.modern-contact-form .form-group {
    position: relative;
}

.modern-contact-form .form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

[data-theme="dark"] .modern-contact-form .form-label {
    color: #ffffff;
}

.modern-contact-form .form-input,
.modern-contact-form .form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--input-background);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modern-contact-form .form-input:focus,
.modern-contact-form .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modern-contact-form .form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--background-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

[data-theme="dark"] .faq-header h2 {
    color: #ffffff;
}

.faq-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

[data-theme="dark"] .faq-header p {
    color: #b3b3b3;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-background);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--background-secondary);
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

[data-theme="dark"] .faq-question h4 {
    color: #ffffff;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

[data-theme="dark"] .faq-answer p {
    color: #b3b3b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-methods,
    .contact-form-section,
    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .contact-hero-container,
    .contact-methods-container,
    .contact-form-container,
    .faq-container {
        padding: 0 1rem;
    }

    .contact-method-card {
        padding: 1.5rem;
    }

    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ============================================
   PERFIL PAGE STYLES - DASHBOARD REDESIGN
   ============================================ */

.seccion-perfil {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eff5 100%);
    padding: calc(80px + var(--space-lg)) var(--space-md) var(--space-lg);
}

.perfil-container {
    max-width: 1400px;
    margin: 0 auto;
}

.titulo-seccion {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2xl);
    text-align: left;
    position: relative;
}

.titulo-seccion::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

/* Welcome Card */
.welcome-card {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 24px;
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.welcome-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-xl);
    align-items: center;
}

.welcome-info h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.welcome-info p {
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.user-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.welcome-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
}

/* ============================================ */
/* LOGOUT MODAL */
/* ============================================ */

.logout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.logout-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.logout-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.logout-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 450px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.logout-modal.active .logout-modal-content {
    transform: scale(1);
}

.logout-modal-header {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
    padding: var(--space-lg);
    text-align: center;
    position: relative;
}

.logout-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
}

.logout-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.logout-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logout-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.logout-modal-body {
    padding: var(--space-xl);
    text-align: center;
}

.logout-modal-body p {
    margin: 0 0 var(--space-md);
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.6;
}

.logout-warning {
    font-size: 0.875rem !important;
    color: var(--gray-500) !important;
    margin-bottom: 0 !important;
}

.logout-modal-footer {
    padding: var(--space-lg);
    background: var(--gray-50);
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.btn-cancel,
.btn-logout {
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-cancel {
    background: var(--gray-200);
    color: var(--gray-700);
}

.btn-cancel:hover {
    background: var(--gray-300);
    transform: translateY(-1px);
}

.btn-logout {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
}

.btn-logout:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Dark mode styles */
[data-theme="dark"] .logout-modal-content {
    background: var(--gray-800);
}

[data-theme="dark"] .logout-modal-body p {
    color: var(--gray-300);
}

[data-theme="dark"] .logout-warning {
    color: var(--gray-400) !important;
}



[data-theme="dark"] .btn-cancel {
    background: var(--gray-600);
    color: var(--gray-200);
}

[data-theme="dark"] .btn-cancel:hover {
    background: var(--gray-500);
}

/* Responsive */
@media (max-width: 480px) {
    .logout-modal-content {
        width: 95%;
        margin: var(--space-md);
    }
    
    .logout-modal-footer {
        flex-direction: column;
    }
    
    .btn-cancel,
    .btn-logout {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================ */
/* ORDER NOTIFICATIONS */
/* ============================================ */

.order-notification {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-md) 0;
    border-radius: var(--border-radius-lg);
    font-weight: 500;
    position: relative;
    animation: slideInDown 0.3s ease-out;
}

.order-notification-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: rgb(21, 128, 61);
}

.order-notification-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: rgb(185, 28, 28);
}

.order-notification i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: var(--border-radius-sm);
    margin-left: auto;
    transition: var(--transition-fast);
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

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

/* Dashboard Grid Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-xl);
}

/* Main Content Area */
.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* Card Component Base */
.card-base {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.card-base:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Card Headers */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.card-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.header-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.view-all {
    color: var(--gray-600);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: var(--primary-color);
}

/* New Order Section */
.contenedor-neworders {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.contenedor-neworders:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contenedor-neworders::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #10b981, #059669);
}

.orders-header {
    padding: var(--space-xl);
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.orders-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.orders-header .subheader {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Empty State */
.empty-state {
    padding: var(--space-4xl);
    text-align: center;
    color: var(--gray-600);
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    color: var(--gray-400);
}

.empty-state h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.empty-state p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.btn-primary-empty {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-empty:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

/* Order Form Content */
.order-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl);
}

.product-info-card,
.order-form-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: var(--space-lg);
    border: 1px solid var(--gray-200);
}

.product-info-card h4,
.order-form-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.info-icon,
.form-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm);
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.info-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.info-value {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.9rem;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* User Info Card */
.user-info-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.user-card-header {
    padding: var(--space-lg);
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.user-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.user-email {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: var(--space-xs);
}

.user-status {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    color: var(--gray-600);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

.user-actions {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.action-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.action-btn.logout {
    color: #ef4444;
    border-color: #fee2e2;
    background: #fef2f2;
}

.action-btn.logout:hover {
    background: #fee2e2;
    color: #dc2626;
}

/* Balance Card */
.balance-card {
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px;
    padding: var(--space-lg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.balance-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.balance-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.balance-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
}

.balance-actions {
    position: relative;
    z-index: 2;
}

.btn-add-funds {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-add-funds:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Quick Stats Card */
.quick-stats-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: var(--space-lg);
}

.quick-stats-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm);
    background: var(--gray-50);
    border-radius: 8px;
}

.stat-row .stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.stat-row .stat-value {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.9rem;
}

/* Tabs Section */
.tabs-section {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.tab-btn {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    background: transparent;
    border: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    position: relative;
}

.tab-btn:hover {
    color: var(--gray-900);
    background: rgba(79, 70, 229, 0.05);
}

.tab-btn.active {
    color: var(--primary-color);
    background: var(--white);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.tab-content {
    padding: var(--space-lg);
    min-height: 300px;
}

.tab-content:not(.active) {
    display: none;
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
}

.no-order-selected h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.no-order-selected p {
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

/* Order Form */
.order-form-content {
    padding: var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.product-info-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: var(--space-lg);
    border: 1px solid var(--gray-200);
}

.product-info-card h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.product-info-card .info-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
}

.info-grid {
    display: grid;
    gap: var(--space-md);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm);
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.info-label {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.info-value {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.9rem;
}

.order-form-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.order-form-card h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.order-form-card .form-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--gray-900);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

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

.quantity-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.quantity-input {
    flex: 1;
    text-align: center;
    font-weight: 600;
    padding: var(--space-sm);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
}

.total-display {
    background: var(--gray-50);
    border-radius: 12px;
    padding: var(--space-md);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.total-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: var(--space-xs);
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.create-order-btn {
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.create-order-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.create-order-btn:disabled,
.create-order-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--gray-400) !important;
    transform: none !important;
}

/* Sidebar */
.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* Quick Actions Card */
.quick-actions-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    padding: var(--space-xl);
}

.quick-actions-card h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.quick-actions-card .actions-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
}

.actions-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.action-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.action-item:hover {
    background: var(--gray-50);
    transform: translateX(4px);
}

.action-icon {
    width: 30px;
    height: 30px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 0.8rem;
}

.action-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Balance Card */
.balance-card {
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px;
    padding: var(--space-xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.balance-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

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

.balance-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.balance-title {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.balance-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.balance-actions {
    display: flex;
    gap: var(--space-sm);
}

.balance-btn {
    flex: 1;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.balance-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* User Data Section - Redesigned */
.user-data-section {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.user-data-header {
    background: var(--gray-50);
    padding: var(--space-xl);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-data-header:hover {
    background: var(--gray-100);
}

.user-data-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.user-details h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 var(--space-xs) 0;
}

.user-status {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.toggle-btn {
    background: #4f46e5;
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    background: #3730a3;
    transform: scale(1.1);
}

.user-data-content {
    padding: var(--space-xl);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.data-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: var(--space-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.data-card:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.data-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.data-card-title {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.data-card-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
}

.edit-btn {
    color: #4f46e5;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: var(--space-xs);
    border-radius: 50%;
    background: none;
    border: none;
}

.edit-btn:hover {
    background: rgba(79, 70, 229, 0.1);
    transform: scale(1.1);
}

.data-value {
    color: var(--gray-700);
    font-size: 0.95rem;
    word-break: break-word;
}

.password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.password-input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.password-toggle {
    position: absolute;
    right: var(--space-sm);
    cursor: pointer;
    color: var(--gray-400);
    padding: var(--space-xs);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.1);
}

.forgot-link {
    color: #4f46e5;
    font-size: 0.8rem;
    text-decoration: none;
    margin-top: var(--space-sm);
    display: inline-block;
    transition: all 0.3s ease;
}

.forgot-link:hover {
    text-decoration: underline;
}

.payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.payment-method-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.payment-method-item:hover {
    background: var(--gray-50);
    transform: translateX(2px);
}

.payment-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--white);
}

.payment-icon.card {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.payment-icon.paypal {
    background: #0070ba;
}

.payment-method-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.default-badge {
    background: #10b981;
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.remove-method {
    color: #ef4444;
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: 4px;
    transition: all 0.3s ease;
    background: none;
    border: none;
}

.remove-method:hover {
    background: rgba(239, 68, 68, 0.1);
    transform: scale(1.1);
}

.no-methods {
    color: var(--gray-500);
    font-style: italic;
    text-align: center;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: 8px;
    border: 1px dashed var(--gray-300);
}

/* Orders and Tickets Section - Redesigned */
.orders-tickets-section {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.section-tabs {
    display: flex;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.tab-button {
    flex: 1;
    padding: var(--space-lg) var(--space-xl);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.tab-button.active {
    color: #4f46e5;
    background: var(--white);
    border-bottom-color: #4f46e5;
}

.tab-button .tab-icon {
    width: 20px;
    height: 20px;
    background: var(--gray-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
}

.tab-button.active .tab-icon {
    background: #4f46e5;
}

.tab-content {
    padding: var(--space-xl);
}

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

/* Orders Grid */
.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.order-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: var(--space-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.order-card:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.order-id {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    background: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 6px;
    border: 1px solid var(--gray-300);
}

.order-status {
    padding: var(--space-xs) var(--space-sm);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pendiente { 
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-proceso { 
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-completado { 
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-fallido { 
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-cancelado { 
    background: rgba(107, 114, 128, 0.1);
    color: #4b5563;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.order-service {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.order-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.detail-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

.order-date {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.order-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #10b981;
}

/* Tickets Grid */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.ticket-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: var(--space-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.ticket-card:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.ticket-id {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    background: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 6px;
    border: 1px solid var(--gray-300);
}

.ticket-status {
    padding: var(--space-xs) var(--space-sm);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-abierto { 
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-en_proceso { 
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-cerrado { 
    background: rgba(107, 114, 128, 0.1);
    color: #4b5563;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.ticket-subject {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.ticket-preview {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ticket-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

.ticket-date {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.ticket-priority {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    font-weight: 500;
}

.priority-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: var(--space-4xl);
    color: var(--gray-500);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.empty-state p {
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.empty-state .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Ticket Creation Section */
.contenedor-tickets {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    margin-bottom: var(--space-2xl);
    overflow: hidden;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xl);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    cursor: pointer;
}

.ticket-header-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.ticket-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.ticket-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.ticket-header span {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.ticket-details small {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.btn-expandir {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #4f46e5;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-expandir:hover {
    background: #3730a3;
    transform: scale(1.1);
}

.ticket-contenido {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.ticket-contenido.hidden {
    display: none;
}

.input-asunto {
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
}

.input-asunto:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.contenedor-textarea {
    position: relative;
}

.ticket-textarea {
    width: 100%;
    min-height: 120px;
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--white);
    resize: vertical;
    transition: all 0.3s ease;
}

.ticket-textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn-enviar-ticket {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #4f46e5;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enviar-ticket:hover {
    background: #3730a3;
    transform: scale(1.1);
}



.ticket-mensaje.hidden {
    display: none;
}

/* Validación visual de campos */
.input-asunto[style*="border-color: rgb(245, 158, 11)"],
.ticket-textarea[style*="border-color: rgb(245, 158, 11)"] {
    background-color: rgba(245, 158, 11, 0.05);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.input-asunto[style*="border-color: rgb(239, 68, 68)"],
.ticket-textarea[style*="border-color: rgb(239, 68, 68)"] {
    background-color: rgba(239, 68, 68, 0.05);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Mejorar estilos de mensajes de ticket */
.ticket-mensaje {
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    animation: slideInDown 0.3s ease-out;
    border-left: 4px solid transparent;
}

.ticket-mensaje.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    color: #047857;
    border-left-color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.ticket-mensaje.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    color: #b91c1c;
    border-left-color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.ticket-mensaje i {
    font-size: 1.2rem;
    opacity: 0.9;
    flex-shrink: 0;
}

/* Modal Styles */
.modal-password {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-password.active {
    display: flex;
}

.container-password {
    background: var(--white);
    border-radius: 20px;
    padding: var(--space-2xl);
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-200);
}

.header-password {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.header-password span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
}

.close-password {
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: var(--space-xs);
    border-radius: 50%;
}

.close-password:hover {
    color: var(--gray-600);
    background: var(--gray-100);
}

.input-group-password {
    margin-bottom: var(--space-lg);
}

.label-password {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.input-wrapper-password {
    position: relative;
}

.input-password {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
}

.input-password:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.icon-eye-password {
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-eye-password:hover {
    color: #4f46e5;
}

.forgot-password-link {
    color: #4f46e5;
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: var(--space-lg);
    display: inline-block;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

.btn-save-password {
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.btn-save-password:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

/* Payment Modal Styles */
.pago-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.pago-modal.active {
    display: flex;
}

.pago-modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: var(--space-2xl);
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-200);
    max-height: 90vh;
    overflow-y: auto;
}

.pago-close-modal {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: var(--space-xs);
    border-radius: 50%;
}

.pago-close-modal:hover {
    color: var(--gray-600);
    background: var(--gray-100);
}

.pago-tabs {
    display: flex;
    margin-bottom: var(--space-xl);
    background: var(--gray-100);
    border-radius: 12px;
    padding: 4px;
}

.pago-tab-btn {
    flex: 1;
    padding: var(--space-md);
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pago-tab-btn.pago-active {
    background: var(--white);
    color: #4f46e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pago-form-metodo {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.pago-form-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pago-form-row label {
    font-weight: 500;
    color: var(--gray-700);
}

.pago-form-input {
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
}

.pago-form-input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.pago-card-element {
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    background: var(--white);
    transition: all 0.3s ease;
}

.pago-card-element.StripeElement--focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.pago-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: var(--space-sm);
}

.pago-btn {
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pago-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.pago-checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--gray-700);
}

.pago-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #4f46e5;
}

/* Ticket Modal */
.ticket-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.ticket-modal.active {
    display: flex;
}

.ticket-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-200);
}

.ticket-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xl);
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.ticket-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.ticket-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ticket-modal-close:hover {
    color: var(--gray-600);
    background: var(--gray-100);
}

.ticket-info {
    padding: var(--space-xl);
    border-bottom: 1px solid var(--gray-200);
}

.ticket-info p {
    margin-bottom: var(--space-sm);
    color: var(--gray-700);
}

.ticket-conversation {
    padding: var(--space-xl);
    max-height: 300px;
    overflow-y: auto;
}

.ticket-reply-form {
    padding: var(--space-xl);
    border-top: 1px solid var(--gray-200);
}

.ticket-reply-form h4 {
    margin-bottom: var(--space-md);
    color: var(--gray-900);
}

.ticket-reply-textarea {
    width: 100%;
    min-height: 100px;
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--white);
    resize: vertical;
    margin-bottom: var(--space-lg);
    transition: all 0.3s ease;
}

.ticket-reply-textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.ticket-reply-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-end;
}

.btn-reply {
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-300);
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Footer */
.sec5bots-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    text-align: center;
    padding: var(--space-xl);
    margin-top: var(--space-4xl);
}

/* Dark Mode Support */
[data-theme="dark"] .seccion-perfil {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

[data-theme="dark"] .titulo-seccion {
    color: var(--white);
}

[data-theme="dark"] .contenedor-neworders,
[data-theme="dark"] .header-externo,
[data-theme="dark"] .contenedor-datos-usuario-datos,
[data-theme="dark"] .info-pago,
[data-theme="dark"] .mis-ordenes-container,
[data-theme="dark"] .contenedor-tickets {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .orders-header h2,
[data-theme="dark"] .header-externo h3,
[data-theme="dark"] .titulo-pago,
[data-theme="dark"] .subheader-datos,
[data-theme="dark"] .texto-creditos-pago,
[data-theme="dark"] .ticket-header span {
    color: var(--white);
}

[data-theme="dark"] .user-status,
[data-theme="dark"] .saldo-subtitle,
[data-theme="dark"] .ticket-details small {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .orders-header .subheader,
[data-theme="dark"] .info-label,
[data-theme="dark"] .columna-fecha,
[data-theme="dark"] .columna-servicio,
[data-theme="dark"] .columna-tarifa,
[data-theme="dark"] .columna-quantidade,
[data-theme="dark"] .columna-total {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .info-row,
[data-theme="dark"] .seccion-usuario-datos,
[data-theme="dark"] .fila-tabla,
[data-theme="dark"] .encabezado-tabla {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .info-row:hover,
[data-theme="dark"] .seccion-usuario-datos:hover,
[data-theme="dark"] .fila-tabla:hover {
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea,
[data-theme="dark"] .input-password-datos,
[data-theme="dark"] .input-cantidad-pago,
[data-theme="dark"] .input-asunto,
[data-theme="dark"] .ticket-textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-textarea:focus,
[data-theme="dark"] .input-asunto:focus,
[data-theme="dark"] .ticket-textarea:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

[data-theme="dark"] .container-password,
[data-theme="dark"] .pago-modal-content,
[data-theme="dark"] .ticket-modal-content {
    background: var(--gray-800);
}

[data-theme="dark"] .header-password span,
[data-theme="dark"] .ticket-modal-title {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: 1fr 300px;
    }
    
    .order-form-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .dashboard-sidebar {
        order: -1;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .user-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    .orders-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .encabezado-tabla,
    .fila-tabla {
        grid-template-columns: 1fr 1fr 1fr 2fr;
        font-size: 0.8rem;
    }
    
    .columna-tarifa,
    .columna-cantidad,
    .columna-total {
        display: none;
    }
}

@media (max-width: 768px) {
    .seccion-perfil {
        padding: calc(80px + var(--space-md)) var(--space-sm) var(--space-md);
    }
    
    .welcome-card {
        padding: var(--space-lg);
    }
    
    .user-stats {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .stat-item {
        padding: var(--space-sm);
    }
    
    .order-form-content,
    .product-info-card,
    .order-form-card {
        padding: var(--space-md);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .header-container {
        flex-direction: column;
    }
    
    .header-container h2 {
        border-bottom: none;
        border-right: none;
    }
    
    .botones-pago {
        flex-direction: column;
    }
    
    .fila-creditos-pago {
        flex-direction: column;
        gap: var(--space-md);
        align-items: stretch;
    }
    
    .controles-cantidad-pago {
        justify-content: center;
    }
    
    .encabezado-tabla,
    .fila-tabla {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }
    
    .columna-servicio,
    .columna-id {
        display: none;
    }
}

@media (max-width: 480px) {
    .seccion-perfil {
        padding: calc(80px + var(--space-sm)) var(--space-xs) var(--space-sm);
    }
    
    .titulo-seccion {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .titulo-seccion::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .welcome-card {
        padding: var(--space-md);
    }
    
    .welcome-info h2 {
        font-size: 1.5rem;
    }
    
    .welcome-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .balance-amount {
        font-size: 1.5rem;
    }
    
    .stat-item {
        padding: var(--space-xs);
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .header-externo {
        padding: var(--space-lg);
    }
    
    .user-header-info {
        gap: var(--space-sm);
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .header-externo h3 {
        font-size: 1.25rem;
    }
    
    .contenedor-datos-usuario-datos {
        padding: var(--space-lg);
    }
    
    .info-pago {
        padding: var(--space-lg);
    }
    
    .saldo-header-pago {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .saldo-info {
        gap: var(--space-sm);
    }
    
    .saldo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .monto-pago {
        font-size: 1.5rem;
    }
    
    .ticket-header-info {
        gap: var(--space-sm);
    }
    
    .ticket-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .ticket-header span {
        font-size: 1rem;
    }
    
    .ticket-details small {
        font-size: 0.8rem;
    }
    
    .container-password,
    .pago-modal-content {
        padding: var(--space-lg);
    }
}

/* ============================================
   ADD FUNDS MODAL STYLES
   ============================================ */

.add-funds-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.add-funds-modal.active {
    display: flex;
    opacity: 1;
}

.add-funds-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.add-funds-content {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.add-funds-modal.active .add-funds-content {
    transform: scale(1);
}

.add-funds-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.header-text h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.header-text p {
    margin: 0.25rem 0 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.add-funds-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-500);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.add-funds-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.add-funds-body {
    padding: 2rem;
}

/* Amount Selection */
.amount-section {
    margin-bottom: 2rem;
}

.amount-section h4 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
}

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

.amount-option {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.amount-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.amount-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.amount-option.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.amount-option.selected::before {
    opacity: 1;
}

.amount-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.amount-bonus {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.amount-option.selected .amount-bonus {
    color: rgba(255, 255, 255, 0.9);
}

.amount-option.custom .amount-value {
    font-size: 1.1rem;
}

.custom-amount-input {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
}

.custom-amount-input label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.custom-amount-input input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.custom-amount-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Payment Methods */
.payment-methods-section {
    margin-bottom: 2rem;
}

.payment-methods-section h4 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.payment-method:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.payment-method.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gray-100);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.payment-method.selected .method-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.method-icon.paypal {
    background: #0070ba;
    color: white;
}

.method-icon.crypto {
    background: #f7931a;
    color: white;
}

.method-info {
    flex: 1;
}

.method-info h5 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 600;
}

.method-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.payment-method.selected .method-info p {
    color: rgba(255, 255, 255, 0.8);
}

.method-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.3s ease;
}

.payment-method.selected .method-check {
    background: white;
    border-color: white;
    color: var(--primary-color);
}

/* Payment Summary */
.payment-summary {
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row.bonus {
    color: var(--primary-color);
    font-weight: 500;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-900);
    border-top: 1px solid var(--gray-200);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

/* Footer */
.add-funds-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.btn-cancel {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    border-color: var(--gray-400);
    background: var(--gray-100);
}

.btn-proceed {
    flex: 2;
    padding: 0.75rem 1.5rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-proceed:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-proceed:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Processing Modal */
.payment-processing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-processing-modal.active {
    display: flex;
    opacity: 1;
}

.processing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.processing-content {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.payment-processing-modal.active .processing-content {
    transform: scale(1);
}

.processing-header {
    margin-bottom: 2rem;
}

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

.processing-header h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.processing-header p {
    margin: 0;
    color: var(--gray-600);
}

.processing-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.processing-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-lg);
    background: var(--gray-50);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.processing-step.active {
    background: var(--primary-color);
    color: white;
    opacity: 1;
}

.processing-step.completed {
    background: #10b981;
    color: white;
    opacity: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.step-text {
    text-align: left;
}

.step-text h5 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 600;
}

.step-text p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Success Modal */
.payment-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-success-modal.active {
    display: flex;
    opacity: 1;
}

.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.success-content {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.payment-success-modal.active .success-content {
    transform: scale(1);
}

.success-header {
    margin-bottom: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: white;
    animation: pulse 2s infinite;
}

.success-header h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.success-header p {
    margin: 0;
    color: var(--gray-600);
}

.success-details {
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-900);
    border-top: 1px solid var(--gray-200);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.success-actions {
    display: flex;
    justify-content: center;
}

.btn-primary {
    padding: 0.75rem 2rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Dark Mode Support */
[data-theme="dark"] .add-funds-content {
    background: var(--gray-900);
    color: var(--gray-100);
}

[data-theme="dark"] .header-text h3 {
    color: var(--gray-100);
}

[data-theme="dark"] .header-text p {
    color: var(--gray-400);
}

[data-theme="dark"] .amount-option {
    background: var(--gray-800);
    border-color: var(--gray-700);
    color: var(--gray-100);
}

[data-theme="dark"] .amount-option:hover {
    border-color: var(--primary-color);
    background: var(--gray-700);
}

[data-theme="dark"] .payment-method {
    background: var(--gray-800);
    border-color: var(--gray-700);
    color: var(--gray-100);
}

[data-theme="dark"] .payment-method:hover {
    border-color: var(--primary-color);
    background: var(--gray-700);
}

[data-theme="dark"] .method-info p {
    color: var(--gray-400);
}

[data-theme="dark"] .payment-summary {
    background: var(--gray-800);
}

[data-theme="dark"] .summary-row.total {
    color: var(--gray-100);
    border-color: var(--gray-700);
}



[data-theme="dark"] .btn-cancel {
    background: var(--gray-800);
    border-color: var(--gray-600);
    color: var(--gray-300);
}

[data-theme="dark"] .btn-cancel:hover {
    background: var(--gray-700);
    border-color: var(--gray-500);
}

[data-theme="dark"] .processing-content,
[data-theme="dark"] .success-content {
    background: var(--gray-900);
    color: var(--gray-100);
}

[data-theme="dark"] .processing-header h3,
[data-theme="dark"] .success-header h3 {
    color: var(--gray-100);
}

[data-theme="dark"] .processing-header p,
[data-theme="dark"] .success-header p {
    color: var(--gray-400);
}

[data-theme="dark"] .processing-step {
    background: var(--gray-800);
}

[data-theme="dark"] .success-details {
    background: var(--gray-800);
}

[data-theme="dark"] .detail-row.total {
    color: var(--gray-100);
    border-color: var(--gray-700);
}

/* Responsive Design */
@media (max-width: 768px) {
    .add-funds-content {
        width: 95%;
        margin: 1rem;
    }
    
    .add-funds-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .add-funds-body {
        padding: 1.5rem;
    }
    
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .add-funds-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
    }
    
    .processing-content,
    .success-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .amount-options {
        grid-template-columns: 1fr;
    }
    
    .payment-method {
        padding: 0.75rem;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .processing-content,
    .success-content {
        padding: 1.5rem;
    }
}