:root {
    --bg-main: #0b0f19;
    --bg-card: rgba(22, 28, 45, 0.7);
    --bg-card-hover: rgba(30, 41, 59, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(6, 182, 212, 0.4);
    
    --color-primary: #8b5cf6; /* Violet */
    --color-primary-light: #a78bfa;
    --color-secondary: #06b6d4; /* Cyan */
    --color-success: #10b981; /* Emerald Green */
    --color-warning: #f59e0b; /* Amber */
    --color-danger: #ef4444; /* Rose Red */
    --color-star: #fbbf24; /* Star gold */
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --shadow-neon: 0 0 20px rgba(139, 92, 246, 0.2);
    --shadow-cyan: 0 0 20px rgba(6, 182, 212, 0.25);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



/* Pricing Category Filter Tabs styling */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-tab-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.pricing-tab-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-tab-btn.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: var(--shadow-neon);
}






/* General Reset & Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Header & Navigation */
.app-header {
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-bulb {
    font-size: 28px;
    color: var(--color-secondary);
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.6));
    animation: bulbGlow 4s infinite alternate;
}

.logo-star {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    color: var(--color-star);
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.8));
    animation: pulse 2s infinite;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 40%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: lowercase;
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: capitalize;
}

.app-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}


.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-btn-highlight {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-neon);
}

.nav-btn-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
}

.nav-btn-wsp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.nav-btn-wsp:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
}

.admin-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 8px;
}

.admin-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--color-secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(to right, #ffffff, #e2e8f0, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-gradient-text {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #7c3aed);
    color: #ffffff;
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Features/Benefits Section */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

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

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-cyan);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--color-secondary), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-num {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 24px;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    font-family: var(--font-heading);
}

.benefit-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-secondary);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    font-size: 24px;
}

.benefit-card:nth-child(even) .benefit-icon-wrapper {
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-primary-light);
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* Pricing Section */
.planes-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, rgba(22, 28, 45, 0.3) 50%, var(--bg-main) 100%);
    border-top: 1px solid var(--border-color);
}

/* 3-plan grid (legacy, kept for compatibility) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* 5-plan responsive grid */
.container-pricing {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
    align-items: stretch;
    justify-content: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 28px 20px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
}


.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--color-star);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.15), 0 0 60px rgba(251, 191, 36, 0.05);
    background: linear-gradient(180deg, rgba(251,191,36,0.04) 0%, var(--bg-card) 100%);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(251, 191, 36, 0.2);
}

/* Redesigned Plan Styles */
.plan-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.btn-plan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    width: 100%;
    justify-content: center;
    transition: var(--transition-smooth);
    color: #ffffff;
}

.btn-plan-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.25);
}
.btn-plan-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.45);
}

.btn-plan-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}
.btn-plan-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.45);
}

.btn-plan-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.25);
}
.btn-plan-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.45);
}

.btn-plan-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}
.btn-plan-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.45);
}

.btn-plan-amber {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}
.btn-plan-amber:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.45);
}

.plan-illustration {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.pricing-card.featured .plan-illustration {
    background: rgba(251, 191, 36, 0.04);
    border-color: rgba(251, 191, 36, 0.15);
}

.plan-badge {
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-expreso-badge {
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-secondary);
}

.plan-landing-badge {
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-primary-light);
}

.plan-institucional-badge {
    background: rgba(251, 191, 36, 0.15);
    color: var(--color-star);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.plan-avanzado-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.plan-ecommerce-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.plan-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.pricing-header h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.price-box {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
}

.price-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-right: 4px;
}

.price-amount {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-main);
    font-family: var(--font-heading);
    line-height: 1;
}

.price-period {
    font-size: 13px;
    color: var(--text-muted);
    margin-left: 4px;
}

/* E-Commerce premium button */
.btn-ecommerce {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    width: 100%;
    justify-content: center;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
    transition: var(--transition-smooth);
}

.btn-ecommerce:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.45);
}


.pricing-body {
    flex-grow: 1;
    margin-bottom: 30px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-main);
}

.pricing-features li i {
    margin-top: 3px;
}

.pricing-features li.included i {
    color: var(--color-success);
}

.pricing-features li.excluded i {
    color: var(--color-danger);
}

.pricing-features li.excluded {
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-features .cost-renewal {
    font-size: 12px;
    color: var(--color-warning);
    margin-top: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.pricing-footer .btn {
    width: 100%;
    justify-content: center;
}

/* Free First Year Banner */
.free-banner-wrapper {
    margin-top: 60px;
}

.free-banner {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px dashed rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.free-banner-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--color-star);
    margin-bottom: 12px;
}

.free-banner-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.free-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.free-item i {
    color: var(--color-star);
}

/* Modal Form Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #111827;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    padding: 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: var(--transition-smooth);
    position: relative;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.modal-header {
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

.modal-summary-box {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 6px;
}

.summary-row:last-child {
    margin-bottom: 0;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-weight: 700;
}

.summary-total {
    color: var(--color-secondary);
}

/* Success View */
.success-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    max-width: 600px;
    margin: 80px auto;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    margin: 0 auto 24px auto;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.success-card h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.success-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.success-details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    margin-bottom: 36px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

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

.detail-label {
    color: var(--text-muted);
}

.detail-value {
    font-weight: 600;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

/* Admin Dashboard Styling */
.admin-section {
    padding: 60px 0;
}

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

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.stat-icon.revenue {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.stat-icon.orders {
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-secondary);
}

.stat-icon.completed {
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-primary-light);
}

.stat-icon.failed {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
}

.stat-details h5 {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-details h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 4px;
}

.table-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 20px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-completed {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-failed {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination-container nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-container nav a, .pagination-container nav span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.pagination-container nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.15);
}

.pagination-container nav .active, .pagination-container nav span[aria-current="page"], .pagination-container nav .relative.z-0.inline-flex.shadow-sm.rounded-md span[aria-current="page"] span {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

/* Footer Styles */
.app-footer {
    background: #070a12;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    max-width: 380px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-main);
    padding-left: 4px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

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

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Animations */
@keyframes bulbGlow {
    from {
        filter: drop-shadow(0 0 4px rgba(6, 182, 212, 0.4));
    }
    to {
        filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.8));
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Loader Styles */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.loader-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(139, 92, 246, 0.1);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

.loader-overlay p {
    margin-top: 20px;
    font-weight: 500;
    color: var(--color-secondary);
}

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

/* Alerts and Messages */
.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
    display: none;
}

/* Media Queries (Responsive) */
@media (max-width: 1280px) {
    .pricing-grid-5 {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 20px 10px;
        gap: 24px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-card {
        flex: 0 0 320px;
        min-width: 320px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-info, .footer-links, .footer-contact {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
    .modal-card {
        padding: 24px;
    }
}

/* E-Commerce Shopping Cart Drawer Styles */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: #0e1322;
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 1600;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer-overlay.active .cart-drawer {
    right: 0;
}

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.cart-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cart-close-btn:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

.cart-drawer-body {
    flex-grow: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-empty-state {
    text-align: center;
    margin: auto 0;
    color: var(--text-muted);
}

.cart-empty-state i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 16px;
}

.cart-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: center;
    position: relative;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h4 {
    font-size: 15px;
    margin-bottom: 4px;
    color: #ffffff;
}

.cart-item-details .price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-secondary);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--color-danger);
    cursor: pointer;
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition-smooth);
    padding: 8px;
}

.cart-item-remove:hover {
    opacity: 1;
    transform: scale(1.1);
}

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-totals {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
}

.cart-total-row.grand-total {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-top: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 16px 20px;
        gap: 16px;
    }
    .app-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
    .nav-link {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .plan-detail-grid {
        grid-template-columns: 1fr !important;
    }
    .plan-detail-card {
        position: static !important;
        margin-top: 20px;
    }
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


