/* pricing.css */
/* Styles specific to the pricing page. */

/* --- Pricing Hero Section --- */
.pricing-hero-section {
    min-height: 60vh;
    max-height: 600px;
    padding-bottom: calc(var(--spacing-unit) * 8); /* Reduced bottom padding for tighter spacing */
}

/* --- Pricing Tiers Section --- */
.pricing-tiers-section {
    padding-top: calc(var(--spacing-unit) * 8); /* Reduced top padding to close the gap */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
    align-items: stretch; /* Make cards equal height */
}

.pricing-card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: calc(var(--spacing-unit) * 5);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all var(--transition-duration-normal) var(--transition-timing-function-cubic);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-highlight-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 0 30px var(--accent-glow-color);
}

.pricing-card.recommended {
    border-color: var(--accent-primary-color);
    box-shadow: 0 0 30px var(--accent-glow-color);
}

.recommended-badge {
    position: absolute;
    top: 0;
    right: -1px;
    background: linear-gradient(90deg, var(--accent-primary-color), var(--accent-secondary-color));
    color: var(--primary-bg-color);
    padding: var(--spacing-unit) calc(var(--spacing-unit) * 3);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom-left-radius: var(--border-radius-lg);
}

.pricing-card .card-header {
    margin-bottom: calc(var(--spacing-unit) * 4);
    min-height: 150px; /* Ensures alignment */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-card h3 {
    font-size: var(--font-size-h3);
    color: var(--primary-text-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.price-container {
    margin: calc(var(--spacing-unit) * 2) 0;
}

.price-main {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: var(--font-weight-bold);
    color: var(--primary-text-color);
    line-height: 1;
    margin: 0;
}

.price-subtext {
    font-size: var(--font-size-md);
    color: var(--secondary-text-color);
    font-weight: var(--font-weight-light);
    margin-top: var(--spacing-unit);
}

.pricing-card .features-list {
    list-style: none;
    text-align: left;
    margin-bottom: calc(var(--spacing-unit) * 5);
    flex-grow: 1; /* Pushes button to the bottom */
}

.features-list li {
    margin-bottom: var(--spacing-unit) * 1.5;
    padding-left: calc(var(--spacing-unit) * 4);
    position: relative;
    color: var(--secondary-text-color);
}

.features-list li.included::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary-color);
    font-weight: var(--font-weight-bold);
}

.features-list li.excluded {
    color: rgba(160, 163, 176, 0.5); /* Muted text color */
    text-decoration: line-through;
}

.features-list li.excluded::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: rgba(160, 163, 176, 0.5);
    font-weight: var(--font-weight-bold);
}

.pricing-card .cta-button {
    width: 100%;
}

/* Remove the old hosting section as it's now integrated */
.hosting-section {
    display: none;
}
