/* Banner utility classes */
.fw-900 { font-weight: 900; }
.fw-800 { font-weight: 800; }
.fw-600 { font-weight: 600; }
.text-teal-accent { color: #0d9488 !important; }
.text-teal-accent:hover { color: #0f766e !important; }
.hover-teal:hover { color: #0d9488 !important; }

/* Toggle */
.billing-toggle-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 6px 20px;
}
.billing-toggle-wrap .label-text {
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color .2s;
}
.billing-toggle-wrap .label-text.active { color: #4f46e5; }
.billing-toggle-wrap .label-text.inactive { color: #94a3b8; }

/* Pricing card */
.pricing-card {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 16px;
    padding: 36px 32px;
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #c7d2fe;
}

/* Plan name */
.pricing-card .plan-name { font-size: 1.35rem; font-weight: 800; color: #1e293b; margin-bottom: 16px; }

/* Price row */
.pricing-card .price-row { margin-bottom: 10px; }
.pricing-card .price-amount {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.pricing-card .price-cycle { font-size: 1rem; font-weight: 500; color: #64748b; margin-left: 2px; }

/* Description */
.pricing-card .plan-desc { font-size: 0.88rem; color: #94a3b8; line-height: 1.5; margin-bottom: 24px; }

/* Divider */
.pricing-card .divider { border: none; border-top: 1px solid #f1f5f9; margin: 0 0 24px 0; }

/* Feature list */
.pricing-card .feature-list { list-style: none; padding: 0; margin: 0 0 32px 0; flex: 1; }
.pricing-card .feature-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: 0.92rem; font-weight: 500; color: #334155; }
.pricing-card .feature-list li .check-icon { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, #4f46e5, #7c3aed); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pricing-card .feature-list li .check-icon svg { width: 12px; height: 12px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* Choose plan button */
.pricing-card .btn-choose { display: block; width: 100%; padding: 14px; border: 2px solid #e2e8f0; border-radius: 12px; background: transparent; color: #334155; font-weight: 700; font-size: 0.95rem; cursor: pointer; text-align: center; text-decoration: none; transition: all .25s ease; }
.pricing-card .btn-choose:hover { border-color: #4f46e5; color: #4f46e5; background: rgba(79,70,229,0.04); }

/* Most Value badge */
.pricing-card.most-value { border-color: #c7d2fe; box-shadow: 0 8px 30px rgba(79,70,229,0.12); position: relative; overflow: visible; }
.badge-most-value { position: absolute; top: -14px; right: 20px; background: linear-gradient(135deg, #4f46e5, #7c3aed); color: #fff; font-size: 0.78rem; font-weight: 700; padding: 6px 18px; border-radius: 50px; letter-spacing: 0.3px; box-shadow: 0 4px 12px rgba(79,70,229,0.3); z-index: 10; }

/* Breadcrumb header */
.breadcrumb-header { background: linear-gradient(135deg, #fffbeb 0%, #fff1f2 100%); border-bottom: 1px solid #f1f5f9; }
