:root {
    --neon-green: #74e4de;
    --neon-glow: 0 0 15px rgba(0, 255, 65, 0.5);
    --dark-bg: #0a0a0a;
    --card-bg: rgba(15, 15, 15, 0.9);
}

body {
    background: var(--dark-bg);
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.pricing-hero {
    padding: 2rem 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    opacity: 0.5;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 20px;
    color: var(--neon-green);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.pricing-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(116, 228, 222, 0.5);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-hero .subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    padding: 1rem;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 8px;
    position: relative;
}

.pricing-table-container {
    position: relative;
    padding: 2rem 0 6rem;
}

.pricing-table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    opacity: 0.3;
}

.cyber-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.cyber-pricing-table::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.03), transparent 30%);
    pointer-events: none;
    z-index: 1;
}

.cyber-pricing-table thead {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.95));
    border-bottom: 2px solid rgba(0, 255, 65, 0.3);
}

.cyber-pricing-table th {
    padding: 2rem 1rem;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cyber-pricing-table th.feature-header {
    text-align: left;
    padding-left: 2rem;
    font-size: 1.25rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cyber-pricing-table th.plan-header {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.cyber-pricing-table th.plan-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--neon-green);
    border-radius: 2px;
}

.popular-badge {
    position: absolute;
    color: #74e4de;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    z-index: 2;
    width: calc(100% - 2rem);
}

.price-cell {
    position: relative;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-cell.feature-name {
    text-align: left;
    padding-left: 2rem;
    color: #9ca3af;
    font-weight: 500;
    position: relative;
}

.price-cell.plan-value {
    text-align: center;
    font-size: 1.125rem;
    color: #ffffff;
    position: relative;
}

.price-cell.plan-value.highlight {
    color: var(--neon-green);
    font-weight: bold;
    background: rgba(0, 255, 65, 0.05);
}

.icon-check {
    color: var(--neon-green);
    font-size: 1.25rem;
    text-shadow: 0 0 10px rgba(116, 228, 222, 0.5);
}

.icon-remove {
    color: #ff4757;
    font-size: 1.25rem;
    opacity: 0.7;
}

.cyber-pricing-table tbody tr {
    transition: all 0.3s ease;
    position: relative;
}

.cyber-pricing-table tbody tr:hover {
    background: rgba(0, 255, 65, 0.03);
    transform: translateX(2px);
}

.cyber-pricing-table tbody tr::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
}

.cyber-pricing-table tfoot {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 20, 0.9));
}

.cyber-pricing-table tfoot td {
    padding: 2rem 1rem;
    text-align: center;
}

.mobile-table-container {
    display: none;
}

.mobile-plan-card {
    background: var(--card-bg);
    border: 1px solid rgba(116, 228, 222, 0.3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.mobile-plan-card.popular {
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(116, 228, 222, 0.2);
}

.mobile-plan-card.active {
    background: rgba(116, 228, 222, 0.05);
    border-color: var(--neon-green);
}

.mobile-plan-header {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.95));
    padding: 1.5rem;
    border-bottom: 1px solid rgba(116, 228, 222, 0.2);
    text-align: center;
    position: relative;
}

.mobile-plan-header .plan-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-plan-header .plan-price {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
}

.mobile-plan-header .popular-badge {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--neon-green);
    color: var(--dark-bg);
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.25rem 0;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: calc(100% - 2rem);
}

.mobile-plan-features {
    padding: 0;
}

.mobile-feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-feature-item:last-child {
    border-bottom: none;
}

.mobile-feature-name {
    flex: 1;
    color: #9ca3af;
    font-weight: 500;
    padding-right: 1rem;
}

.mobile-feature-value {
    text-align: right;
    color: #ffffff;
    font-weight: 600;
    min-width: 80px;
}

.mobile-feature-value.highlight {
    color: var(--neon-green);
}

.mobile-feature-value .fa-check {
    color: var(--neon-green);
    font-size: 1.1rem;
}

.mobile-feature-value .fa-times {
    color: #ff4757;
    font-size: 1.1rem;
    opacity: 0.7;
}

.mobile-feature-note {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
    font-style: italic;
}

.mobile-table-toggle {
    display: none;
    margin: 1rem auto 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(116, 228, 222, 0.1);
    border: 1px solid rgba(116, 228, 222, 0.3);
    border-radius: 8px;
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-table-toggle:hover {
    background: rgba(116, 228, 222, 0.2);
}

@keyframes use-price-scan {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.use-price-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #74e4de, transparent);
    animation: use-price-scan 4s linear infinite;
    pointer-events: none;
    z-index: 2;
}

.corner-decoration {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.cyber-pricing-table .top-left {
    top: 0;
    left: 0;
    border-top: 2px solid var(--neon-green);
    border-left: 2px solid var(--neon-green);
    border-top-left-radius: 12px;
}

.cyber-pricing-table .top-right {
    top: 0;
    right: 0;
    border-top: 2px solid var(--neon-green);
    border-right: 2px solid var(--neon-green);
    border-top-right-radius: 12px;
}

.cyber-pricing-table .bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid var(--neon-green);
    border-left: 2px solid var(--neon-green);
    border-bottom-left-radius: 12px;
}

.cyber-pricing-table .bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid var(--neon-green);
    border-right: 2px solid var(--neon-green);
    border-bottom-right-radius: 12px;
}

.free-plan .plan-header {
    background: linear-gradient(135deg, rgba(116, 228, 222, 0.1), transparent);
}

.free-plan .price-cell {
    background: rgba(116, 228, 222, 0.05);
}

.feature-name {
    position: relative;
}

.feature-name::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 65, 0.2), transparent);
}

@media (max-width: 1200px) {
    .pricing-hero h1 {
        font-size: 3rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 1024px) {
    .pricing-hero h1 {
        font-size: 2.5rem;
    }

    .pricing-hero .subtitle {
        font-size: 1.125rem;
        padding: 0.875rem;
    }

    .cyber-pricing-table th,
    .cyber-pricing-table td {
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 4rem 0 3rem;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }

    .pricing-hero .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pricing-table-container {
        padding: 1rem 0 4rem;
    }

    .cyber-pricing-table-wrapper.desktop-table {
        display: none;
        overflow-x: auto;
    }

    .cyber-pricing-table-wrapper.desktop-table .cyber-pricing-table {
        min-width: 800px;
    }

    .mobile-table-container {
        display: block;
    }

    .mobile-table-toggle {
        display: block;
    }

    .status-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .corner-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 3rem 0 2rem;
    }

    .pricing-hero h1 {
        font-size: 1.75rem;
    }

    .mobile-plan-card {
        margin-bottom: 1rem;
    }

    .mobile-plan-header {
        padding: 1rem;
    }

    .mobile-plan-header .plan-name {
        font-size: 1.2rem;
    }

    .mobile-feature-item {
        padding: 0.75rem 1rem;
    }

    .mobile-feature-name {
        font-size: 0.9rem;
    }

    .mobile-feature-value {
        font-size: 0.9rem;
    }

    .mobile-table-toggle {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .mobile-feature-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-feature-name {
        margin-bottom: 0.5rem;
        padding-right: 0;
    }

    .mobile-feature-value {
        text-align: left;
        width: 100%;
    }
}
