/**
 * PublicBar Assistance Hub - Styles
 */

/* ============ BASE STYLES ============ */
.pb-assist-hero {
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    /* Force full width - break out of any container */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}
.pb-assist-hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.pb-assist-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #fff;
}
.pb-assist-hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.pb-assist-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ============ HUB GRID ============ */
.pb-assist-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 0;
    position: relative;
}
.pb-assist-hub-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid transparent;
}
.pb-assist-hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: var(--accent-color);
}
.pb-assist-hub-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.pb-assist-hub-icon .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
}
.pb-assist-hub-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}
.pb-assist-hub-card p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0 0 16px 0;
    flex-grow: 1;
}
.pb-assist-hub-link {
    font-weight: 600;
    color: var(--accent-color);
}

/* ============ INTRO CARD ============ */
.pb-assist-intro-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 32px;
    border: 1px solid #e5e7eb;
}
.pb-assist-intro-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}
.pb-assist-intro-card p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* ============ GRIDS ============ */
.pb-assist-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.pb-assist-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.pb-assist-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.pb-assist-two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* ============ RESOURCE CARDS ============ */
.pb-assist-resource-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
}
.pb-assist-resource-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #3b82f6;
    transform: translateY(-2px);
}
.pb-assist-resource-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}
.pb-assist-resource-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 12px 0;
}
.pb-assist-resource-card .dashicons {
    margin-bottom: 12px;
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #6b7280;
}

/* ============ BADGES ============ */
.pb-assist-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.badge-blue { background: #dbeafe; color: #1d4ed8; }
.badge-green { background: #dcfce7; color: #15803d; }
.badge-orange { background: #ffedd5; color: #c2410c; }
.badge-teal { background: #ccfbf1; color: #0d9488; }
.badge-purple { background: #f3e8ff; color: #7c3aed; }

/* ============ LINKS ============ */
.pb-assist-link {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}
.pb-assist-link:hover {
    text-decoration: underline;
}

/* ============ BUTTONS ============ */
.pb-btn-primary {
    display: inline-block;
    background: #1e3a5f;
    color: #fff;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.pb-btn-primary:hover { background: #152a45; color: #fff; }
.pb-btn-danger { background: #dc2626; color: #fff; font-weight: 700; padding: 12px 24px; border-radius: 8px; text-decoration: none; display: inline-block; }
.pb-btn-danger:hover { background: #b91c1c; color: #fff; }
.pb-btn-warning { background: #d97706; color: #fff; font-weight: 700; padding: 12px 24px; border-radius: 8px; text-decoration: none; display: inline-block; }
.pb-btn-warning:hover { background: #b45309; color: #fff; }
.pb-btn-outline { display: inline-block; border: 2px solid #1e3a5f; color: #1e3a5f; font-weight: 700; padding: 10px 22px; border-radius: 8px; text-decoration: none; background: transparent; }
.pb-btn-outline:hover { background: #f1f5f9; }

/* Job search buttons */
.pb-btn-indeed { background: #2164f3; color: #fff; }
.pb-btn-indeed:hover { background: #1a4fd6; }
.pb-btn-linkedin { background: #0077b5; color: #fff; }
.pb-btn-linkedin:hover { background: #006097; }
.pb-btn-usajobs { background: #1f2937; color: #fff; width: 100%; }
.pb-btn-usajobs:hover { background: #111827; }

/* ============ STATE FINDER ============ */
.pb-assist-state-finder {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    margin-bottom: 32px;
}
.pb-assist-state-finder h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}
.pb-assist-state-finder > p {
    color: #6b7280;
    margin: 0 0 20px 0;
}
.pb-assist-state-select {
    width: 100%;
    max-width: 400px;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    cursor: pointer;
}
.pb-assist-state-select:focus {
    outline: none;
    border-color: #3b82f6;
}
.pb-assist-state-results {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}
.pb-assist-state-results h3 {
    font-size: 1.1rem;
    margin: 0 0 16px 0;
    color: #1f2937;
}
.pb-assist-state-result-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
}
.pb-assist-state-result-item h4 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    color: #1e3a5f;
}
.pb-assist-state-result-item p {
    margin: 0 0 8px 0;
    color: #64748b;
    font-size: 0.9rem;
}
.pb-assist-state-result-item a {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ============ CALCULATOR ============ */
.pb-assist-calculator {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-bottom: 32px;
}
.pb-assist-calc-header {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #fff;
    padding: 16px 24px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pb-assist-calc-header .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
}
.pb-assist-calc-body {
    padding: 24px;
}
.pb-assist-calc-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}
.pb-assist-calc-field label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #374151;
    margin-bottom: 6px;
}
.pb-assist-calc-field input,
.pb-assist-calc-field select {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
}
.pb-assist-calc-field input:focus,
.pb-assist-calc-field select:focus {
    outline: none;
    border-color: #3b82f6;
    background: #fff;
}
.pb-assist-calc-results {
    background: #f8fafc;
    padding: 24px;
    border-top: 1px solid #e5e7eb;
}
.pb-assist-calc-result-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
}
.pb-assist-result-item {
    flex: 1;
    min-width: 120px;
}
.pb-result-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}
.pb-result-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}
.pb-result-value.pb-deduction {
    color: #dc2626;
}
.pb-result-value.pb-highlight {
    color: #059669;
    font-size: 1.75rem;
}
.pb-assist-calc-total {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #059669;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.pb-assist-calc-note {
    font-size: 0.8rem;
    color: #9ca3af;
    font-style: italic;
    margin: 16px 0 0 0;
}
.pb-assist-breakdown {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    margin-top: 16px;
}
.pb-assist-breakdown h4 {
    margin: 0 0 12px 0;
    font-size: 0.95rem;
    color: #374151;
}
.pb-assist-breakdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pb-assist-breakdown li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9rem;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
}
.pb-assist-breakdown li:before {
    content: "•";
    color: #d97706;
    font-weight: bold;
    margin-right: 10px;
}
.pb-assist-breakdown li:last-child {
    border-bottom: none;
}

/* ============ UNEMPLOYMENT FINDER ============ */
.pb-assist-finder {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    margin-bottom: 32px;
}
.pb-assist-finder h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: #1f2937;
    margin: 0 0 20px 0;
}
.pb-assist-finder h2 .dashicons {
    color: #2563eb;
}
.pb-assist-finder-select label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}
.pb-assist-finder-select select {
    width: 100%;
    max-width: 400px;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
}
.pb-assist-finder-result {
    margin-top: 24px;
    padding: 24px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    text-align: center;
}
.pb-assist-finder-result h3 {
    font-size: 1.2rem;
    color: #1e40af;
    margin: 0 0 8px 0;
}
.pb-assist-finder-result p {
    color: #3b82f6;
    margin: 0 0 16px 0;
}

/* ============ CRISIS & EMERGENCY ============ */
.pb-assist-crisis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.pb-assist-crisis-card {
    background: #fff;
    border-left: 4px solid #dc2626;
    border-radius: 0 12px 12px 0;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.pb-assist-crisis-card h3 {
    font-size: 1.1rem;
    color: #1f2937;
    margin: 0 0 8px 0;
}
.pb-assist-crisis-phone {
    font-size: 1.5rem;
    font-weight: 800;
    color: #dc2626;
    margin: 12px 0;
}
.pb-assist-crisis-card p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}
.pb-assist-crisis-banner {
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid;
    margin-bottom: 32px;
}
.pb-assist-crisis-banner h3 {
    font-size: 1.5rem;
    margin: 0 0 12px 0;
}
.pb-assist-crisis-banner p {
    margin: 0 0 20px 0;
}
.pb-assist-crisis-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.pb-assist-emergency-card {
    background: #fff;
    border-left: 4px solid;
    border-radius: 0 12px 12px 0;
    padding: 24px 32px;
    margin: 32px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.pb-assist-emergency-card h3 {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
}
.pb-assist-emergency-card p {
    margin: 0;
    font-size: 1.05rem;
    color: #4b5563;
}
.pb-assist-emergency-card a {
    color: inherit;
    font-weight: 700;
}

/* ============ SECTIONS ============ */
.pb-assist-section {
    margin-bottom: 40px;
}
.pb-assist-section h2 {
    font-size: 1.4rem;
    color: #1f2937;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.pb-assist-section h2 .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
}
.pb-assist-accent-bar {
    display: inline-block;
    width: 4px;
    height: 28px;
    border-radius: 4px;
    margin-right: 4px;
}

/* ============ INFO CARDS ============ */
.pb-assist-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}
.pb-assist-info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    color: #1f2937;
    margin: 0 0 16px 0;
}
.pb-assist-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pb-assist-info-card li {
    padding: 8px 0;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}
.pb-assist-info-card li:last-child {
    border-bottom: none;
}

/* ============ CHECKLIST ============ */
.pb-assist-checklist-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    margin-bottom: 32px;
}
.pb-assist-checklist-card h2 {
    font-size: 1.3rem;
    color: #1f2937;
    margin: 0 0 8px 0;
}
.pb-assist-checklist-card > p {
    color: #6b7280;
    margin: 0 0 20px 0;
}
.pb-assist-checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.pb-assist-checklist-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pb-assist-checklist-grid li {
    padding: 8px 0;
    color: #374151;
    display: flex;
    align-items: flex-start;
}
.pb-assist-checklist li {
    padding: 6px 0;
}

/* ============ TIMELINE ============ */
.pb-assist-timeline-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    margin-bottom: 32px;
}
.pb-assist-timeline-card h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    color: #1f2937;
    margin: 0 0 8px 0;
}
.pb-assist-timeline-card > p {
    color: #6b7280;
    margin: 0 0 24px 0;
}
.pb-assist-timeline {
    position: relative;
    padding-left: 40px;
    border-left: 3px solid #e5e7eb;
    margin-left: 12px;
}
.pb-assist-timeline-item {
    position: relative;
    padding-bottom: 24px;
}
.pb-assist-timeline-item:last-child {
    padding-bottom: 0;
}
.pb-assist-timeline-num {
    position: absolute;
    left: -52px;
    top: 0;
    width: 32px;
    height: 32px;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.pb-assist-timeline-item h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    color: #1f2937;
}
.pb-assist-timeline-item p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

/* ============ CTA CARDS ============ */
.pb-assist-cta-card {
    border-radius: 16px;
    padding: 32px;
    border-left: 4px solid;
    text-align: center;
    margin: 32px 0;
}
.pb-assist-cta-card h3 {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
}
.pb-assist-cta-card p {
    margin: 0 0 20px 0;
    font-size: 1.05rem;
}

/* ============ HIGHLIGHT SECTIONS ============ */
.pb-assist-highlight-section {
    border-radius: 16px;
    padding: 32px;
    border: 1px solid;
    margin-bottom: 32px;
}
.pb-assist-highlight-section h2 {
    font-size: 1.3rem;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pb-assist-highlight-section > p {
    margin: 0 0 24px 0;
}

/* ============ SAFETY SECTION ============ */
.pb-assist-safety-section {
    background: #fff;
    border-radius: 16px;
    border-left: 4px solid;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.pb-assist-safety-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px 0;
}
.pb-assist-safety-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}
.pb-assist-safety-card h3 {
    font-size: 1rem;
    color: #1f2937;
    margin: 0 0 8px 0;
}
.pb-assist-safety-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0 0 12px 0;
}
.pb-assist-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #dc2626;
    font-weight: 700;
    margin-bottom: 8px;
    text-decoration: none;
}
.pb-assist-phone:hover {
    text-decoration: underline;
}

/* ============ VA CARDS ============ */
.pb-assist-va-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}
.pb-assist-va-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}
.pb-assist-va-card .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: var(--accent);
    margin-bottom: 16px;
}
.pb-assist-va-card h3 {
    font-size: 1.15rem;
    color: #1f2937;
    margin: 0 0 8px 0;
}
.pb-assist-va-card p {
    color: #6b7280;
    margin: 0 0 16px 0;
}
.pb-assist-va-card .pb-assist-link {
    color: var(--accent);
}

/* ============ PROGRAM CARDS ============ */
.pb-assist-program-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pb-assist-program-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.pb-assist-program-card .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    color: #3b82f6;
}
.pb-assist-program-card h4 {
    font-size: 1rem;
    color: #1f2937;
    margin: 0 0 8px 0;
}
.pb-assist-program-card p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

/* ============ DARK CARDS ============ */
.pb-assist-dark-card {
    background: #1f2937;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    transition: background 0.2s;
    display: block;
}
.pb-assist-dark-card:hover {
    background: #374151;
}
.pb-assist-dark-card h3 {
    color: #fff;
    font-size: 1.05rem;
    margin: 0 0 8px 0;
}
.pb-assist-dark-card p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

/* ============ JOB SEARCH ============ */
.pb-assist-job-search {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
}
.pb-assist-job-search h3,
.pb-assist-job-search h4 {
    font-size: 1rem;
    color: #1f2937;
    margin: 0 0 16px 0;
}
.pb-assist-job-search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pb-assist-job-search-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
}
.pb-assist-job-search-form input:focus {
    outline: none;
    border-color: #3b82f6;
}
.pb-assist-job-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.pb-assist-job-buttons button,
.pb-assist-job-search-form > button {
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    color: #fff;
}

/* ============ HOTLINE CARD ============ */
.pb-assist-hotline-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}
.pb-assist-hotline-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #1f2937;
    margin: 0 0 12px 0;
}
.pb-assist-hotline-card p {
    color: #6b7280;
    margin: 0 0 20px 0;
}
.pb-assist-hotline-card a {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

/* ============ TAX INFO ============ */
.pb-assist-tax-info {
    background: #1e3a5f;
    color: #fff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin: 32px 0;
}
.pb-assist-tax-info h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px 0;
    color: #fff;
}
.pb-assist-tax-info p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
}
.pb-assist-tax-info .pb-btn-primary {
    background: #fff;
    color: #1e3a5f;
}
.pb-assist-tax-info .pb-btn-primary:hover {
    background: #f1f5f9;
}

/* ============ DENIAL CARD ============ */
.pb-assist-denial-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}
.pb-assist-denial-card h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin: 0 0 20px 0;
}
.pb-assist-denial-card h4 {
    font-size: 1rem;
    margin: 0 0 12px 0;
}
.pb-assist-denial-card ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}
.pb-assist-denial-card li {
    padding: 4px 0;
    color: #4b5563;
}

/* ============ WARNING CARD ============ */
.pb-assist-warning-card {
    border-radius: 16px;
    padding: 32px;
    border: 1px solid;
}
.pb-assist-warning-card h3 {
    font-size: 1.3rem;
    margin: 0 0 12px 0;
}
.pb-assist-warning-card p {
    margin: 0 0 8px 0;
}

/* ============ DISCLAIMER ============ */
.pb-assist-disclaimer {
    background: #fff;
    border-radius: 12px;
    padding: 24px 32px;
    border: 1px solid #e5e7eb;
    margin-top: 40px;
}
.pb-assist-disclaimer h3 {
    font-size: 1.1rem;
    color: #1f2937;
    margin: 0 0 8px 0;
}
.pb-assist-disclaimer p {
    color: #6b7280;
    margin: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .pb-assist-hero {
        padding: 60px 16px;
    }
    .pb-assist-hero h1 {
        font-size: 1.75rem;
    }
    .pb-assist-hero p {
        font-size: 1rem;
    }
    .pb-assist-container {
        padding: 24px 16px;
    }
    .pb-assist-hub-grid {
        grid-template-columns: 1fr;
        margin-top: -40px;
    }
    .pb-assist-intro-card {
        margin-top: -40px;
        padding: 24px;
    }
    .pb-assist-grid-2,
    .pb-assist-grid-3,
    .pb-assist-grid-4 {
        grid-template-columns: 1fr;
    }
    .pb-assist-two-col {
        grid-template-columns: 1fr;
    }
    .pb-assist-calc-row {
        grid-template-columns: 1fr;
    }
    .pb-assist-calc-result-row {
        flex-direction: column;
        gap: 12px;
    }
    .pb-assist-tax-info {
        flex-direction: column;
        text-align: center;
    }
    .pb-assist-crisis-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}
