/* Pricing page-specific styles */

.page-pricing .page-title {
    color: #ffffff;
}

/* Modern CTA button inside pricing cards */
.page-pricing .pricing-plan .plan-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0; /* avoid overflow from margins */
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.page-pricing .pricing-plan .plan-cta::after {
    content: '\2192'; /* → arrow; not using .feature-icon */
    margin-left: 10px;
    transition: transform 0.2s ease;
}

.page-pricing .pricing-plan .plan-cta:hover::after {
    transform: translateX(3px);
}

/* Color variants scoped to pricing */
.page-pricing .pricing-plan .btn-primary.plan-cta {
    background: #29514c;
    color: #ebfa9e;
    border: 2px solid #29514c;
}

.page-pricing .pricing-plan .btn-primary.plan-cta:hover {
    box-shadow: 0 10px 22px rgba(41,81,76,0.25);
}

.page-pricing .pricing-plan .btn-outline.plan-cta {
    background: #ffffff;
    color: #29514c;
    border: 2px solid #29514c;
}

.page-pricing .pricing-plan .btn-outline.plan-cta:hover {
    background: #ebfa9e;
    color: #29514c;
    box-shadow: 0 10px 22px rgba(41,81,76,0.18);
}
.pricing-faq {
    text-align: center;
}

.tees-section {
    padding: 4rem 0;
}

.tees-info {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.tees-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.tees-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem auto 2rem;
    max-width: 900px;
}

.tee-feature {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tee-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

.tee-feature .feature-icon {
    font-size: 1.5rem;
    color: #29514c;
}

.tees-info .btn {
    margin-top: 0.5rem;
}