.pricing-hero {
    text-align: center;
    align-items: center;
}

.price-highlight {
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
    margin: 1rem 0;
    font-family: var(--font-heading);
}

.price-sub {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    border: 2px solid var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.cta-section {
    text-align: center;
    padding: 6rem 10%;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.1) 100%);
}

/* Fixes for navigation specific to this page if needed, 
   though main fixes should be in style.css or here overriding */
.nav-links {
    align-items: center;
    /* Ensure button and text links align vertically */
}