/* Base Layout */
.landing-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: system-ui, -apple-system, sans-serif;
}

.hero-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 1rem;
    /*background-color: #f8f9fa;*/
    border-radius: 12px;
}

/* Grid Layout for Tiers */
.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

/* Card Styling */
.tier-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    /*background: #ffffff;*/
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.tier-card-header {
    padding: 2rem;
    text-align: center;
    /*background-color: #f8fafc;*/
    border-bottom: 1px solid #e2e8f0;
}

.price-display {
    font-size: 2.5rem;
    font-weight: bold;
    /*color: #0f172a;*/
}

/* List Styling */
.tier-card-body {
    padding: 2rem;
    flex-grow: 1; /* Pushes the footer to the bottom evenly */
}

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

.item-list li {
    margin-bottom: 1rem;
    /*color: #475569;*/
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-full {
    width: 100%;
    box-sizing: border-box;
}

.tier-card-footer {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
}