/* Pricing Table Compare — aum-ptc */
.aum-ptc-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

.aum-ptc-table {
    width: 100%;
    min-width: 600px;
    display: flex;
    flex-direction: column;
    --aum-ptc-border: var(--border, rgba(0,0,0,0.08));
    --aum-ptc-cols: 4;
}

/* Rows */
.aum-ptc-row {
    display: grid;
    grid-template-columns: 1.6fr repeat(calc(var(--aum-ptc-cols) - 1), 1fr);
    border-bottom: 1px solid var(--aum-ptc-border);
}
.aum-ptc-row:last-child { border-bottom: none; }

/* Section heading row */
.aum-ptc-row--section {
    background-color: var(--secondary, rgba(0,0,0,0.03));
}
.aum-ptc-section-label {
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted, #6f6e69);
}

/* Header row */
.aum-ptc-row--header {
    border-bottom: 2px solid var(--aum-ptc-border);
    padding-top: 16px; 
}

/* Cells */
.aum-ptc-cell {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-right: 1px solid var(--aum-ptc-border);
    box-sizing: border-box;
}
.aum-ptc-cell:last-child { border-right: none; }
.aum-ptc-cell--val { align-items: center; font-size: 14px; color: var(--text-on-bg, #111110); }
.aum-ptc-feat-label { font-size: 14px; color: var(--text-on-bg, #111110); justify-content: center; }

/* Highlighted column */
.aum-ptc-col--highlight {
    background-color: color-mix(in srgb, var(--primary, #3b82f6) 6%, transparent);
    position: relative;
}

/* Badge */
.aum-ptc-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #fff;
    background-color: var(--primary, #3b82f6);
    padding: 3px 10px;
    border-radius: 100px;
}

/* Plan name */
.aum-ptc-plan-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-on-bg, #111110);
    letter-spacing: -0.01em;
}

/* Price */
.aum-ptc-price-wrap { display: flex; align-items: baseline; gap: 4px; }
.aum-ptc-price {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--primary, #3b82f6);
}
.aum-ptc-period { font-size: 13px; color: var(--text-muted, #6f6e69); }

/* Button */
.aum-ptc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    background-color: var(--primary, #3b82f6);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    margin-top: 4px;
    transition: opacity 0.2s ease, transform 0.15s ease;
    box-sizing: border-box;
}
.aum-ptc-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* Check / Cross */
.aum-ptc-cell--check { color: var(--primary, #3b82f6); font-size: 16px; font-weight: 600; }
.aum-ptc-cell--cross { color: var(--text-muted, #6f6e69); font-size: 16px; }

/* Alternate rows */
.aum-ptc-row:nth-child(even):not(.aum-ptc-row--header):not(.aum-ptc-row--section) {
    background-color: rgba(0,0,0,0.02);
}
