/* ==========================================
   CLEAN MODERN PRICING TABLE
========================================== */

:root {
    --navy: #001a41;
    --orange: #ff6b00;
    --gray-bg: #f9fafb;
    --border: #e5e7eb;
}

.modern-pricing-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.pricing-subtitle {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* TABLE CARD */
.pricing-card-layout {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pricing-table-wrapper {
    overflow-x: auto;
}

/* TARGETING PHP TABLE OUTPUT */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

th {
    background: var(--gray-bg);
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border);
}

td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: #374151;
}

tbody tr:hover {
    background: #fffaf5; /* Warna orange sangat pudar untuk hover */
}

/* TIMESTAMP */
.pricing-timestamp {
    padding: 12px 20px;
    background: var(--gray-bg);
    font-size: 0.8rem;
    color: #9ca3af;
    text-align: right;
}

/* FOOTER INFO & CTA */
.pricing-footer-info {
    margin-top: 30px;
}

.note-box {
    padding: 20px;
    background: #fef3c7; /* Kuning/Orange soft untuk perhatian */
    border-radius: 8px;
    font-size: 0.9rem;
    color: #92400e;
    line-height: 1.5;
    margin-bottom: 30px;
}

.pricing-cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-price {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s;
}

.btn-filled {
    background: var(--orange);
    color: white;
}

.btn-filled:hover {
    background: #e65f00;
    transform: translateY(-2px);
}

.btn-bordered {
    border: 1px solid var(--navy);
    color: var(--navy);
}

.btn-bordered:hover {
    background: var(--navy);
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pricing-cta-group { flex-direction: column; }
    .btn-price { text-align: center; }
    .pricing-title { font-size: 1.8rem; }
}