/* Breadcrumb Navigation */
nav.breadcrumb {
    display: block !important;
    padding: 0.75rem 0;
    background: transparent;
}

nav.breadcrumb .container,
nav.breadcrumb .breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

nav.breadcrumb .breadcrumb-list {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    align-items: center;
}

.breadcrumb-list a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: #5eead4;
}

.breadcrumb-list .separator {
    color: #9ca3af;
    opacity: 0.5;
    margin: 0 0.5rem;
}

.breadcrumb-list .current {
    color: #46af9f;
    font-weight: 500;
}

/* Pricing Hero */
.pricing-hero {
    padding: 1.5rem 0 1rem;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero p {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Container */
.pricing-container {
    padding: 1.5rem 0 3rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid #2a2a2a;
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #14b8a6 0%, #0d9488 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-card:hover {
    border-color: rgba(20, 184, 166, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.15);
}

.pricing-card.featured {
    border-color: rgba(20, 184, 166, 0.5);
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.2);
}


/* Pricing Badge */
.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: #0a0a0a;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-badge-2 {
    height: 1.875rem;
    margin-bottom: 0.75rem;
    display: block;
}

/* Pricing Header */
.pricing-header {
    margin-bottom: 0.75rem;
    min-height: 4.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: #e5e7eb;
}

.pricing-description {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.5;
}

/* Pricing Price */
.pricing-price {
    margin: 0.75rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    min-height: 5.5rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #14b8a6;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e5e7eb;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #9ca3af;
}

.price-note {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Pricing Features */
.pricing-features {
    margin: 1rem 0;
    flex-grow: 1;
}

.pricing-features h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.5rem 0;
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.5;
}

.feature-icon {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    color: #14b8a6;
    margin-top: 0.125rem;
}

.feature-icon-disabled {
    color: #4b5563;
}

/* Pricing CTA */
.pricing-cta {
    margin-top: 1.25rem;
}

/* Button Styles */
.btn-modern {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: none;
    border: 1px solid rgba(20, 184, 166, 0.35);
    text-align: center;
    display: inline-block;
    text-decoration: none;
    background: transparent;
    color: #e5e7eb;
}


.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    background: linear-gradient(135deg, #14b8a55b 0%, #0d94895b 0%);
}

.btn-primary-modern {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #e5e7eb;
}

.btn-secondary-modern {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.btn-secondary-modern:hover {
    background: rgba(20, 184, 166, 0.2);
    border-color: rgba(20, 184, 166, 0.5);
}

/* Billing Details */
.billing-details {
    margin-top: 1.25rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid #2a2a2a;
    border-radius: 0.5rem;
    padding: 0.875rem;
}

.billing-details h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.625rem;
}

.billing-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.billing-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.375rem 0;
    color: #9ca3af;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.billing-icon {
    flex-shrink: 0;
    width: 0.875rem;
    height: 0.875rem;
    color: #14b8a6;
    margin-top: 0.125rem;
}

/* FAQ Section */
.pricing-faq {
    max-width: 700px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #2a2a2a;
}

.pricing-faq h2 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.25rem;
    color: #e5e7eb;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.375rem;
}

.faq-answer {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .pricing-hero h1 {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }

    .pricing-card {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .pricing-hero {
        padding: 2rem 0 1.5rem;
    }

    .pricing-hero h1 {
        font-size: 2.75rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}