/* Pricing Page Specifics */
.tier-title {
    color: var(--clr-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-family: var(--font-heading);
    color: var(--clr-secondary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.tier-desc p {
    margin-bottom: 1rem;
    color: var(--clr-text-main);
}

.reverse-layout {
    direction: ltr;
    /* Ensure text flows correctly */
}

/* On desktop, swap order using flex/grid order if needed, or simple DOM structure */
@media (max-width: 768px) {
    .pricing-tier.reverse-layout {
        flex-direction: column;
        /* Force standard column flow, reordered by flex order below */
    }

    .section-title {
        font-size: 2rem;
    }



    /* Compact Typography for Mobile Pricing */
    .section-title {
        font-size: 1.75rem !important;
        /* Force consistency with other pages */
    }

    .eyebrow {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    .section-lead {
        font-size: 1rem !important;
    }

    .tier-title {
        font-size: 1.5rem;
    }

    .tier-price {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    /* Aggressive Compactness for Consultation Banner */
    .consultation-banner {
        padding: 1.5rem 1rem;
        /* Much tighter padding */
        margin-bottom: 2rem;
    }

    .consultation-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
        margin-bottom: 0.5rem;
    }

    .consultation-title {
        font-size: 1.5rem;
        /* Reduced from 2rem */
        line-height: 1.1;
    }

    .consultation-meta {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .consultation-desc {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }

    .compact-btn {
        padding: 0.6rem 1.2rem;
        /* Smaller button */
        font-size: 0.9rem;
        width: 100%;
        /* Full width for easy tapping */
    }

    .compact-btn {
        padding: 0.6rem 1.2rem;
        /* Smaller button */
        font-size: 0.9rem;
        width: 100%;
        /* Full width for easy tapping */
    }

    /* Left-align pricing content on mobile for readability */
    .pricing-tier .split-content {
        text-align: left;
        padding: 0 0.5rem;
    }

    .pricing-tier .tier-title,
    .pricing-tier .tier-price {
        text-align: center;
        /* Keep titles centered */
    }

    .pricing-tier .card-list li {
        padding-left: 1.5rem;
        /* Ensure bullets have space */
        text-align: left;
    }

    .pricing-tier .card-list li {
        padding-left: 1.5rem;
        /* Ensure bullets have space */
        text-align: left;
    }

    /* Force Image-First on Mobile for ALL tiers */
    .pricing-tier {
        display: flex;
        flex-direction: column;
    }

    .pricing-tier .split-image-container {
        order: -1;
        margin-bottom: 1rem;
    }

    /* Compact Join Card for Mobile */
    .join-card {
        display: none !important;
    }
}

@media (min-width: 900px) {
    .reverse-layout .split-content {
        order: 2;
    }

    .reverse-layout .split-image-container {
        order: 1;
    }
}

.reverse-layout .split-image-container {
    order: 1;
}


.pricing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* Join/CTA Card Styles */
.join-card {
    background: var(--clr-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    /* Fill space */
}

.join-card-content {
    text-align: center;
    padding: 2rem;
}

.join-card-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    /* Default desktop size */
}

.details-grid {
    margin-top: 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Consultation Banner */
.consultation-banner {
    background-color: var(--clr-bg-alt);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.consultation-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--clr-secondary);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consultation-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--clr-primary);
}

.consultation-meta {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}

.consultation-desc {
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Premium Checkmarks for Pricing Tiers */
.pricing-tier .card-list li::before {
    content: "✓";
    color: var(--clr-secondary);
    font-weight: bold;
    font-size: 1.1rem;
    left: 0;
    top: -2px;
    /* Slight adjustment for alignment */
}

/* Distinct Styling for Add-Ons and Expectations */
.details-list {
    list-style: none;
    padding: 0;
}

.details-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--clr-text-main);
}

.details-list li::before {
    content: "•";
    color: var(--clr-primary);
    /* Use Primary Blue instead of Secondary Teal */
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
    position: absolute;
    left: 0;
    top: -5px;
}

@media (max-width: 768px) {

    /* Stack the two column details on mobile - Enforced */
    .details-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
}