/* Futuristic Plans CSS - Estilo Ne¨®n y Tecnol¨®gico */

/* Hero Section Actualizado */
.modern-hero-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d1b69 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.modern-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 50px 50px, #fff, transparent),
        radial-gradient(1px 1px at 80px 10px, #fff, transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: stars 120s linear infinite;
}

@keyframes stars {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.4);
    background: linear-gradient(45deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #b0c4de;
}

/* Futuristic Plans Section */
.futuristic-plans-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.futuristic-plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: nebula 20s ease-in-out infinite alternate;
}

@keyframes nebula {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Futuristic Plan Cards */
.futuristic-plan-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.9) 0%, rgba(15, 20, 25, 0.9) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.2),
        0 0 40px rgba(0, 255, 255, 0.1),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
}

.futuristic-plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.4),
        0 0 60px rgba(0, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
}

.futuristic-plan-card.featured {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.2),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.futuristic-plan-card.premium {
    border-color: rgba(0, 255, 127, 0.6);
    box-shadow: 
        0 0 20px rgba(0, 255, 127, 0.3),
        0 0 40px rgba(0, 255, 127, 0.2),
        inset 0 0 20px rgba(0, 255, 127, 0.1);
}

/* Plan Badge */
.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    z-index: 10;
}

.premium-badge {
    background: linear-gradient(135deg, #00ff7f 0%, #00d4ff 100%);
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
}

/* Speed Section */
.plan-speed-section {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 128, 255, 0.1) 100%);
    padding: 40px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
}

.plan-speed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.speed-display {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.speed-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ffff, #0080ff, #00ffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.speed-unit {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.speed-tv {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    animation: glow-tv 2s ease-in-out infinite alternate;
}

@keyframes glow-tv {
    0% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.8); }
    100% { text-shadow: 0 0 25px rgba(0, 255, 255, 1); }
}

.speed-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.speed-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.speed-icon:nth-child(2) { animation-delay: 0.5s; }
.speed-icon:nth-child(3) { animation-delay: 1s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(0, 255, 255, 0.8); }
}

/* Details Section */
.plan-details-section {
    padding: 40px;
    position: relative;
}

.plan-header-info {
    text-align: center;
    margin-bottom: 30px;
}

.plan-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.plan-subtitle {
    color: #b0c4de;
    font-size: 1rem;
    line-height: 1.5;
}

/* Benefits */
.plan-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(0, 255, 255, 0.05);
    border-left: 3px solid rgba(0, 255, 255, 0.5);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.benefit-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.benefit-item span:last-child {
    color: #ffffff;
    font-size: 0.95rem;
}

/* Futuristic Navigation */
.futuristic-nav {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 50, 100, 0.9) 100%);
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.futuristic-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.futuristic-nav .navbar-brand {
    color: #00ffff !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.futuristic-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.futuristic-nav .nav-link:hover {
    color: #00ffff !important;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.futuristic-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.futuristic-nav .nav-link:hover::after {
    width: 100%;
}

/* Futuristic Buttons */
.btn-futuristic-nav {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 150, 255, 0.2) 100%);
    border: 1px solid rgba(0, 255, 255, 0.4);
    color: #00ffff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-futuristic-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-futuristic-nav:hover::before {
    left: 100%;
}

.btn-futuristic-nav:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3) 0%, rgba(0, 150, 255, 0.3) 100%);
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Futuristic Body Background */
body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

/* Futuristic Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Futuristic Footer */
footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 50, 100, 0.9) 100%);
    border-top: 2px solid rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: scan 3s linear infinite;
}

footer h4, footer h5 {
    color: #00ffff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.8) !important;
}

footer a:hover {
    color: #00ffff !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* Futuristic Form Elements */
.form-control {
    background: rgba(0, 255, 255, 0.1) !important;
    border: 1px solid rgba(0, 255, 255, 0.3) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
}

.form-control:focus {
    background: rgba(0, 255, 255, 0.15) !important;
    border-color: #00ffff !important;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5) !important;
    color: #ffffff !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Futuristic Cards */
.card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 150, 255, 0.1) 100%) !important;
    border: 1px solid rgba(0, 255, 255, 0.3) !important;
    border-radius: 15px !important;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.6);
}

.card-title {
    color: #00ffff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-text {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Futuristic Typography */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

p {
    color: rgba(255, 255, 255, 0.8);
}

a {
    color: #00ffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Futuristic Lists */
.list-group-item {
    background: rgba(0, 255, 255, 0.1) !important;
    border: 1px solid rgba(0, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.list-group-item:hover {
    background: rgba(0, 255, 255, 0.2) !important;
    border-color: rgba(0, 255, 255, 0.6) !important;
}

/* Futuristic Page Structure */
.futuristic-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.futuristic-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.3"/></svg>');
    background-size: 100px 100px;
    animation: stars 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.futuristic-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.futuristic-section {
    padding: 80px 0;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
}

.futuristic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: scan 3s linear infinite;
}

.futuristic-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.futuristic-title {
    font-size: 4rem;
    font-weight: 900;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
    position: relative;
}

.futuristic-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: pulse 2s ease-in-out infinite;
}

.futuristic-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 2px;
}

.futuristic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.futuristic-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(0, 150, 255, 0.1) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.futuristic-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, transparent, #00ffff);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.futuristic-card:hover::before {
    opacity: 1;
}

.futuristic-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.4);
    border-color: rgba(0, 255, 255, 0.8);
}

.futuristic-content {
    position: relative;
    z-index: 2;
}

.futuristic-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 20px 0;
}

.futuristic-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
    margin: 40px 0;
    position: relative;
}

.futuristic-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: scan 3s linear infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Futuristic Dropdown Menu */
.futuristic-dropdown {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 50, 100, 0.9) 100%);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.futuristic-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.futuristic-dropdown .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 150, 255, 0.2) 100%);
    color: #00ffff !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.futuristic-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

/* Futuristic Social Icons */
.futuristic-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.futuristic-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 150, 255, 0.2) 100%);
    border: 2px solid rgba(0, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff !important;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.futuristic-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.futuristic-social a:hover::before {
    left: 100%;
}

.futuristic-social a:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.5);
    border-color: rgba(0, 255, 255, 0.8);
}

/* Futuristic Loading Animation */
.futuristic-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-top: 2px solid #00ffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Futuristic Badge */
.futuristic-badge {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3) 0%, rgba(0, 150, 255, 0.3) 100%);
    border: 1px solid rgba(0, 255, 255, 0.5);
    color: #00ffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    display: inline-block;
}

/* Futuristic Progress Bar */
.futuristic-progress {
    height: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.futuristic-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #0099ff);
    border-radius: 10px;
    position: relative;
    animation: progress 2s ease-in-out infinite;
}

.futuristic-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: scan 2s linear infinite;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Price Section */
.plan-price-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.price-display {
    margin-bottom: 25px;
}

.price-currency {
    font-size: 1.5rem;
    color: #00ffff;
    vertical-align: super;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.price-period {
    font-size: 1rem;
    color: #b0c4de;
    margin-left: 5px;
}

/* Futuristic Buttons */
.plan-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-futuristic {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-futuristic:hover::before {
    left: 100%;
}

.btn-install {
    background: linear-gradient(135deg, #00ffff 0%, #0080ff 100%);
    color: #0a0e27;
    border: 2px solid transparent;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.btn-install:hover {
    background: linear-gradient(135deg, #0080ff 0%, #00ffff 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.7);
}

.btn-info {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.btn-info:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.5);
}

.btn-subtitle {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
    margin-top: 5px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .plans-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .speed-number {
        font-size: 3rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .plan-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .modern-hero-section {
        padding: 60px 0;
    }
    
    .futuristic-plans-section {
        padding: 60px 0;
    }
    
    .plan-speed-section,
    .plan-details-section {
        padding: 25px;
    }
    
    .speed-number {
        font-size: 2.5rem;
    }
    
    .speed-features {
        gap: 15px;
    }
    
    .speed-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
}

/* Loading Animation */
.futuristic-plan-card {
    animation: fadeInScale 0.8s ease forwards;
    opacity: 0;
}

.futuristic-plan-card:nth-child(1) { animation-delay: 0.1s; }
.futuristic-plan-card:nth-child(2) { animation-delay: 0.2s; }
.futuristic-plan-card:nth-child(3) { animation-delay: 0.3s; }
.futuristic-plan-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
