
/* Astrix Theme Pricing */
.astrix-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.astrix-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    color: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}
.astrix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(56, 189, 248, 0.3);
}
.astrix-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f8fafc;
}
.astrix-price-wrap {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-end;
    gap: 0.2rem;
}
.astrix-currency {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 0.4rem;
    font-weight: 500;
}
.astrix-price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: white;
}
.astrix-period {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0.4rem;
    font-weight: 500;
}
.astrix-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.astrix-spec-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 0.8rem;
}
.astrix-spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.astrix-spec-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
}
.astrix-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.astrix-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 2rem 0;
}
.astrix-features-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 1.2rem;
}
.astrix-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}
.astrix-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}
.astrix-features li i {
    color: #0ea5e9;
    font-size: 0.9rem;
    background: rgba(14, 165, 233, 0.1);
    padding: 4px;
    border-radius: 50%;
}
.astrix-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.astrix-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
}

