/* --- PRICING TABLE BASE --- */
.starter-pt-card { 
    position: relative; 
    background: #ffffff; 
    border-radius: 24px; 
    padding: 40px 32px; 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    box-sizing: border-box; 
    font-family: inherit; 
    border: 1px solid rgba(0,0,0,0.04);
}
.starter-pt-card:hover { transform: translateY(-8px); }

/* Minimal Layout Helpers */
.starter-pt-minimal-layout .starter-pt-header { text-align: center; border-bottom: none; padding-bottom: 0; }
.starter-pt-minimal-layout .starter-pt-icon-box { margin-left: auto; margin-right: auto; }
.starter-pt-minimal-layout .starter-pt-price-row { justify-content: center; }
.starter-pt-minimal-btn { background: transparent !important; color: inherit !important; border: 1px solid currentColor !important; }

/* Badge */
.starter-pt-badge { 
    position: absolute; 
    top: -16px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: #2563eb; 
    color: white; 
    font-size: 12px; 
    font-weight: 700; 
    padding: 8px 20px; 
    border-radius: 9999px; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
    z-index: 10; 
    white-space: nowrap;
}

/* Icon */
.starter-pt-icon-box { 
    width: 64px; 
    height: 64px; 
    border-radius: 16px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    margin-bottom: 24px; 
    font-size: 28px; 
    box-shadow: 0 8px 16px -4px rgba(0,0,0,0.1);
}
.starter-pt-icon-box i { color: inherit; font-size: inherit; }
.starter-pt-icon-box svg { fill: currentColor; width: 1em; height: 1em; }

/* Header */
.starter-pt-header { margin-bottom: 32px; text-align: left; }
.starter-pt-title { 
    font-size: 24px; 
    font-weight: 800; 
    color: #111827; 
    text-transform: capitalize; 
    letter-spacing: -0.01em; 
    margin: 0 0 12px 0; 
    line-height: 1.2; 
}
.starter-pt-desc { 
    font-size: 15px; 
    color: #6b7280; 
    line-height: 1.6; 
    margin: 0; 
    font-weight: 400; 
}

/* Price */
.starter-pt-price-container { 
    margin-bottom: 24px; 
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}
.starter-pt-price-row { 
    display: flex; 
    align-items: flex-start; 
    color: #111827; 
    line-height: 1;
}
.starter-pt-currency { 
    font-size: 24px; 
    font-weight: 600; 
    margin-right: 4px; 
    margin-top: 8px;
    color: #6b7280;
}
.starter-pt-amount { 
    font-size: 56px; 
    font-weight: 800; 
    letter-spacing: -0.03em; 
}
.starter-pt-suffix { 
    font-size: 16px; 
    font-weight: 500; 
    color: #9ca3af; 
    margin-left: 6px; 
    align-self: flex-end;
    margin-bottom: 10px;
}
.starter-pt-payment-note { 
    font-size: 13px; 
    color: #9ca3af; 
    font-weight: 500; 
    margin: 8px 0 0 0; 
    display: block;
}

/* Button */
.starter-pt-button-wrap { margin-top: 0; margin-bottom: 32px; }
.starter-pt-button { 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    padding: 16px 24px; 
    border-radius: 12px; 
    font-weight: 700; 
    font-size: 15px; 
    text-align: center; 
    color: white; 
    text-decoration: none !important; 
    border-bottom: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Footer & Features */
.starter-pt-footer { 
    margin-top: 32px; 
    display: flex; 
    flex-direction: column; 
    position: relative;
    flex-grow: 0; 
}
.starter-pt-features-label { 
    font-size: 12px; 
    font-weight: 800; 
    color: #111827; 
    text-transform: uppercase; 
    letter-spacing: 0.05em;
    margin-bottom: 20px; 
}
.starter-pt-features-wrapper { 
    overflow: hidden; 
    position: relative;
    padding-bottom: 10px;
}
.starter-pt-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
    z-index: 5;
}
.starter-pt-features-list { 
    list-style: none; 
    padding: 0; 
    margin: 0 0 16px 0; 
}
.starter-pt-feature-item { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 14px; 
}
.starter-pt-feature-item:last-child { margin-bottom: 0; }
.starter-pt-check-circle { 
    margin-right: 12px; 
    margin-top: 2px; 
    color: #2563eb; 
    font-size: 16px; 
    flex-shrink: 0; 
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.starter-pt-check-circle i { font-size: 10px; }
.starter-pt-feature-text { 
    font-size: 14px; 
    color: #4b5563; 
    font-weight: 500; 
    line-height: 1.5; 
}

/* Additional Services */
.starter-pt-additional-section { 
    margin-top: 20px; 
    padding-top: 20px; 
    border-top: 1px dashed #f3f4f6; 
}
.starter-pt-additional-header { 
    display: flex; 
    align-items: center; 
    color: #111827; 
    margin-bottom: 12px; 
}
.starter-pt-plus-icon { 
    font-size: 12px; 
    margin-right: 8px; 
    color: #2563eb;
}
.starter-pt-additional-label { 
    font-size: 12px; 
    font-weight: 700; 
    text-transform: uppercase; 
}
.starter-pt-tags-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.starter-pt-tag { 
    display: inline-flex; 
    align-items: center; 
    background-color: white; 
    border: 1px solid #f3f4f6; 
    border-radius: 6px; 
    padding: 6px 10px; 
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.starter-pt-tag-text { font-size: 12px; color: #4b5563; font-weight: 500; }
.starter-pt-tag-price { 
    font-size: 12px; 
    color: #2563eb; 
    font-weight: 700; 
    margin-left: 6px; 
    background: #eff6ff;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Toggle */
.starter-pt-toggle-wrap { 
    display: flex; 
    justify-content: center; 
    margin-top: 16px; 
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    position: relative;
    z-index: 10;
}
.starter-pt-toggle-btn { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: none; 
    border: none; 
    cursor: pointer; 
    font-size: 13px; 
    font-weight: 600; 
    padding: 8px 16px; 
    transition: all 0.2s; 
    border-radius: 8px;
    color: #6b7280;
}
.starter-pt-toggle-btn:hover {
    background-color: #f9fafb;
    color: #2563eb;
}
.starter-pt-toggle-btn .btn-icon { 
    margin-left: 6px; 
    font-size: 14px; 
    display: flex; 
    align-items: center; 
    transition: transform 0.4s ease;
}

/* --- STYLE: STANDARD / FEATURED --- */
.starter-pt-card--standard { 
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05); 
}
.starter-pt-card--standard:hover { 
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1); 
}

.starter-pt-card--featured { 
    border: 2px solid var(--st-pt-blue-600); 
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.15); 
}
.starter-pt-card--featured:hover {
    box-shadow: 0 25px 50px -10px rgba(37, 99, 235, 0.25);
}

.starter-pt-card--standard .starter-pt-icon-box:not([style*="background"]) { 
    background: linear-gradient(135deg, var(--st-pt-gray-900), #374151); 
}
.starter-pt-card--featured .starter-pt-icon-box:not([style*="background"]) { 
    background: linear-gradient(135deg, var(--st-pt-blue-600), var(--st-pt-blue-700)); 
}

.starter-pt-card--standard .starter-pt-button:not([style*="background-color"]) { 
    background-color: var(--st-pt-gray-900); 
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.starter-pt-card--standard .starter-pt-button:not([style*="background-color"]):hover { 
    background-color: #000; 
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.starter-pt-card--featured .starter-pt-button:not([style*="background-color"]) { 
    background-color: var(--st-pt-blue-600); 
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.starter-pt-card--featured .starter-pt-button:not([style*="background-color"]):hover { 
    background-color: var(--st-pt-blue-700); 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* --- STYLE: MINIMAL --- */
/* No special CSS needed here as minimal style uses inline overrides in PHP logic or falls back to clean Base CSS structure. */