:root{
  --bg:#ffffff;
  --fg:#111111;
  --muted:#5b6470;
  --line:#dce2e8;
  --panel:#f7f9fb;
  --panel-2:#fbfcfd;
  --accent:#111111;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:'Montserrat', Arial, sans-serif;
  background:var(--bg);
  color:var(--fg);
}
.page{
  width:100%;
  display:flex;
  justify-content:center;
  padding:24px;
}
.calculator{
  width:100%;
  max-width:920px;
}
.header{margin-bottom:18px}
.eyebrow{
  font-size:12px;
  letter-spacing:1.8px;
  color:var(--muted);
  font-weight:700;
  margin-bottom:8px;
}
h1{
  margin:0 0 8px;
  font-size:34px;
}
.subtext{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}
.mode-switch{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin:18px 0 22px;
}
.mode-btn{
  height:50px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--fg);
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:all .2s ease;
}
.mode-btn.active{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}
#quoteForm{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}
.section-title{
  grid-column:1 / -1;
  padding-top:12px;
  border-top:1px solid var(--line);
  font-size:14px;
  font-weight:700;
  letter-spacing:.8px;
  text-transform:uppercase;
}
.field{
  display:flex;
  flex-direction:column;
  gap:7px;
}
.full,.stop-panel-wrap,#careRideSection{
  grid-column:1 / -1;
}
label{
  font-size:14px;
  font-weight:600;
}
input, select, button{
  width:100%;
  border-radius:12px;
}
input, select{
  height:50px;
  padding:0 14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--fg);
  font-size:15px;
}
input::placeholder{color:#98a2af}
select:disabled, input:disabled{opacity:.58}
button[type="submit"]{
  grid-column:1 / -1;
  height:52px;
  border:0;
  background:var(--accent);
  color:#fff;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
}
button[type="submit"]:hover{opacity:.95}
.note{
  border:1px solid var(--line);
  background:var(--panel);
  border-radius:12px;
  padding:14px;
  font-size:13px;
  line-height:1.5;
  color:var(--muted);
}
.stop-panel{
  border:1px solid var(--line);
  background:var(--panel-2);
  border-radius:14px;
  overflow:hidden;
}
.stop-panel summary{
  list-style:none;
  cursor:pointer;
  padding:15px 16px;
  font-size:14px;
  font-weight:700;
}
.stop-panel summary::-webkit-details-marker{display:none}
.stop-panel summary::after{
  content:'+';
  float:right;
  font-size:18px;
  line-height:1;
}
.stop-panel[open] summary::after{content:'–'}
.stop-panel-content{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
  padding:0 16px 16px;
}
.hidden-block{display:none}
.result-box{
  margin-top:22px;
  border:1px solid var(--line);
  background:var(--panel-2);
  border-radius:14px;
  padding:18px;
}
.result-title{
  font-size:15px;
  font-weight:700;
  margin-bottom:10px;
}
#result{
  text-align:center;
  line-height:1.45;
}
.default-total{text-align:center}
.amount{
  font-size:42px;
  font-weight:700;
  margin-bottom:8px;
  transition:transform .2s ease;
}
.amount.bump{transform:scale(1.04)}
.note-text{
  font-size:14px;
  color:#5b6470;
}
.result-detail{
  display:block;
  font-size:14px;
  color:#3f4852;
  margin-top:6px;
}
.min-note{
  display:block;
  margin-top:8px;
  font-size:13px;
  color:#59626e;
  font-weight:700;
}
.pac-container{z-index:999999!important}
@media (max-width:768px){
  .page{padding:16px}
  h1{font-size:28px}
  #quoteForm,.stop-panel-content{grid-template-columns:1fr}
  input, select, button{font-size:16px}
}
