/* get-a-quote.css — Quote page */

body { background:var(--light); }

/* ── PAGE HERO ── */
.page-hero { padding:108px 5vw 3rem; background:var(--navy); position:relative; overflow:hidden; height:auto; display:block; align-items:unset; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 80% at 80% 50%, rgba(79,195,247,.08) 0%, transparent 70%); }
.page-hero-inner { position:relative; max-width:1100px; margin:0 auto; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(0,191,165,.15); border:1px solid rgba(0,191,165,.35); color:var(--teal); font-size:.75rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:5px 14px; border-radius:100px; margin-bottom:1rem; }
.page-hero h1 { font-family:'Playfair Display',serif; font-size:clamp(2rem,4.5vw,3.25rem); color:var(--white); line-height:1.15; margin-bottom:.75rem; }
.page-hero p { font-size:1.0625rem; color:rgba(255,255,255,.65); max-width:560px; }

/* ── MAIN LAYOUT ── */
.quote-wrap { max-width:1100px; margin:0 auto; padding:3rem 5vw 5rem; display:grid; grid-template-columns:1fr 380px; gap:2.5rem; align-items:start; }

/* ── FORM CARD ── */
.form-card { background:var(--white); border-radius:20px; box-shadow:0 4px 32px rgba(13,27,42,.08); overflow:hidden; }
.form-section { padding:2rem 2.25rem; border-bottom:1px solid var(--border); }
.form-section:last-child { border-bottom:none; }
.section-num { display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; background:var(--teal); color:var(--white); font-size:.75rem; font-weight:700; margin-right:.625rem; flex-shrink:0; }
.section-head { display:flex; align-items:center; margin-bottom:.375rem; }
.section-head h3 { font-size:1.0625rem; font-weight:700; color:var(--navy); }
.section-sub { font-size:.875rem; color:var(--gray); margin-bottom:1.5rem; margin-left:2.25rem; }

/* system type cards */
.sys-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:.875rem; }
.sys-card { border:2px solid var(--border); border-radius:14px; padding:1.125rem 1rem; cursor:pointer; text-align:center; transition:border-color .2s,background .2s,box-shadow .2s; position:relative; }
.sys-card:hover { border-color:var(--mist); background:var(--light); }
.sys-card.selected { border-color:var(--teal); background:rgba(0,191,165,.05); box-shadow:0 0 0 3px rgba(0,191,165,.12); }
.sys-card-icon { font-size:1.75rem; margin-bottom:.5rem; }
.sys-card h4 { font-size:.875rem; font-weight:700; color:var(--navy); margin-bottom:.25rem; }
.sys-card .sys-psi { font-size:.7rem; font-weight:600; color:var(--teal); text-transform:uppercase; letter-spacing:.06em; margin-bottom:.375rem; }
.sys-card p { font-size:.75rem; color:var(--gray); line-height:1.4; }
.sys-card .sys-range { position:absolute; top:10px; right:10px; font-size:.65rem; font-weight:700; background:var(--navy); color:var(--mist); padding:2px 7px; border-radius:100px; }
.sys-card.selected .sys-range { background:var(--teal); }

/* slider */
.slider-wrap { margin-bottom:1rem; }
.slider-label { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:.625rem; }
.slider-label span { font-size:.8125rem; font-weight:600; color:var(--navy); }
.slider-label strong { font-size:1.125rem; color:var(--teal); font-family:'Playfair Display',serif; }
input[type=range] { -webkit-appearance:none; width:100%; height:6px; border-radius:100px; background:var(--border); outline:none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance:none; width:20px; height:20px; border-radius:50%; background:var(--teal); cursor:pointer; border:3px solid var(--white); box-shadow:0 2px 8px rgba(0,191,165,.4); }
input[type=range]::-moz-range-thumb { width:20px; height:20px; border-radius:50%; background:var(--teal); cursor:pointer; border:3px solid var(--white); box-shadow:0 2px 8px rgba(0,191,165,.4); }
.slider-ticks { display:flex; justify-content:space-between; font-size:.65rem; color:var(--gray); margin-top:.375rem; }

/* complexity */
.complexity-row { display:grid; grid-template-columns:repeat(3,1fr); gap:.625rem; margin-top:1rem; }
.comp-card { border:2px solid var(--border); border-radius:10px; padding:.75rem .875rem; cursor:pointer; text-align:center; transition:border-color .2s,background .2s; }
.comp-card:hover { border-color:var(--mist); }
.comp-card.selected { border-color:var(--teal); background:rgba(0,191,165,.05); }
.comp-card-icon { font-size:1.25rem; margin-bottom:.25rem; }
.comp-card h5 { font-size:.75rem; font-weight:700; color:var(--navy); }
.comp-card span { font-size:.65rem; color:var(--gray); }

/* options */
.options-list { display:flex; flex-direction:column; gap:.75rem; }
.opt-row { display:flex; align-items:flex-start; gap:.875rem; padding:.875rem 1rem; border:2px solid var(--border); border-radius:12px; cursor:pointer; transition:border-color .2s,background .2s; }
.opt-row:hover { border-color:var(--mist); background:var(--light); }
.opt-row.selected { border-color:var(--teal); background:rgba(0,191,165,.05); }
.opt-check { flex-shrink:0; width:20px; height:20px; border:2px solid var(--border); border-radius:5px; margin-top:2px; display:flex; align-items:center; justify-content:center; transition:background .18s,border-color .18s; }
.opt-row.selected .opt-check { background:var(--teal); border-color:var(--teal); }
.opt-row.selected .opt-check::after { content:'✓'; color:var(--white); font-size:11px; font-weight:700; }
.opt-icon { font-size:1.25rem; flex-shrink:0; }
.opt-body { flex:1; }
.opt-body strong { display:block; font-size:.875rem; font-weight:700; color:var(--navy); }
.opt-body span { font-size:.8125rem; color:var(--gray); }
.opt-cost { font-size:.8125rem; font-weight:700; color:var(--teal); white-space:nowrap; margin-top:2px; }

/* contact fields */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.field-group label { display:block; font-size:.8125rem; font-weight:600; color:var(--navy); margin-bottom:.375rem; }
.field-group input, .field-group select, .field-group textarea { width:100%; padding:.6875rem .875rem; border:2px solid var(--border); border-radius:8px; font-family:inherit; font-size:.9375rem; color:var(--navy); background:var(--white); outline:none; transition:border-color .18s; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { border-color:var(--teal); }
.field-group.full { grid-column:1/-1; }
.field-group textarea { resize:vertical; min-height:90px; }

/* submit */
.form-submit { padding:1.75rem 2.25rem; background:#fafbfc; border-top:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.submit-note { font-size:.8125rem; color:var(--gray); }
.submit-note strong { color:var(--navy); }
.btn-submit { display:inline-flex; align-items:center; gap:8px; background:var(--teal); color:var(--white); border:none; font-family:inherit; font-size:1rem; font-weight:700; padding:.875rem 2rem; border-radius:10px; cursor:pointer; transition:background .2s,transform .15s; }
.btn-submit:hover { background:#00a896; transform:translateY(-1px); }

/* success */
.success-screen { display:none; padding:2.5rem; text-align:center; }
.success-screen.visible { display:block; }
.success-icon { font-size:3rem; margin-bottom:1rem; }
.success-screen h2 { font-family:'Playfair Display',serif; font-size:1.75rem; color:var(--navy); margin-bottom:.625rem; }
.success-screen p { font-size:.9375rem; color:var(--gray); max-width:400px; margin:0 auto 1.5rem; }

/* ── QUOTE PANEL ── */
.quote-panel { position:sticky; top:84px; }
.quote-card { background:var(--white); border-radius:20px; box-shadow:0 4px 32px rgba(13,27,42,.08); overflow:hidden; }
.quote-card-header { background:var(--navy); padding:1.5rem; }
.quote-card-header h3 { font-family:'Playfair Display',serif; font-size:1.25rem; color:var(--white); margin-bottom:.25rem; }
.quote-card-header p { font-size:.8125rem; color:rgba(255,255,255,.55); }
.quote-price-block { padding:1.5rem; border-bottom:1px solid var(--border); text-align:center; }
.price-label { font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--gray); margin-bottom:.625rem; }
.price-range { display:flex; align-items:center; justify-content:center; gap:.5rem; }
.price-low, .price-high { font-family:'Playfair Display',serif; font-size:2rem; font-weight:700; color:var(--navy); }
.price-sep { font-size:1.25rem; color:var(--gray); }
.price-avg { margin-top:.375rem; font-size:.875rem; color:var(--gray); }
.price-avg strong { color:var(--teal); font-size:1rem; }
.confidence-wrap { padding:.625rem 1.5rem; border-bottom:1px solid var(--border); }
.confidence-label { display:flex; justify-content:space-between; font-size:.7rem; color:var(--gray); margin-bottom:.375rem; }
.confidence-track { height:5px; background:var(--border); border-radius:100px; overflow:hidden; }
.confidence-fill { height:100%; background:linear-gradient(90deg,var(--teal),var(--mist)); border-radius:100px; transition:width .5s ease; }
.quote-items { padding:1rem 1.5rem; display:flex; flex-direction:column; gap:.5rem; min-height:120px; }
.q-item { display:flex; justify-content:space-between; align-items:flex-start; font-size:.8125rem; }
.q-item-label { color:var(--gray); }
.q-item-val { font-weight:600; color:var(--navy); white-space:nowrap; margin-left:.5rem; }
.q-item-val.add { color:var(--green); }
.q-divider { height:1px; background:var(--border); margin:.25rem 0; }
.q-total { display:flex; justify-content:space-between; font-weight:700; font-size:.9375rem; padding:.5rem 0; }
.q-total span:last-child { color:var(--teal); }
.quote-empty { text-align:center; padding:1.5rem 0; color:var(--gray); font-size:.875rem; }
.quote-empty .q-icon { font-size:2rem; margin-bottom:.5rem; }
.quote-callout { padding:1rem 1.5rem; background:rgba(0,191,165,.06); border-top:1px solid rgba(0,191,165,.15); font-size:.8125rem; color:var(--gray); display:flex; gap:.625rem; align-items:flex-start; }
.quote-callout span { font-size:1rem; flex-shrink:0; }

/* ── TRUST ROW ── */
.trust-row { max-width:1100px; margin:0 auto; padding:0 5vw 4rem; display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.trust-card { background:var(--white); border-radius:14px; padding:1.5rem; display:flex; gap:1rem; align-items:flex-start; box-shadow:0 2px 12px rgba(13,27,42,.05); }
.trust-card-icon { font-size:1.75rem; flex-shrink:0; }
.trust-card h4 { font-size:.9375rem; font-weight:700; color:var(--navy); margin-bottom:.25rem; }
.trust-card p { font-size:.8125rem; color:var(--gray); line-height:1.55; }

/* ── RESPONSIVE ── */
@media (max-width:900px) {
  .quote-wrap { grid-template-columns:1fr; }
  .quote-panel { position:static; }
  .sys-cards { grid-template-columns:1fr; }
  .trust-row { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .complexity-row { grid-template-columns:1fr; }
}
@media (max-width:640px) {
  .form-section { padding:1.5rem; }
}
