/* Ares Networks — pricing page only. Loaded after site.css. */

/* Pricing Page */
.grid-cols-4 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    transition: border-color 0.2s;
}

.pricing-card:hover {
    border-color: rgba(34, 211, 238, 0.5);
}

.pricing-card.featured {
    border-color: #22d3ee;
    box-shadow: 0 0 0 1px #22d3ee, 0 10px 30px -12px rgba(34, 211, 238, 0.35);
}

.popular-badge {
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #06b6d4;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.tier-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #22d3ee;
    margin-bottom: 0.5rem;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    min-height: 3.2rem;
}

.pricing-price {
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    line-height: 1.1;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8;
}

.pricing-note {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.5rem;
    min-height: 2.4rem;
}

.pricing-card .btn-primary {
    width: 100%;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
}

.pricing-card .btn-primary:hover {
    color: #ffffff;
}

.pricing-card .feature-list {
    margin-top: 0.25rem;
}

.pricing-card .feature-item {
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
}

.pricing-footnote {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 3rem;
}
