/* --- PRICING SECTION --- */
.pricing-card {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 2.5rem 2rem;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 100%;
    /* Agar tinggi sama rata */
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}

/* Header Styles */
.pricing-header {
    text-align: center;
    width: 100%;
}

.pricing-tier-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.pricing-amount small {
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8;
    margin-left: 5px;
}

.pricing-period {
    color: #64748b;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 1.5rem;
}

/* Badge Styles */
.pricing-badge {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    font-size: 0.7rem;
    border-radius: 50px;
    padding: 6px 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.badge-standard {
    background: #64748b;
    box-shadow: none;
}

/* Divider */
.pricing-divider {
    height: 1px;
    width: 100%;
    background-color: #f1f5f9;
    margin: 1.5rem 0;
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    width: 100%;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: #475569;
    font-size: 0.95rem;
    text-align: left;
}

.pricing-features li .icon-wrap {
    width: 20px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-features li i {
    color: #10b981;
    /* Green */
    font-size: 1rem;
}

/* Button Select */
.btn-select {
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-width: 2px;
}

.btn-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* --- FAQ MODERN STYLES --- */
.accordion-modern .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 1rem;
}

.accordion-modern .accordion-button {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background-color: #eff6ff;
    /* Light Blue tint */
    color: #2563eb;
    border-color: #bfdbfe;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
}

.accordion-modern .accordion-button:focus {
    box-shadow: none;
}

.accordion-modern .accordion-collapse {
    border: none;
}

.accordion-modern .accordion-body {
    background-color: transparent;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- DARK MODE ADJUSTMENTS --- */
[data-theme="dark"] .pricing-card {
    background: #1e293b;
    /* Slate 800 */
    border-color: #334155;
}

[data-theme="dark"] .pricing-card:hover {
    border-color: #3b82f6;
    background: #1e293b;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .pricing-card-highlighted {
    border: 2px solid #3b82f6;
    background: #1e293b;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

[data-theme="dark"] .pricing-amount {
    color: #f8fafc;
}

[data-theme="dark"] .pricing-amount small {
    color: #94a3b8;
}

[data-theme="dark"] .pricing-features li {
    color: #cbd5e1;
}

[data-theme="dark"] .pricing-divider {
    background-color: #334155;
}

/* FAQ Dark Mode */
[data-theme="dark"] .accordion-modern .accordion-button {
    background-color: #1e293b;
    border-color: #334155;
    color: #f1f5f9;
}

[data-theme="dark"] .accordion-modern .accordion-button:not(.collapsed) {
    background-color: #1e293b;
    border-color: #3b82f6;
    color: #60a5fa;
}

[data-theme="dark"] .accordion-modern .accordion-body {
    color: #cbd5e1;
}

/* Mengubah warna panah accordion di dark mode */
[data-theme="dark"] .accordion-button::after {
    filter: invert(1);
}

[data-theme="dark"] .accordion-button:not(.collapsed)::after {
    filter: invert(1) sepia(100%) saturate(1000%) hue-rotate(200deg);
}
