/* ==========================================================================
   DARK AGENCY PRICING SECTION STYLES
   ========================================================================== */

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

/* Background Glow Effect */
.pricing-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 123, 44, 0.12) 0%, rgba(4, 14, 45, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

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

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

/* Pricing Cards Base */
.pricing-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 38px 28px;
    transition: all 0.35s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    border-color: rgba(255, 123, 44, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 123, 44, 0.15);
}

.featured-card {
    background: #1e293b;
    border: 2px solid #ff7b2c;
    box-shadow: 0 20px 50px rgba(255, 123, 44, 0.2);
}

/* Card Badges / Pills */
.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 Headings & Description */
.tier-name {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.tier-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 65px;
}

/* Price Wrap & Typography */
.price-wrap {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.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;
}

.price-amount .plus {
    color: #ff7b2c;
    font-size: 26px;
    vertical-align: super;
}

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

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

.tier-features li i {
    color: #ff7b2c;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Card CTA Buttons */
.btn-agency-gradient-card {
    background: linear-gradient(135deg, #ff7b2c 0%, #ff5e00 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 14px;
    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: 14px;
    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;
}

/* Scope Notice Callout Box */
.pricing-notice-box {
    background: #0f172a;
    border-left: 4px solid #ff7b2c;
    padding: 22px 26px;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    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 {
    color: #ff7b2c;
    font-size: 22px;
    margin-top: 2px;
}

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

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

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