/* ==========================================================
   PRICING PAGE â€” pricing.css
   Simple, clean layout built on style.css tokens.
   ========================================================== */

/* ----------------------------------------------------------
   Section layout
   ---------------------------------------------------------- */
.pr-section {
    padding: 70px 0;
    background: var(--bg-deep);
    position: relative;
    z-index: 1;
}

/* Reduce bottom padding for FAQ section */
#faq.pr-section {
    padding-bottom: 30px;
}


.pr-section--alt {
    background: var(--bg-body);
    border-top: 1px solid rgba(13, 31, 78, 0.1);
    border-bottom: 1px solid rgba(13, 31, 78, 0.1);
}

/* Light Theme overrides for elements inside --alt sections */
.pr-section--alt .pr-section-title,
.pr-section--alt .pr-sub-title {
    color: var(--bg-deep);
}

.pr-section--alt .pr-sub-title {
    border-bottom-color: rgba(13, 31, 78, 0.1);
}

.pr-section--alt .pr-section-desc,
.pr-section--alt .pr-list li,
.pr-section--alt .pr-note,
.pr-section--alt p {
    color: #4a5568;
}

.pr-section--alt .pr-table-wrap {
    background: #fff;
    border-color: rgba(13, 31, 78, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pr-section--alt .pr-table thead tr {
    background: rgba(13, 31, 78, 0.05);
}

.pr-section--alt .pr-table tbody tr {
    background: #fff;
    border-bottom-color: rgba(13, 31, 78, 0.05);
}

.pr-section--alt .pr-table tbody tr:nth-child(even) {
    background: rgba(13, 31, 78, 0.02);
}

.pr-section--alt .pr-table tbody tr:hover {
    background: rgba(13, 31, 78, 0.04);
}

.pr-section--alt .pr-table tbody td {
    color: #4a5568;
}

.pr-section--alt .pr-table tbody td:first-child {
    color: var(--bg-deep);
}

.pr-section--alt .board-label {
    color: #718096;
}

/* ----------------------------------------------------------
   Section headings
   ---------------------------------------------------------- */
.pr-section-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 10px;
}

.pr-section-desc {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 760px;
}

.pr-sub-title {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}

/* ----------------------------------------------------------
   Two-column layout
   ---------------------------------------------------------- */
.pr-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 36px;
}

/* ----------------------------------------------------------
   Table
   ---------------------------------------------------------- */
.pr-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
}

.pr-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    font-family: var(--font-secondary);
}

.pr-table thead tr {
    background: var(--bg-body);
}

.pr-table thead th {
    padding: 18px 24px;
    text-align: left;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--bg-deep);
    white-space: nowrap;
}

.pr-table tbody tr {
    border-bottom: 1px solid var(--glass-border);
    background: var(--glass-bg);
    transition: background 0.25s ease;
}

.pr-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.pr-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pr-table tbody td {
    padding: 15px 24px;
    font-size: 0.91rem;
    color: var(--text-light);
    vertical-align: middle;
}

.pr-table tbody td:first-child {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.93rem;
}

.board-label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 400;
    opacity: 0.65;
}

/* ----------------------------------------------------------
   Lists
   ---------------------------------------------------------- */
.pr-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.pr-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-secondary);
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
}

.pr-list li i {
    color: var(--accent-primary);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.pr-list--block {
    margin-top: 16px;
}

.pr-list--block li i {
    font-size: 0.55rem;
    margin-top: 6px;
}

/* ----------------------------------------------------------
   Note
   ---------------------------------------------------------- */
.pr-note {
    font-family: var(--font-secondary);
    font-size: 0.83rem;
    color: var(--text-light);
    opacity: 0.65;
    font-style: italic;
    line-height: 1.65;
    margin-top: 10px;
    padding-left: 4px;
}

/* ----------------------------------------------------------
   Download / Enquire buttons
   ---------------------------------------------------------- */
.pr-download-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pr-download-btn,
.pr-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.pr-download-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
}

.pr-download-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.pr-enquire-btn {
    background: var(--bg-body);
    border: 1px solid var(--text-white);
    color: var(--bg-deep);
}

.pr-enquire-btn:hover {
    background: transparent;
    color: var(--text-white);
    transform: translateY(-2px);
}

/* ----------------------------------------------------------
   Footer brand description
   ---------------------------------------------------------- */
.footer-brand-desc {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 860px) {
    .pr-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .pr-section {
        padding: 50px 0;
    }

    .pr-section-title {
        font-size: 20px;
    }

    .pr-download-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}
