/* BUSINESS PLAN FORM STYLES */
/* Colors: Primary Yellow (#FFAF42), Dark Blue (#1A1F36) */

#bp-form-container {
    font-family: 'Inter', sans-serif;
    color: #1A1F36;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.bp-landing-header {
    text-align: center;
    margin-bottom: 40px;
}

.bp-landing-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1A1F36;
    margin-bottom: 10px;
}

.bp-landing-header p {
    font-size: 16px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

.bp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.bp-plan-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    position: relative;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.bp-plan-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #FFAF42;
}

.bp-plan-card.recommended {
    border: 2px solid #FFAF42;
}

.bp-popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFAF42;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.bp-card-icon-wrap {
    margin-bottom: 20px;
}

.bp-card-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bp-card-footer {
    margin-top: auto;
}

.bp-card-icon {
    width: 48px;
    height: 48px;
    background: #fff5e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #1A1F36;
}

.bp-card-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 15px 0;
    min-height: 40px;
}

.bp-card-badge {
    background: #e0e7ff;
    color: #1A1F36;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.bp-card-price-wrap {
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.bp-card-price {
    font-size: 36px;
    font-weight: 800;
    color: #1A1F36;
}

.bp-card-price-label {
    font-size: 14px;
    color: #64748b;
}

.bp-card-delivery {
    font-size: 13px;
    color: #FFAF42;
    font-weight: 600;
    margin-bottom: 25px;
}

.bp-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.bp-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.5;
}

.bp-check {
    color: #FFAF42;
    font-weight: bold;
    flex-shrink: 0;
}

.bp-plan-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    background: #FFAF42;
    color: #fff;
    border: none;
}

.bp-plan-btn:hover {
    background: #f59e0b;
}

.bp-landing-footer {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    margin-top: 20px;
}

/* WIZARD */
.bp-wizard-header {
    margin-bottom: 30px;
}

.bp-wizard-title {
    font-size: 28px;
    font-weight: 700;
    color: #1A1F36;
    margin: 0 0 5px 0;
}

.bp-wizard-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.bp-wizard-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

@media (max-width: 900px) {
    .bp-wizard-grid {
        grid-template-columns: 1fr;
    }
}

.bp-step-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.bp-field-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1A1F36;
    margin-bottom: 10px;
}

.bp-req {
    color: #dc2626;
}

.bp-field-group {
    margin-bottom: 20px;
}

.bp-input-wrap,
.bp-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.bp-input-icon {
    position: absolute;
    left: 15px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.bp-input,
.bp-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    color: #1e293b;
    transition: all 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}

.bp-input.with-icon,
.bp-select.with-icon {
    padding-left: 45px;
}

.bp-input:focus,
.bp-select:focus,
.bp-textarea:focus {
    outline: none;
    border-color: #FFAF42;
    box-shadow: 0 0 0 3px rgba(255, 175, 66, 0.2);
}

.bp-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    color: #1e293b;
    resize: vertical;
    font-family: inherit;
    box-sizing: border-box;
}

.bp-hint {
    font-size: 12px;
    color: #64748b;
    margin-top: 5px;
}

.bp-purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

@media (max-width: 600px) {
    .bp-purpose-grid {
        grid-template-columns: 1fr;
    }
}

.bp-purpose-card {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.bp-purpose-card:hover {
    border-color: #FFAF42;
    background: #fffaf0;
}

.bp-purpose-card.active {
    border-color: #FFAF42;
    background: #fff5e6;
}

.bp-purpose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FFAF42;
}

.bp-purpose-text {
    flex: 1;
}

.bp-purpose-title {
    font-weight: 700;
    color: #1A1F36;
    font-size: 14px;
    margin-bottom: 2px;
}

.bp-purpose-sub {
    font-size: 12px;
    color: #64748b;
}

.bp-purpose-check {
    position: absolute;
    right: 15px;
    display: flex;
    align-items: center;
}

.bp-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

@media (max-width: 600px) {
    .bp-field-row {
        grid-template-columns: 1fr;
    }
}

.bp-del-card {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.bp-del-card:hover {
    border-color: #FFAF42;
    background: #fffaf0;
}

.bp-del-card.active {
    border-color: #FFAF42;
    background: #fff5e6;
}

.bp-step-footer {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.bp-btn-continue {
    background: #FFAF42;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.bp-btn-continue:hover {
    background: #f59e0b;
}

.bp-btn-back {
    background: transparent;
    color: #64748b;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
}

.bp-btn-back:hover {
    color: #1A1F36;
}

/* SIDEBAR */
.bp-summary-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.bp-summary-header {
    background: #4A90E2;
    /* Slightly blue but kept neutral if needed, or I can use #1A1F36 */
    color: #fff;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 16px;
}

.bp-summary-card .bp-summary-header {
    background: #1A1F36;
    /* Matching the screenshot blue header */
}

.bp-summary-body {
    padding: 20px;
}

.bp-sidebar-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #1e293b;
}

.bp-sidebar-line strong {
    font-weight: 700;
}

.bp-sidebar-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 15px 0;
}

.bp-total-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.bp-total-label {
    font-size: 16px;
    font-weight: 700;
    color: #1A1F36;
}

.bp-total-val {
    font-size: 20px;
    font-weight: 800;
}

.bp-deposit-box {
    background: #fffaf0;
    border: 1px solid #ffedd5;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.bp-deposit-label {
    font-size: 11px;
    font-weight: 700;
    color: #FFAF42;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.bp-deposit-val {
    font-size: 24px;
    font-weight: 800;
    color: #FFAF42;
    margin-bottom: 5px;
}

.bp-deposit-note {
    font-size: 12px;
    color: #64748b;
}

.bp-badges {
    margin-bottom: 20px;
}

.bp-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f0fdf4;
    /* A light safe bg, actually let's use #f8fafc to avoid green */
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 10px;
}

.bp-trust-item .bp-trust-icon {
    width: 24px;
    height: 24px;
    background: #16a34a;
    /* Wait, no green. Let's make it Yellow */
    background: #FFAF42;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-trust-title {
    font-size: 13px;
    font-weight: 700;
    color: #1A1F36;
}

.bp-trust-text {
    font-size: 11px;
    color: #64748b;
}

.bp-sidebar-trust {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.bp-trust-logo-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.bp-trust-logo-wrap img {
    height: 30px;
    object-fit: contain;
}

.bp-trust-stars {
    font-size: 14px;
    margin-bottom: 5px;
}

.bp-trust-count {
    font-size: 12px;
    color: #64748b;
}

/* Fix step 3 specific review cards */
.bp-review-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.bp-review-card-head {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

/* New classes for Step 2 & 3 */
.bp-proj-card {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    text-align: center;
}

.bp-proj-card:hover {
    border-color: #FFAF42;
    background: #fffaf0;
}

.bp-proj-card.active {
    border-color: #FFAF42;
    background: #fff5e6;
}

.bp-proj-rec {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFAF42;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
}

.bp-addon-row {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.2s;
    background: #fff;
}

.bp-addon-row.active {
    border-color: #FFAF42;
    background: #fff5e6;
}

.bp-review-section {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #fff;
    overflow: hidden;
}

.bp-review-header {
    background: #f8fafc;
    padding: 12px 15px;
    font-weight: 700;
    font-size: 15px;
    color: #1A1F36;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.bp-review-icon {
    color: #818cf8;
    display: flex;
}

.bp-review-body {
    padding: 15px;
}

.bp-text-sm {
    font-size: 13px;
}

.bp-kv-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #475569;
}

.bp-kv-row strong {
    color: #1A1F36;
    text-align: right;
    max-width: 60%;
}

.bp-review-total-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.bp-total-highlight {
    padding: 10px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin: 10px 0;
    font-size: 15px;
}

.bp-next-steps-box {
    background: #FFFAF0;
    border: 1px solid #ffedd5;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.bp-step-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.bp-step-num {
    width: 20px;
    height: 20px;
    background: #FFAF42;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.bp-step-t {
    font-weight: 700;
    color: #FFAF42;
    font-size: 13px;
    margin-bottom: 2px;
}

.bp-step-d {
    font-size: 12px;
    color: #475569;
}