/* ==========================================================================
   PRICING STYLES (BRAND MATCHED & NON-FLASHY)
   ========================================================================== */

.agency-pricing {
    background: #040e2d !important;
    padding-top: 100px !important;
    padding-bottom: 90px !important;
    color: #ffffff;
}

.section-title {
    font-size: 38px;
    letter-spacing: -1px;
    color: #ffffff !important;
}

.section-subtitle {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.7;
}

/* Base Pricing Cards */
.pricing-card {
    background: #0a173d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 34px 24px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.pricing-card:hover {
    border-color: #ff7b2c;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 123, 44, 0.12);
}

.featured-card {
    background: #0d1e4c;
    border: 2px solid #ff7b2c;
}

/* Card Badges */
.card-pill {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 14px;
    border-radius: 6px;
}

.card-pill.special {
    background: linear-gradient(135deg, #ff7b2c 0%, #ff5e00 100%);
    color: #ffffff;
}

.tier-name {
    font-size: 21px;
    font-weight: 800;
    color: #ffffff;
}

.tier-desc {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 22px;
    min-height: 50px;
}

.price-wrap {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin: 4px 0 0 0;
    line-height: 1;
}

/* Feature Bullet Points */
.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tier-features li {
    font-size: 13.5px;
    color: #cbd5e1;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.tier-features li i {
    font-size: 13px;
    flex-shrink: 0;
}

.text-orange {
    color: #ff7b2c !important;
}

/* CTA Buttons */
.btn-agency-gradient-card {
    background: linear-gradient(135deg, #ff7b2c 0%, #ff5e00 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 13px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(255, 123, 44, 0.25);
}

.btn-agency-gradient-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 123, 44, 0.4);
}

.btn-agency-outline-card {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 700;
    padding: 13px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none !important;
}

.btn-agency-outline-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Callout Notice */
.pricing-notice-box {
    background: #0a173d;
    border-left: 4px solid #ff7b2c;
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.notice-icon i {
    font-size: 22px;
    margin-top: 2px;
}

.notice-text {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

.notice-text strong {
    color: #ffffff;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .tier-desc { min-height: auto; }
}

@media (max-width: 575px) {
    .price-amount { font-size: 34px; }
    .pricing-card { padding: 26px 18px; }
    .tier-name { font-size: 19px; }
    .tier-features li { font-size: 12.5px; }
}