/**
 * PPC Budget Calculator Styles
 * Version: 1.0
 * Matches ExcyteDigital brand styling with professional blue accent
 */

.ppc-calc-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    border: 1px solid #e5e7eb;
}

.ppc-calc-header {
    text-align: center;
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #bfdbfe;
}

.ppc-calc-header h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #1e3a8a;
    line-height: 1.3;
    font-weight: 700;
    margin-top: 0;
}

.ppc-calc-header p {
    font-size: 1.05em;
    color: #1e40af;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.ppc-calc-body {
    padding: 40px;
}

/* Industry Examples Banner */
.industry-examples {
    background: #f0fdf4;
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 0.9em;
    border-left: 3px solid #10b981;
    border-right: 3px solid #10b981;
    color: #064e3b;
    line-height: 1.5;
    text-align: center;
}

.industry-examples p {
    margin: 0;
}

/* Platform Disclaimer - Subtle & Compact (Bottom of Step 1) */
.platform-disclaimer {
    background: transparent;
    padding: 16px 12px 0 12px;
    border-radius: 4px;
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 0.8em;
    color: #64748b;
    line-height: 1.4;
    text-align: center;
    border: none;
    border-top: 1px solid #e5e7eb;
}

.platform-disclaimer strong {
    color: #475569;
    display: inline;
    margin-right: 4px;
    font-weight: 600;
}



/* Lead Gate Styles */
.ppc-lead-gate {
    display: block;
}

.ppc-lead-gate.hidden {
    display: none;
}

.ppc-lead-form-container {
    max-width: 700px;
    margin: 0 auto;
}

/* Benefits List */
.benefits-list {
    background: #fef3c7;
    padding: 32px;
    border-radius: 8px;
    margin-top: 32px;
    border: 1px solid #fde68a;
}

.benefits-list h3 {
    font-size: 1.2em;
    color: #78350f;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-grid li {
    padding-left: 28px;
    color: #475569;
    line-height: 1.5;
    position: relative;
    font-size: 0.95em;
}

.benefits-grid li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2em;
}

/* Form Step Indicator */
.step-indicator {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 3px 7px;
    border-radius: 10px;
    font-size: 0.7em;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.step-title {
    font-size: 1.3em;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 24px;
}

/* Form Styles */
.ppc-lead-form {
    background: #fafafa;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.ppc-form-step {
    display: none;
}

.ppc-form-step.active {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95em;
    color: #475569;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 1em;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    color: #1f2937;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.85em;
    margin-top: 4px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Radio Group */
.radio-group {
    margin-bottom: 20px;
}

.radio-group > label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 0.95em;
    color: #475569;
}

.radio-options {
    display: flex;
    gap: 20px;
}

.radio-option {
    flex: 1;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option label {
    display: block;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #475569;
    margin-bottom: 0;
}

.radio-option input[type="radio"]:checked + label {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1e40af;
}

.radio-option label:hover {
    border-color: #3b82f6;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-back {
    padding: 14px 28px;
    background: white;
    color: #475569;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.submit-btn,
.btn-next {
    flex: 1;
    padding: 16px 32px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05em;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.submit-btn:hover,
.btn-next:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.submit-btn:disabled,
.btn-next:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.privacy-note {
    font-size: 0.85em;
    color: #64748b;
    margin-top: 16px;
    line-height: 1.5;
}

.success-message {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 16px;
    display: none;
}

.success-message.show {
    display: block;
}

/* Calculator Content */
.ppc-calculator-content {
    display: none;
}

.ppc-calculator-content.active {
    display: block;
}

.ppc-calc-intro {
    background: #f0f9ff;
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    line-height: 1.6;
    border-left: 3px solid #3b82f6;
    color: #334155;
}

.ppc-calc-intro p {
    margin: 0;
}

/* Results Boxes */
.ppc-results-box {
    background: white;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ppc-results-box.primary-results {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #3b82f6;
}

.ppc-results-box h3 {
    text-align: center;
    font-size: 1.4em;
    margin-bottom: 24px;
    color: #1e3a8a;
    font-weight: 700;
}

.result-item {
    background: white;
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e0f2fe;
    transition: all 0.2s ease;
}

.result-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-color: #bae6fd;
}

.result-item.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 2px solid #3b82f6;
    padding: 20px 24px;
}

.result-item:last-child {
    margin-bottom: 0;
}

.result-label {
    font-size: 0.95em;
    font-weight: 500;
    color: #475569;
}

.result-value {
    font-size: 1.5em;
    font-weight: 700;
    color: #1e293b;
}

.result-value.highlight {
    color: #3b82f6;
    font-size: 1.8em;
}

.budget-note {
    background: #fef9f3;
    padding: 16px 20px;
    border-radius: 6px;
    margin-top: 20px;
    font-size: 0.9em;
    border-left: 3px solid #fb923c;
    color: #78350f;
    line-height: 1.6;
}

.performance-note {
    background: #eff6ff;
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9em;
    border-left: 3px solid #3b82f6;
    color: #1e40af;
    line-height: 1.6;
}

.conversion-note {
    background: #f0fdf4;
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 16px;
    font-size: 0.85em;
    border-left: 3px solid #10b981;
    color: #064e3b;
    line-height: 1.5;
}


/* Industry Insights Box */
.ppc-insights-box {
    background: #f9fafb;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px solid #e5e7eb;
}

.ppc-insights-box h3 {
    font-size: 1.3em;
    margin-bottom: 16px;
    color: #1e293b;
    font-weight: 600;
}

.insight-content {
    color: #475569;
    line-height: 1.7;
}

.insight-content ul {
    margin: 12px 0;
    padding-left: 24px;
}

.insight-content li {
    margin-bottom: 8px;
}

/* Multi-Platform Budget Allocation */
.ppc-platform-allocation {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 32px 28px;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 2px solid #f59e0b;
}

.ppc-platform-allocation h3 {
    font-size: 1.4em;
    margin-bottom: 12px;
    color: #78350f;
    font-weight: 700;
    text-align: center;
}

.allocation-intro {
    text-align: center;
    color: #92400e;
    margin-bottom: 24px;
    line-height: 1.6;
}

.allocation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.allocation-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #fde68a;
    transition: all 0.2s ease;
}

.allocation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.allocation-card.primary {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.platform-icon {
    font-size: 2em;
    margin-bottom: 8px;
}

.platform-name {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1em;
}

.allocation-percent {
    font-size: 1.8em;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 4px;
}

.allocation-card.primary .allocation-percent {
    color: #3b82f6;
}

.allocation-amount {
    font-size: 1.1em;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.platform-note {
    font-size: 0.85em;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

.platform-comparison {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #fde68a;
}

.platform-comparison h4 {
    color: #78350f;
    margin-bottom: 16px;
    font-size: 1.1em;
    font-weight: 600;
}

.platform-comparison ul {
    margin: 0 0 20px 0;
    padding-left: 24px;
    color: #475569;
    line-height: 1.7;
}

.platform-comparison li {
    margin-bottom: 12px;
}

.platform-comparison li strong {
    color: #1e293b;
}

.recommendation-box {
    background: #eff6ff;
    padding: 16px 20px;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
    color: #1e40af;
    line-height: 1.6;
    font-size: 0.95em;
}

.recommendation-box strong {
    color: #1e3a8a;
    display: block;
    margin-bottom: 8px;
}

.platform-cta-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 16px 20px;
    border-radius: 6px;
    border: 2px solid #3b82f6;
    margin: 20px 0;
    line-height: 1.6;
    font-size: 0.95em;
}

.platform-cta-box p {
    margin: 0;
    color: #1e40af;
}

.platform-cta-box strong {
    color: #1e3a8a;
}



/* CTA Section */
.ppc-cta-section {
    text-align: center;
    margin-top: 32px;
    padding: 36px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 8px;
    border: 2px solid #f59e0b;
}

.ppc-cta-section h3 {
    color: #78350f;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.4em;
}

.ppc-cta-section p {
    color: #92400e;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1em;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-button.primary {
    background: #3b82f6;
    color: white !important;
}

.cta-button.primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-button.secondary {
    background: white;
    color: #3b82f6 !important;
    border: 2px solid #3b82f6;
}

.cta-button.secondary:hover {
    background: #eff6ff;
    transform: translateY(-2px);
}

.guarantee-note {
    background: white;
    padding: 16px 20px;
    border-radius: 6px;
    font-size: 0.9em;
    color: #475569;
    border: 1px solid #e5e7eb;
}

/* Verification Screen */
.ppc-verification-screen {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    border-radius: 12px;
    border: 2px solid #3b82f6;
}

.ppc-verification-screen.active {
    display: block;
}

.ppc-verification-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.ppc-verification-title {
    font-size: 1.8em;
    color: #1e3a8a;
    margin-bottom: 16px;
    font-weight: 700;
}

.ppc-verification-message {
    font-size: 1.1em;
    color: #1e40af;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 24px;
}

.ppc-verification-email {
    background: white;
    padding: 12px 20px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 24px;
}

.ppc-resend-verification {
    display: inline-block;
    padding: 12px 32px;
    background: white;
    color: #3b82f6;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #3b82f6;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ppc-resend-verification:hover {
    background: #eff6ff;
    transform: translateY(-2px);
}

.ppc-resend-verification:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.ppc-verification-note {
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 6px;
    padding: 16px;
    margin-top: 24px;
    font-size: 0.9em;
    color: #78350f;
}

/* ReCAPTCHA Container */
.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Usage Limit Warning */
.usage-limit-warning {
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 6px;
}

.usage-limit-warning strong {
    color: #78350f;
    display: block;
    margin-bottom: 8px;
}

.usage-limit-warning p {
    margin: 0;
    color: #92400e;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ppc-calc-container {
        margin: 20px 10px;
    }
    
    .ppc-calc-header {
        padding: 30px 20px 20px;
    }
    
    .ppc-calc-header h2 {
        font-size: 1.5em;
    }
    
    .ppc-calc-body {
        padding: 24px 20px;
    }
    
    .ppc-lead-form {
        padding: 24px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .btn-back {
        order: 2;
    }
    
    .btn-next,
    .submit-btn {
        order: 1;
    }
    
    .result-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 16px;
    }
    
    .result-value {
        font-size: 1.3em;
    }
    
    .result-value.highlight {
        font-size: 1.5em;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .allocation-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .ppc-platform-allocation {
        padding: 24px 20px;
    }
    
    .platform-disclaimer {
        text-align: left;
        font-size: 0.75em;
        padding: 12px 10px 0 10px;
        margin-top: 12px;
    }
}

/* Warning Box Styles */
.ppc-unrealistic-warning,
.ppc-negative-roi-warning {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    margin: 24px 0;
}

.ppc-unrealistic-warning h3,
.ppc-negative-roi-warning h3 {
    color: #dc2626;
    font-size: 1.6em;
    margin-bottom: 16px;
    text-align: center;
}

.warning-intro {
    text-align: center;
    font-size: 1.1em;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.6;
}

.warning-box {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.warning-box h4 {
    color: #991b1b;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.warning-box ul {
    margin: 0;
    padding-left: 24px;
}

.warning-box li {
    margin-bottom: 8px;
    color: #7f1d1d;
    line-height: 1.6;
}

.better-path,
.recommendations {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.better-path h4,
.recommendations h4 {
    color: #166534;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.better-path ul,
.recommendations ol {
    margin: 12px 0;
    padding-left: 24px;
}

.better-path li,
.recommendations li {
    margin-bottom: 8px;
    color: #14532d;
    line-height: 1.6;
}

.current-budget-note {
    background: #fffbeb;
    border: 2px solid #fde68a;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.current-budget-note h4 {
    color: #92400e;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.current-budget-note ul {
    margin: 12px 0;
    padding-left: 24px;
}

.current-budget-note li {
    margin-bottom: 8px;
    color: #78350f;
    line-height: 1.6;
}

/* Low ROI Alert */
.ppc-low-roi-alert {
    background: #fffbeb;
    border: 2px solid #fde68a;
    border-left-width: 4px;
    border-left-color: #f59e0b;
    border-radius: 8px;
    padding: 20px;
    margin: 24px 0;
}

.ppc-low-roi-alert h4 {
    color: #92400e;
    margin-bottom: 8px;
    font-size: 1.2em;
}

.ppc-low-roi-alert p {
    color: #78350f;
    line-height: 1.6;
    margin: 0;
}

/* Current Budget Warning Box */
.ppc-current-budget-warning {
    background: #fff;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    padding: 28px;
    margin: 32px 0;
}

.ppc-current-budget-warning h4 {
    color: #1e40af;
    margin-bottom: 12px;
    font-size: 1.3em;
}

.ppc-current-budget-warning h5 {
    color: #1e293b;
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 1.1em;
}

.ppc-current-budget-warning p {
    color: #475569;
    line-height: 1.6;
    margin: 12px 0;
}

.budget-breakdown {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.budget-breakdown ul {
    margin: 12px 0;
    padding-left: 24px;
}

.budget-breakdown li {
    margin-bottom: 8px;
    color: #7f1d1d;
    line-height: 1.6;
}

.budget-breakdown .highlight {
    background: #fee2e2;
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 12px;
    color: #991b1b;
    font-weight: 500;
}

.budget-solution {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.budget-solution ul {
    margin: 12px 0;
    padding-left: 24px;
}

.budget-solution li {
    margin-bottom: 8px;
    color: #14532d;
    line-height: 1.6;
}

/* Mobile Responsive for Warnings */
@media (max-width: 768px) {
    .ppc-unrealistic-warning,
    .ppc-negative-roi-warning,
    .ppc-current-budget-warning {
        padding: 20px 16px;
    }
    
    .ppc-unrealistic-warning h3,
    .ppc-negative-roi-warning h3 {
        font-size: 1.3em;
    }
    
    .warning-box,
    .better-path,
    .recommendations,
    .current-budget-note,
    .budget-breakdown,
    .budget-solution {
        padding: 16px;
    }
}

/* Affordable Alternative Section */
.affordable-alternative {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #3b82f6;
    border-radius: 8px;
    padding: 24px;
    margin-top: 24px;
}

.affordable-alternative h5 {
    color: #1e40af;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.affordable-alternative h6 {
    color: #1e3a8a;
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 1.05em;
    font-weight: 600;
}

.affordable-alternative p {
    color: #475569;
    line-height: 1.6;
    margin: 8px 0;
}

.alternative-option {
    background: #fff;
    border: 2px solid #bae6fd;
    border-radius: 6px;
    padding: 16px;
    margin: 16px 0;
}

.alternative-option ul {
    margin: 12px 0;
    padding-left: 24px;
}

.alternative-option li {
    margin-bottom: 6px;
    color: #334155;
    line-height: 1.5;
}

.custom-budget-offer {
    background: #fffbeb;
    border: 2px solid #fde68a;
    border-left-width: 4px;
    border-left-color: #f59e0b;
    border-radius: 6px;
    padding: 16px;
    margin: 16px 0;
}

.custom-budget-offer p {
    color: #78350f;
    margin: 8px 0;
}

.growth-timeline {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 6px;
    padding: 16px;
    margin: 16px 0;
}

.growth-timeline h6 {
    color: #166534;
}

.timeline-list {
    list-style: none;
    padding-left: 0;
    margin: 12px 0;
}

.timeline-list li {
    padding: 10px 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    border-left: 3px solid #10b981;
    color: #14532d;
    line-height: 1.5;
}

.growth-timeline em {
    color: #166534;
    font-style: italic;
}

/* Mobile Responsive for Affordable Alternative */
@media (max-width: 768px) {
    .affordable-alternative {
        padding: 16px;
    }
    
    .alternative-option,
    .custom-budget-offer,
    .growth-timeline {
        padding: 12px;
    }
    
    .affordable-alternative h5 {
        font-size: 1.1em;
    }
    
    .affordable-alternative h6 {
        font-size: 1em;
    }
}

/* Budget Clarification Note */
.budget-clarification {
    background: #f8fafc;
    border-left: 3px solid #94a3b8;
    padding: 12px 16px;
    margin: 12px 0 20px 0;
    border-radius: 4px;
    font-size: 0.9em;
    color: #475569;
    line-height: 1.5;
}

.budget-clarification strong {
    color: #1e293b;
}

.budget-clarification em {
    font-style: italic;
}

/* Better Path Forward - Enhanced Styling */
.better-path ul li {
    margin-bottom: 16px;
    line-height: 1.7;
}

.better-path ul li:last-child {
    margin-bottom: 0;
}

.better-path ul li strong {
    display: block;
    color: #166534;
    font-size: 1.05em;
    margin-bottom: 4px;
}

.better-path ul li br + text,
.better-path ul li strong + br + text {
    color: #14532d;
    font-size: 0.95em;
}
