/* === PRICING SECTION === */
.pricing-section {
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%);
    /* Deep black/dark gray */
    padding: 8rem var(--padding-page) 10rem;
    color: black;
    position: relative;
    z-index: 5;
}

.pricing-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.pricing-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 1.1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    align-items: stretch;
}

/* Pricing Card Styles */
.pricing-card {
    border-radius: 4px;
    /* Sharp or slightly rounded based on ref */
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
    transition: transform 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Dark Card (Starter & Scale) */
.pricing-card.card-dark {
    background-color: #121212;
    /* Slightly lighter than section bg */
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
}

/* Light Card (Growth - Center) */
.pricing-card.card-white {
    background-color: #ffffff;
    color: #050505;
}

/* Content Elements */
.plan-name {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.plan-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 4rem;
    opacity: 0.7;
    min-height: 60px;
    /* Force alignment */
}

.plan-price {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    line-height: 1;
}

.plan-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Buttons */
.pricing-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Dark Card Button */
.pricing-card.card-dark .pricing-btn {
    background: white;
    color: black;
}

.pricing-card.card-dark .pricing-btn:hover {
    background: #e0e0e0;
}

/* White Card Button */
.pricing-card.card-white .pricing-btn {
    background: #050505;
    color: white;
}

.pricing-card.card-white .pricing-btn:hover {
    background: #222;
}



/* Homepage specific override */
.pricing-section.homepage-pricing {
    background: #000;
    color: #fff;
}

.pricing-section.homepage-pricing .pricing-tag,
.pricing-section.homepage-pricing .pricing-title {
    color: #fff;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card {
        min-height: auto;
    }
}