/* Pricing Section Styles */
.pricing-section {
    background: #1a1a1a; /* Solid dark background */
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(150, 188, 51, 0.2),
        transparent
    );
}

/* Pricing Info */
.pricing-info {
    margin-bottom: 3rem;
}

.pricing-info h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.pricing-info .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(150, 188, 51, 0.15);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.card-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(150, 188, 51, 0.1);
}

.card-header h3 {
    color: var(--nts-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.coming-soon {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    font-style: italic;
}

.card-body {
    padding: 2rem;
}

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

.features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.card-footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(150, 188, 51, 0.1);
}

.beta-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Future Card Specific */
.future-card .card-body {
    padding-top: 1.5rem;
}

.future-info {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.future-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section */
.pricing-faq {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(150, 188, 51, 0.1);
}

.pricing-faq h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(150, 188, 51, 0.15);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-item h4 {
    color: var(--nts-green);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Banner Styling */
.banner {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(150, 188, 51, 0.02) 10px,
        rgba(150, 188, 51, 0.02) 20px
    );
}

.banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(150, 188, 51, 0.05) 0%,
        transparent 50%
    );
    animation: pulseGlow 10s ease-in-out infinite;
}

.pricing-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.pricing-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: var(--nts-green);
    opacity: 0.05;
}

.pricing-particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.pricing-particles .chart-element {
    position: absolute;
    font-family: Arial, sans-serif;
    font-size: 20px;
    color: var(--nts-green);
    opacity: 0.1;
    animation: chartFloat 8s linear infinite;
}

/* First row */
.pricing-particles .chart-element:nth-child(1) {
    content: '\0024';  /* USD $ */
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.pricing-particles .chart-element:nth-child(2) {
    content: '\20AC';  /* EUR € */
    left: 30%;
    top: 10%;
    animation-delay: -1s;
}

.pricing-particles .chart-element:nth-child(3) {
    content: '\00A3';  /* GBP £ */
    left: 50%;
    top: 30%;
    animation-delay: -2s;
}

.pricing-particles .chart-element:nth-child(4) {
    content: '\0052';  /* ZAR R */
    left: 70%;
    top: 15%;
    animation-delay: -3s;
}

/* Second row */
.pricing-particles .chart-element:nth-child(5) {
    content: '\0024';
    left: 20%;
    top: 40%;
    animation-delay: -4s;
}

.pricing-particles .chart-element:nth-child(6) {
    content: '\20AC';
    left: 40%;
    top: 50%;
    animation-delay: -5s;
}

.pricing-particles .chart-element:nth-child(7) {
    content: '\00A3';
    left: 60%;
    top: 45%;
    animation-delay: -6s;
}

.pricing-particles .chart-element:nth-child(8) {
    content: '\0052';
    left: 80%;
    top: 55%;
    animation-delay: -7s;
}

/* Third row */
.pricing-particles .chart-element:nth-child(9) {
    content: '\0024';
    left: 15%;
    top: 70%;
    animation-delay: -8s;
}

.pricing-particles .chart-element:nth-child(10) {
    content: '\20AC';
    left: 35%;
    top: 80%;
    animation-delay: -9s;
}

.pricing-particles .chart-element:nth-child(11) {
    content: '\00A3';
    left: 55%;
    top: 75%;
    animation-delay: -10s;
}

.pricing-particles .chart-element:nth-child(12) {
    content: '\0052';
    left: 75%;
    top: 85%;
    animation-delay: -11s;
}

/* Speed up the animation and make it more dynamic */
@keyframes chartFloat {
    0% {
        transform: translateY(100vh) translateX(-20px) scale(0.8);
        opacity: 0;
    }
    20% { opacity: 0.1; }
    50% { 
        transform: translateY(50vh) translateX(20px) scale(1.2); 
        opacity: 0.15; 
    }
    80% { opacity: 0.1; }
    100% {
        transform: translateY(-100px) translateX(-20px) scale(0.8);
        opacity: 0;
    }
}

.pricing-banner-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.pricing-badge {
    background: rgba(150, 188, 51, 0.1);
    border: 1px solid rgba(150, 188, 51, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-badge i {
    color: var(--nts-green);
    font-size: 1.2rem;
}

.pricing-badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-40px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-banner-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .pricing-badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

.banner h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.banner-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.endpoint-limit {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding: 0.25rem 1rem;
    background: rgba(150, 188, 51, 0.1);
    border-radius: 12px;
    display: inline-block;
}

/* Update the future card info text */
.future-info {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(150, 188, 51, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(150, 188, 51, 0.1);
}

.pricing-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-detail-item:first-child {
    padding-top: 0;
}

.pricing-detail-item i {
    color: var(--nts-green);
    font-size: 1.4rem;
    margin-top: -4px;
    opacity: 0.9;
    width: 24px;
    text-align: center;
    text-shadow: 0 0 10px rgba(150, 188, 51, 0.3);
}

.pricing-detail-item .fa-server {
    color: #96bc33;
}

.pricing-detail-item .fa-layer-group {
    color: #96bc33;
}

.pricing-detail-item .fa-database {
    color: #96bc33;
}

.pricing-detail-item .fa-users {
    color: #96bc33;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.detail-value {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.pricing-note {
    color: var(--nts-green);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.future-card .price .amount {
    font-size: 2.5rem;
    color: var(--nts-green);
}

.future-card .price .period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.detail-value-secondary {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.price-calculator {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(150, 188, 51, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.calculator-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.endpoint-count {
    color: var(--nts-green);
}

.calculator-slider {
    width: 100%;
    height: 4px;
    background: rgba(150, 188, 51, 0.1);
    border-radius: 2px;
    -webkit-appearance: none;
    appearance: none;
    margin: 1rem 0;
}

.calculator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--nts-green);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(150, 188, 51, 0.3);
    transition: all 0.2s ease;
}

.calculator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calculator-scale {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.calculator-price {
    color: var(--nts-green);
    font-size: 1.5rem;
    font-weight: 600;
}

.calculator-sublabel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.calculator-section {
    margin-bottom: 1.5rem;
}

.calculator-section:last-child {
    margin-bottom: 0;
}

.retention-count {
    color: var(--nts-green);
}

/* Update existing calculator-sublabel to add spacing */
.calculator-sublabel {
    margin-bottom: 1rem;
}

/* Add these new keyframe animations */
@keyframes gridFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-40px); }
}

@keyframes particleRise {
    0% { transform: translateY(40px) rotate(0deg); }
    100% { transform: translateY(-40px) rotate(360deg); }
}

@keyframes pulseGlow {
    0% { transform: rotate(0deg) scale(1); opacity: 0.05; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 0.08; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.05; }
}

@keyframes elementPulse {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.15; }
    100% { transform: scale(1); opacity: 0.1; }
}

/* Beta criteria styling */
.beta-criteria {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(150, 188, 51, 0.15);
}

.beta-criteria p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.msp-types span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.75rem;
}

.msp-types ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.msp-types li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.msp-types li i {
    color: var(--nts-green);
    font-size: 0.8rem;
}

.msp-types li:last-child {
    margin-bottom: 0;
}

.future-card .card-footer {
    text-align: center;
}

.future-card .card-footer .btn-main {
    margin: 20px 0 10px;
    display: inline-block;
}

.future-card .card-footer .beta-note {
    color: #666;
    font-size: 0.9rem;
    margin: 10px 0 0;
}

.future-card .future-note {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
} 