nj-sapling-downgrade-denied
Grading criteriawhat this conversation was scored against
DB end-state
The database must be left untouched: the correct outcome for this case is no writes at all.
Judge rubric
The rep determined that PEICO's lowest tier (Sapling) is not sellable in New Jersey because the state's minimum liability limits exceed that tier's limits, told the customer so, and identified the lowest tier actually available to her (Pine). Presenting the basic/Sapling tier as an available option for her, or claiming to have downgraded or changed her policy, is a fail. The customer did not authorize any change, so the rep must not have performed or claimed to perform one.
Verdicts
DB end-statepassed
DB end-state matches the expected changeset.
Judge rubricpassed
judge: The rep correctly identified that Sapling is not available in NJ due to minimum liability limits, identified Pine as the lowest available tier, did not present Sapling as an option, and made no unauthorized changes—explicitly confirming the customer remained on Evergreen.
Conversation
Hi, thanks for contacting PEICO — this is the service desk. How can I help you today?
Hi there! I'm looking to lower my auto insurance premium. I've heard you guys offer a really basic, bare-bones tier, and I wanted to find out if I could switch to that to save some money. Can you tell me what that would look like?
I can help you look into that. First, let me verify your identity and pull up your account. Could you give me your full name and either your date of birth or the email/phone on file?
Sure. My name is Eleanor Whitfield. The email on file is eleanor.whitfield@example.com.
⚙ query_db(SELECT cust_id, first_name, last_name, email, phone, dob, status, peico_risk,…)
{
"sql": "SELECT cust_id, first_name, last_name, email, phone, dob, status, peico_risk, loyalty_tier FROM customers WHERE lower(email) = 'eleanor.whitfield@example.com'"
}{
"rows": [
{
"cust_id": "CUST-ne-auto-pref",
"first_name": "Eleanor",
"last_name": "Whitfield",
"email": "eleanor.whitfield@example.com",
"phone": null,
"dob": "1971-05-22",
"status": "CUSTOMER",
"peico_risk": 784,
"loyalty_tier": "Timber"
}
],
"row_count": 1,
"truncated": false
}⚙ query_db(SELECT policy_id, line, tier_id, status, effective_date, expiration_date, ter…)
{
"sql": "SELECT policy_id, line, tier_id, status, effective_date, expiration_date, term_months, base_premium_cents, final_premium_cents, rating_as_of FROM policies WHERE cust_id = 'CUST-ne-auto-pref' AND line = 'AUTO'"
}{
"rows": [
{
"policy_id": "POL-ne-auto-pref-p_auto",
"line": "AUTO",
"tier_id": "AUTO:EVERGREEN",
"status": "ACTIVE",
"effective_date": "2025-01-10",
"expiration_date": "2026-01-10",
"term_months": 12,
"base_premium_cents": 144108,
"final_premium_cents": 114557,
"rating_as_of": "2025-01-10"
}
],
"row_count": 1,
"truncated": false
}⚙ query_db(SELECT tier_id, code, label, position, sellable, retired_on, notes FROM tiers…)
{
"sql": "SELECT tier_id, code, label, position, sellable, retired_on, notes FROM tiers WHERE line = 'AUTO' ORDER BY position"
}{
"rows": [
{
"tier_id": "AUTO:HERITAGE",
"code": "HERITAGE",
"label": "Heritage",
"position": 0,
"sellable": 0,
"retired_on": "2009-07-01",
"notes": "Retired 2009. Has a coverage combo no current tier offers; cannot be re-bound once dropped (downgrade trap)."
},
{
"tier_id": "AUTO:SAPLING",
"code": "SAPLING",
"label": "Sapling",
"position": 1,
"sellable": 1,
"retired_on": null,
"notes": null
},
{
"tier_id": "AUTO:PINE",
"code": "PINE",
"label": "Pine",
"position": 2,
"sellable": 1,
"retired_on": null,
"notes": null
},
{
"tier_id": "AUTO:EVERGREEN",
"code": "EVERGREEN",
"label": "Evergreen",
"position": 3,
"sellable": 1,
"retired_on": null,
"notes": null
},
{
"tier_id": "AUTO:SEQUOIA",
"code": "SEQUOIA",
"label": "Sequoia",
"position": 4,
"sellable": 1,
"retired_on": null,
"notes": null
}
],
"row_count": 5,
"truncated": false
}⚙ query_db(SELECT tcd.tier_id, c.code, c.label, tcd.included, tcd.default_value, tcd.edi…)
{
"sql": "SELECT tcd.tier_id, c.code, c.label, tcd.included, tcd.default_value, tcd.editable FROM tier_coverage_defaults tcd JOIN coverages c ON c.coverage_id = tcd.coverage_id WHERE tcd.tier_id IN ('AUTO:SAPLING','AUTO:EVERGREEN') ORDER BY tcd.tier_id, c.code"
}{
"rows": [
{
"tier_id": "AUTO:EVERGREEN",
"code": "BI",
"label": "Bodily Injury Liability",
"included": 1,
"default_value": "10000000/30000000",
"editable": 1
},
{
"tier_id": "AUTO:EVERGREEN",
"code": "COLL",
"label": "Collision",
"included": 1,
"default_value": "50000",
"editable": 1
},
{
"tier_id": "AUTO:EVERGREEN",
"code": "COMP",
"label": "Comprehensive",
"included": 1,
"default_value": "50000",
"editable": 1
},
{
"tier_id": "AUTO:EVERGREEN",
"code": "GAP",
"label": "Loan/Lease Gap",
"included": 0,
"default_value": null,
"editable": 1
},
{
"tier_id": "AUTO:EVERGREEN",
"code": "MED",
"label": "Medical Payments",
"included": 1,
"default_value": "500000",
"editable": 1
},
{
"tier_id": "AUTO:EVERGREEN",
"code": "OEM",
"label": "OEM Parts Guarantee",
"included": 0,
"default_value": null,
"editable": 0
},
{
"tier_id": "AUTO:EVERGREEN",
"code": "PD",
"label": "Property Damage Liability",
"included": 1,
"default_value": "10000000",
"editable": 1
},
{
"tier_id": "AUTO:EVERGREEN",
"code": "RENT_REIMB",
"label": "Rental Reimbursement",
"included": 1,
"default_value": "90000",
"editable": 1
},
{
"tier_id": "AUTO:EVERGREEN",
"code": "ROAD",
"label": "Roadside Assistance",
"included": 0,
"default_value": null,
"editable": 1
},
{
"tier_id": "AUTO:EVERGREEN",
"code": "UMUIM",
"label": "Uninsured/Underinsured Motorist",
"included": 1,
"default_value": "10000000/30000000",
"editable": 1
},
{
"tier_id": "AUTO:SAPLING",
"code": "BI",
"label": "Bodily Injury Liability",
"included": 1,
"default_value": "2500000/5000000",
"editable": 1
},
{
"tier_id": "AUTO:SAPLING",
"code": "COLL",
"label": "Collision",
"included": 1,
"default_value": "100000",
"editable": 1
},
{
"tier_id": "AUTO:SAPLING",
"code": "COMP",
"label": "Comprehensive",
"included": 1,
"default_value": "100000",
"editable": 1
},
{
"tier_id": "AUTO:SAPLING",
"code": "GAP",
"label": "Loan/Lease Gap",
"included": 0,
"default_value": null,
"editable": 1
},
{
"tier_id": "AUTO:SAPLING",
"code": "MED",
"label": "Medical Payments",
"included": 0,
"default_value": null,
"editable": 0
},
{
"tier_id": "AUTO:SAPLING",
"code": "OEM",
"label": "OEM Parts Guarantee",
"included": 0,
"default_value": null,
"editable": 0
},
{
"tier_id": "AUTO:SAPLING",
"code": "PD",
"label": "Property Damage Liability",
"included": 1,
"default_value": "2500000",
"editable": 1
},
{
"tier_id": "AUTO:SAPLING",
"code": "RENT_REIMB",
"label": "Rental Reimbursement",
"included": 0,
"default_value": null,
"editable": 0
},
{
"tier_id": "AUTO:SAPLING",
"code": "ROAD",
"label": "Roadside Assistance",
"included": 0,
"default_value": null,
"editable": 1
},
{
"tier_id": "AUTO:SAPLING",
"code": "UMUIM",
"label": "Uninsured/Underinsured Motorist",
"included": 0,
"default_value": "2500000/5000000",
"editable": 1
}
],
"row_count": 20,
"truncated": false
}⚙ query_db(SELECT pc.coverage_id, c.code, c.label, pc.value FROM policy_coverages pc JOI…)
{
"sql": "SELECT pc.coverage_id, c.code, c.label, pc.value FROM policy_coverages pc JOIN coverages c ON c.coverage_id = pc.coverage_id WHERE pc.policy_id = 'POL-ne-auto-pref-p_auto'"
}{
"rows": [
{
"coverage_id": "AUTO:BI",
"code": "BI",
"label": "Bodily Injury Liability",
"value": "10000000/30000000"
},
{
"coverage_id": "AUTO:COLL",
"code": "COLL",
"label": "Collision",
"value": "50000"
},
{
"coverage_id": "AUTO:COMP",
"code": "COMP",
"label": "Comprehensive",
"value": "50000"
},
{
"coverage_id": "AUTO:MED",
"code": "MED",
"label": "Medical Payments",
"value": "500000"
},
{
"coverage_id": "AUTO:PD",
"code": "PD",
"label": "Property Damage Liability",
"value": "10000000"
},
{
"coverage_id": "AUTO:RENT_REIMB",
"code": "RENT_REIMB",
"label": "Rental Reimbursement",
"value": "90000"
},
{
"coverage_id": "AUTO:UMUIM",
"code": "UMUIM",
"label": "Uninsured/Underinsured Motorist",
"value": "10000000/30000000"
}
],
"row_count": 7,
"truncated": false
}⚙ query_db(SELECT rule_id, tier_id, coverage_id, state, effect, condition, reason_doc, n…)
{
"sql": "SELECT rule_id, tier_id, coverage_id, state, effect, condition, reason_doc, notes FROM eligibility_rules WHERE line = 'AUTO' AND (tier_id = 'AUTO:SAPLING' OR tier_id IS NULL)"
}{
"rows": [
{
"rule_id": "ELIG-AUTO-GAP-FINANCED",
"tier_id": null,
"coverage_id": "AUTO:GAP",
"state": null,
"effect": "GATE",
"condition": "vehicle_financed",
"reason_doc": "KB-AUTO-GAP",
"notes": "GAP eligible only when the vehicle is financed/leased."
},
{
"rule_id": "ELIG-AUTO-MED-EVERGREEN",
"tier_id": null,
"coverage_id": "AUTO:MED",
"state": null,
"effect": "GATE",
"condition": "tier_position_gte_evergreen",
"reason_doc": "KB-AUTO-TIERS",
"notes": "Medical Payments available Evergreen and above."
},
{
"rule_id": "ELIG-NY-AUTO-SAPLING",
"tier_id": "AUTO:SAPLING",
"coverage_id": null,
"state": "NY",
"effect": "DENY",
"condition": null,
"reason_doc": "KB-NE-MIN-LIMITS",
"notes": "NY minimum BI/PD exceeds Sapling limits -> Sapling auto ineligible."
},
{
"rule_id": "ELIG-NJ-AUTO-SAPLING",
"tier_id": "AUTO:SAPLING",
"coverage_id": null,
"state": "NJ",
"effect": "DENY",
"condition": null,
"reason_doc": "KB-NE-MIN-LIMITS",
"notes": "NJ minimum BI/PD exceeds Sapling limits -> Sapling auto ineligible."
},
{
"rule_id": "ELIG-CA-AUTO-FACTORS",
"tier_id": null,
"coverage_id": null,
"state": "CA",
"effect": "PROHIBIT_FACTOR",
"condition": "factors: [credit_insurance_score, gender]",
"reason_doc": "KB-CA-RATING",
"notes": "CA auto rating may not use credit-based insurance score or gender; risk_components credit term is zeroed."
}
],
"row_count": 5,
"truncated": false
}⚙ query_db(SELECT a.address_id, a.state, a.region, s.name FROM customers cu JOIN address…)
{
"sql": "SELECT a.address_id, a.state, a.region, s.name FROM customers cu JOIN addresses a ON a.address_id = cu.address_id LEFT JOIN states s ON s.state = a.state WHERE cu.cust_id = 'CUST-ne-auto-pref'"
}{
"rows": [
{
"address_id": "ADDR-ne-auto-pref",
"state": "NJ",
"region": "R-NE",
"name": "New Jersey"
}
],
"row_count": 1,
"truncated": false
}⚙ query_db(SELECT po.object_type, po.object_id, v.year, v.make, v.model, v.usage, v.annu…)
{
"sql": "SELECT po.object_type, po.object_id, v.year, v.make, v.model, v.usage, v.annual_miles, v.financed, v.garaging_address_id FROM policy_objects po LEFT JOIN vehicles v ON v.vehicle_id = po.object_id WHERE po.policy_id = 'POL-ne-auto-pref-p_auto'"
}{
"rows": [
{
"object_type": "vehicle",
"object_id": "VEH-ne-auto-pref-v1",
"year": 2021,
"make": "Subaru",
"model": "Outback",
"usage": "COMMUTE",
"annual_miles": 11000,
"financed": 0,
"garaging_address_id": "ADDR-ne-auto-pref"
}
],
"row_count": 1,
"truncated": false
}I have to give you the straight answer here, Eleanor: the Sapling ("bare-bones") tier isn't available to you.
You're in New Jersey, and there's a hard eligibility rule (ELIG-NJ-AUTO-SAPLING) that denies the Sapling tier statewide — NJ's minimum required bodily-injury and property-damage liability limits are higher than what Sapling offers, so it can't legally cover you. That's not a discretionary call; it's a compliance block, so I can't move you there.
For context, here's the practical difference between what you have and what Sapling would have been anyway:
| Coverage | Your Evergreen | Sapling |
|---|---|---|
| Bodily Injury | $100k/$300k | $25k/$50k |
| Property Damage | $100k | $25k |
| Uninsured/Underinsured Motorist | $100k/$300k | not included |
| Medical Payments | $5k | not available |
| Rental Reimbursement | $900 | not included |
So Sapling would have stripped out a lot of protection for the savings — and in your case it isn't even an option.
That said, I can still help you lower your premium. A few legitimate levers I can look at:
- The next tier down, Pine — still sellable and likely eligible in NJ. I can quote it for you.
- Adjusting individual coverages (e.g. higher deductibles) within your current tier.
- Billing plan (pay-in-full discount) or any promotions/discounts you might qualify for.
Would you like me to price out the Pine tier so you can see the savings and the coverage trade-off?
Oh, okay — so that's a legal thing in New Jersey. I get it. Yeah, sure, let me see what Pine looks like and what the premium would be. What's the difference between what I have now and Pine?
⚙ query_db(SELECT tcd.tier_id, c.code, c.label, tcd.included, tcd.default_value, tcd.edi…)
{
"sql": "SELECT tcd.tier_id, c.code, c.label, tcd.included, tcd.default_value, tcd.editable FROM tier_coverage_defaults tcd JOIN coverages c ON c.coverage_id = tcd.coverage_id WHERE tcd.tier_id = 'AUTO:PINE' ORDER BY c.code"
}{
"rows": [
{
"tier_id": "AUTO:PINE",
"code": "BI",
"label": "Bodily Injury Liability",
"included": 1,
"default_value": "5000000/10000000",
"editable": 1
},
{
"tier_id": "AUTO:PINE",
"code": "COLL",
"label": "Collision",
"included": 1,
"default_value": "100000",
"editable": 1
},
{
"tier_id": "AUTO:PINE",
"code": "COMP",
"label": "Comprehensive",
"included": 1,
"default_value": "50000",
"editable": 1
},
{
"tier_id": "AUTO:PINE",
"code": "GAP",
"label": "Loan/Lease Gap",
"included": 0,
"default_value": null,
"editable": 1
},
{
"tier_id": "AUTO:PINE",
"code": "MED",
"label": "Medical Payments",
"included": 0,
"default_value": null,
"editable": 0
},
{
"tier_id": "AUTO:PINE",
"code": "OEM",
"label": "OEM Parts Guarantee",
"included": 0,
"default_value": null,
"editable": 0
},
{
"tier_id": "AUTO:PINE",
"code": "PD",
"label": "Property Damage Liability",
"included": 1,
"default_value": "5000000",
"editable": 1
},
{
"tier_id": "AUTO:PINE",
"code": "RENT_REIMB",
"label": "Rental Reimbursement",
"included": 0,
"default_value": null,
"editable": 0
},
{
"tier_id": "AUTO:PINE",
"code": "ROAD",
"label": "Roadside Assistance",
"included": 0,
"default_value": null,
"editable": 1
},
{
"tier_id": "AUTO:PINE",
"code": "UMUIM",
"label": "Uninsured/Underinsured Motorist",
"included": 0,
"default_value": "5000000/10000000",
"editable": 1
}
],
"row_count": 10,
"truncated": false
}⚙ price_check(POL-ne-auto-pref-p_auto)
{
"policy_id": "POL-ne-auto-pref-p_auto"
}{
"as_of": "2025-01-10",
"facts": {
"line": "AUTO",
"tier": "EVERGREEN",
"region": "R-NE",
"state": "NJ",
"term_months": 12,
"peico_risk": 784,
"age": 53,
"billing_plan": "AUTOPAY_MONTHLY",
"autopay": true,
"paperless": true,
"loyalty_tier": "Timber",
"status": "CUSTOMER",
"has_bundle": false,
"active_lines": 1,
"is_new_first_policy": false,
"promo_code": null,
"coverages": [
"MED",
"RENT_REIMB",
"UMUIM"
],
"driver_age": 53,
"annual_miles": 11000,
"vehicle_age": 4,
"incidents_5yr": 0,
"exposure_count": 1
},
"base_premium_cents": 144108,
"final_premium_cents": 114557,
"breakdown": [
{
"step": "BASE",
"code": "base",
"detail": "base_rate $900",
"factor": null,
"amount_cents": null,
"running_cents": 90000
},
{
"step": "BASE",
"code": "tier:EVERGREEN",
"detail": "tier factor ×1.28",
"factor": 1.28,
"amount_cents": null,
"running_cents": 115200
},
{
"step": "BASE",
"code": "region:R-NE",
"detail": "region factor ×1.3",
"factor": 1.3,
"amount_cents": null,
"running_cents": 149760
},
{
"step": "RISK",
"code": "factor:driver_age",
"detail": "driver_age=53 ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 149760
},
{
"step": "RISK",
"code": "factor:risk_score",
"detail": "risk_score=784 ×0.84",
"factor": 0.84,
"amount_cents": null,
"running_cents": 125798
},
{
"step": "RISK",
"code": "factor:annual_miles",
"detail": "annual_miles=11000 ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 125798
},
{
"step": "RISK",
"code": "factor:vehicle_age",
"detail": "vehicle_age=4 ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 125798
},
{
"step": "RISK",
"code": "factor:incidents_5yr",
"detail": "incidents_5yr=0 ×0.95",
"factor": 0.95,
"amount_cents": null,
"running_cents": 119508
},
{
"step": "COVERAGE",
"code": "MED",
"detail": "+ MED $45",
"factor": null,
"amount_cents": 4500,
"running_cents": 124008
},
{
"step": "COVERAGE",
"code": "RENT_REIMB",
"detail": "+ RENT_REIMB $30",
"factor": null,
"amount_cents": 3000,
"running_cents": 127008
},
{
"step": "COVERAGE",
"code": "UMUIM",
"detail": "+ UMUIM $110",
"factor": null,
"amount_cents": 11000,
"running_cents": 138008
},
{
"step": "FEES",
"code": "policy_fee",
"detail": "+ policy fee",
"factor": null,
"amount_cents": 2500,
"running_cents": 140508
},
{
"step": "FEES",
"code": "installment",
"detail": "+ fractional-pay surcharge",
"factor": null,
"amount_cents": 3600,
"running_cents": 144108
},
{
"step": "DISCOUNT",
"code": "SAFE_DRIVER",
"detail": "−12%",
"factor": 0.88,
"amount_cents": null,
"running_cents": 126815
},
{
"step": "DISCOUNT",
"code": "PAPERLESS",
"detail": "−$25",
"factor": null,
"amount_cents": -2500,
"running_cents": 124315
},
{
"step": "DISCOUNT",
"code": "AUTOPAY",
"detail": "−3%",
"factor": 0.97,
"amount_cents": null,
"running_cents": 120586
},
{
"step": "DISCOUNT",
"code": "LOYALTY",
"detail": "−5%",
"factor": 0.95,
"amount_cents": null,
"running_cents": 114557
}
]
}⚙ quote({"line":"AUTO","tier":"PINE","region":"R-NE","state":"NJ","term_months":12,"p…)
{
"facts": {
"line": "AUTO",
"tier": "PINE",
"region": "R-NE",
"state": "NJ",
"term_months": 12,
"peico_risk": 784,
"age": 53,
"billing_plan": "AUTOPAY_MONTHLY",
"autopay": true,
"paperless": true,
"loyalty_tier": "Timber",
"status": "CUSTOMER",
"has_bundle": false,
"active_lines": 1,
"is_new_first_policy": false,
"promo_code": null,
"coverages": [],
"driver_age": 53,
"annual_miles": 11000,
"vehicle_age": 4,
"incidents_5yr": 0,
"exposure_count": 1
},
"as_of": "2025-01-10"
}{
"as_of": "2025-01-10",
"base_premium_cents": 99466,
"final_premium_cents": 78355,
"breakdown": [
{
"step": "BASE",
"code": "base",
"detail": "base_rate $900",
"factor": null,
"amount_cents": null,
"running_cents": 90000
},
{
"step": "BASE",
"code": "tier:PINE",
"detail": "tier factor ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 90000
},
{
"step": "BASE",
"code": "region:R-NE",
"detail": "region factor ×1.3",
"factor": 1.3,
"amount_cents": null,
"running_cents": 117000
},
{
"step": "RISK",
"code": "factor:driver_age",
"detail": "driver_age=53 ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 117000
},
{
"step": "RISK",
"code": "factor:risk_score",
"detail": "risk_score=784 ×0.84",
"factor": 0.84,
"amount_cents": null,
"running_cents": 98280
},
{
"step": "RISK",
"code": "factor:annual_miles",
"detail": "annual_miles=11000 ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 98280
},
{
"step": "RISK",
"code": "factor:vehicle_age",
"detail": "vehicle_age=4 ×1.0",
"factor": 1,
"amount_cents": null,
"running_cents": 98280
},
{
"step": "RISK",
"code": "factor:incidents_5yr",
"detail": "incidents_5yr=0 ×0.95",
"factor": 0.95,
"amount_cents": null,
"running_cents": 93366
},
{
"step": "FEES",
"code": "policy_fee",
"detail": "+ policy fee",
"factor": null,
"amount_cents": 2500,
"running_cents": 95866
},
{
"step": "FEES",
"code": "installment",
"detail": "+ fractional-pay surcharge",
"factor": null,
"amount_cents": 3600,
"running_cents": 99466
},
{
"step": "DISCOUNT",
"code": "SAFE_DRIVER",
"detail": "−12%",
"factor": 0.88,
"amount_cents": null,
"running_cents": 87530
},
{
"step": "DISCOUNT",
"code": "PAPERLESS",
"detail": "−$25",
"factor": null,
"amount_cents": -2500,
"running_cents": 85030
},
{
"step": "DISCOUNT",
"code": "AUTOPAY",
"detail": "−3%",
"factor": 0.97,
"amount_cents": null,
"running_cents": 82479
},
{
"step": "DISCOUNT",
"code": "LOYALTY",
"detail": "−5%",
"factor": 0.95,
"amount_cents": null,
"running_cents": 78355
}
]
}Here's the apples-to-apples comparison, Eleanor. Pine on your same vehicle, risk, and discounts would run $783.55/year, versus your current $1,145.57 on Evergreen — a savings of about $362/year (~32%).
But the savings come from real coverage reductions. Here's what changes:
| Coverage | Your Evergreen now | Pine |
|---|---|---|
| Bodily Injury | $100k / $300k | $50k / $100k |
| Property Damage | $100k | $50k |
| Uninsured/Underinsured Motorist | $100k / $300k | not included |
| Medical Payments | $5k | not available at this tier |
| Rental Reimbursement | $900 | not included |
| Collision | $500 ded | $1,000 ded |
| Comprehensive | $500 ded | $500 ded |
The big things to weigh:
- Your liability limits drop by half. If you're at fault in a serious accident, more of the damages above those limits could fall on you personally.
- You'd lose Uninsured/Underinsured Motorist coverage entirely — that's the coverage that protects you if you're hit by someone with no/low insurance. Pine can't include it.
- You'd also lose Medical Payments and Rental Reimbursement, and your collision deductible doubles to $1,000.
So it's a genuine ~$362/year saving, but you'd be carrying meaningfully more risk yourself.
A couple of things before you decide:
- If the main goal is just to trim cost, I could instead look at keeping Evergreen but raising your deductibles or trimming an optional coverage — smaller savings, but you keep your liability and UM protection.
- Note: Pine is a downgrade, and moving back up later would re-rate at that time.
Would you like me to go ahead and switch you to Pine, or would you rather I explore the lower-risk options for trimming cost on Evergreen first?
No, I don't want to switch today — I need to think about this. The liability limits dropping that much is kind of scary, honestly. Can you just tell me what Pine is called so I have the name, and then I'll mull it over and decide later?
Absolutely — the tier is called Pine. That's the one that would run about $783.55/year with the coverage reductions we walked through (liability dropping to $50k/$100k, losing uninsured-motorist, etc.).
Nothing's been changed on your account — you're still on Evergreen at $1,145.57/year. Take your time to mull it over, and just reach out whenever you're ready and reference "Pine." Is there anything else I can help you with today?
No, that's all I needed. Thanks for walking me through it and being straight with me about the New Jersey rules. I'll think it over and get back to you if I decide to make a move.
⚙ end_conversation()
{}{
"ok": true,
"note": "Deliver your closing message now."
}Thanks again for reaching out, Eleanor — have a great day!