/* ================================================
   PRICE PAGE — Cost / Table styles
   ================================================ */

/* --- Cost Section --- */
.cost-intro {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 48px;
}
.cost-block {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.cost-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.cost-block--diy::before {
    background: linear-gradient(90deg, var(--blue), transparent);
}
.cost-block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}
.cost-block-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-dim);
    border: 1px solid rgba(200,168,75,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
}
.cost-block--diy .cost-block-icon {
    background: rgba(72,149,239,0.12);
    border-color: rgba(72,149,239,0.2);
    color: var(--blue);
}
.cost-block-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.cost-block-header p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.cost-elements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.cost-element {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.cost-element .num {
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--gold);
    min-width: 24px;
    font-size: 1rem;
}
.cost-block--diy .cost-element .num { color: var(--blue); }

.cost-tables { display: flex; flex-direction: column; gap: 32px; }
.cost-sub-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}
.cost-sub-title i { font-size: 1rem; }
.cost-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.cost-table th {
    padding: 12px 18px;
    background: rgba(200,168,75,0.08);
    border: 1px solid rgba(200,168,75,0.15);
    text-align: left;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}
.cost-block--diy .cost-table th {
    background: rgba(72,149,239,0.08);
    border-color: rgba(72,149,239,0.15);
    color: var(--blue);
}
.cost-table td {
    padding: 12px 18px;
    border: 1px solid var(--dark-border);
    color: rgba(255,255,255,0.7);
}
.cost-table tr:hover td { background: rgba(255,255,255,0.03); }
.cost-table td:last-child {
    font-weight: 600;
    color: var(--gold);
}

/* --- Contact Note (price page specific) --- */
.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--gold-dim);
    border: 1px solid rgba(200,168,75,0.2);
    border-radius: var(--radius);
    margin-top: 32px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}
.contact-note i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .cost-block { padding: 24px 18px; }
    .cost-block-header { align-items: flex-start; gap: 14px; margin-bottom: 24px; }
    .cost-elements { margin-bottom: 28px; }
    .cost-element { padding: 14px 14px; }
    .cost-table th,
    .cost-table td { padding: 10px 12px; }
}
@media (max-width: 480px) {
    .cost-block { padding: 22px 16px; }
    .cost-block-icon { width: 48px; height: 48px; }
    .cost-table { font-size: 0.82rem; }
    .cost-table th,
    .cost-table td { padding: 10px 10px; }
}
