/* ABC Windows Survey — clone of BakerHouse structure, ABC red/navy theme */

:root {
  --abc-red: #e21d2f;
  --abc-red-dark: #b81323;
  --abc-red-light: #fde7e9;
  --abc-red-fill: #ffd1d6;
  --abc-navy: #0a2540;
  --abc-navy-dark: #061629;
  --abc-text: #0c1726;
  --abc-text-soft: #5b6b82;
  --abc-bg: #ffffff;
  --abc-bg-soft: #fafcff;
  --abc-border: #e6ecf4;
  --abc-error: #b3261e;
  --abc-error-bg: #fde7e8;
  --abc-radius: 8px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--abc-text);
  background: var(--abc-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER ===== */
.abc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
}
.abc-logo { display: flex; align-items: center; }
.abc-logo img { height: 40px; max-width: 200px; object-fit: contain; }
.abc-logo-fallback {
  display: none;
  background: var(--abc-navy);
  color: #fff;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.abc-logo img[style*="display: none"] + .abc-logo-fallback { display: block; }
.abc-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--abc-border);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--abc-text);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s;
}
.abc-call:hover { border-color: var(--abc-red); color: var(--abc-red); }

/* ===== PROGRESS BAR ===== */
.abc-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--abc-red-light);
  z-index: 99;
}
.abc-progress-fill {
  height: 100%;
  width: 0;
  background: var(--abc-red);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== SURVEY ===== */
.abc-survey {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 24px 60px;
}
.abc-slide {
  width: 100%;
  max-width: 760px;
  animation: abcSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes abcSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.abc-title {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--abc-navy-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.abc-title .req { color: var(--abc-red); margin-left: 2px; font-weight: 400; }
.abc-desc {
  color: var(--abc-text-soft);
  font-size: 15.5px;
  margin: 0 0 28px;
  max-width: 600px;
}

/* ===== PICTURE CHOICE ===== */
.abc-pic-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}
.abc-pic-grid-4 { grid-template-columns: repeat(4, 1fr); }
.abc-pic-grid-3 { grid-template-columns: repeat(3, 1fr); }
.abc-pic-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 480px; }
@media (max-width: 720px) {
  .abc-pic-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .abc-pic-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
.abc-pic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px 22px;
  background: var(--abc-bg-soft);
  border: 2px solid transparent;
  border-radius: var(--abc-radius);
  cursor: pointer;
  transition: all 0.15s;
  font: inherit;
  color: var(--abc-text);
  text-align: center;
}
.abc-pic:hover { background: var(--abc-red-light); border-color: var(--abc-red-fill); }
.abc-pic.selected {
  background: var(--abc-red-light);
  border-color: var(--abc-red);
  color: var(--abc-red);
}
.abc-pic-icon { width: 80px; height: 80px; color: var(--abc-navy); }
.abc-pic.selected .abc-pic-icon { color: var(--abc-red); }
.abc-pic-icon svg { width: 100%; height: 100%; }
.abc-pic span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}
.abc-pic span small {
  display: block;
  font-size: 12px;
  color: var(--abc-text-soft);
  font-weight: 500;
  margin-top: 3px;
}
.abc-pic.selected span small { color: var(--abc-red); opacity: 0.85; }

/* ===== RADIO LIST ===== */
.abc-radio-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
  margin-bottom: 28px;
}
.abc-radio {
  text-align: left;
  padding: 16px 20px;
  background: var(--abc-bg-soft);
  border: 1.5px solid transparent;
  border-radius: var(--abc-radius);
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  color: var(--abc-text);
  transition: all 0.15s;
}
.abc-radio small {
  color: var(--abc-text-soft);
  font-size: 13px;
  font-weight: 400;
}
.abc-radio:hover { background: var(--abc-red-light); border-color: var(--abc-red-fill); }
.abc-radio.selected {
  background: var(--abc-red-light);
  border-color: var(--abc-red);
  color: var(--abc-red);
  font-weight: 600;
}
.abc-radio.selected small { color: var(--abc-red); opacity: 0.8; }

/* ===== TEXT INPUT ===== */
.abc-input {
  display: block;
  width: 100%;
  max-width: 600px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1.5px solid var(--abc-red);
  font: inherit;
  font-size: 26px;
  font-weight: 500;
  color: var(--abc-text);
  background: transparent;
  outline: none;
  margin-bottom: 28px;
  transition: border-color 0.15s;
}
.abc-input::placeholder { color: #b8c4d4; font-weight: 400; }
.abc-input:focus { border-bottom-color: var(--abc-red-dark); border-bottom-width: 2px; }
.abc-input.invalid { border-bottom-color: var(--abc-error); }

.abc-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 580px;
  margin-bottom: 28px;
}
@media (max-width: 540px) {
  .abc-name-row { grid-template-columns: 1fr; }
}
.abc-name-row label,
.abc-slide-gate label { display: block; }
.abc-name-row .abc-input,
.abc-slide-gate .abc-input { font-size: 19px; }
.abc-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--abc-text);
  margin-bottom: 4px;
}
.abc-label .req { color: var(--abc-red); }

/* ===== OK / SUBMIT BUTTON ===== */
.abc-ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: var(--abc-red);
  color: #fff;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 12px rgba(226,29,47,0.25);
}
.abc-ok:hover { background: var(--abc-red-dark); box-shadow: 0 6px 18px rgba(226,29,47,0.35); }
.abc-ok:active { transform: translateY(1px); }
.abc-ok:disabled { opacity: 0.5; cursor: not-allowed; }
.abc-submit { padding: 13px 30px; }
.abc-hint {
  font-size: 13px;
  color: var(--abc-text-soft);
  margin: 8px 0 0;
}
.abc-hint kbd {
  display: inline-block;
  padding: 1px 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  background: var(--abc-bg-soft);
  border: 1px solid var(--abc-border);
  border-radius: 3px;
  color: var(--abc-text);
}

/* ===== ERROR ===== */
.abc-error {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 14px;
  background: var(--abc-error-bg);
  color: var(--abc-error);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

/* ===== GATE SLIDE ===== */
.abc-gate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
}
.abc-gate-form { max-width: 460px; }
.abc-gate-form label { display: block; margin-bottom: 18px; }
.abc-gate-art { display: flex; justify-content: center; }
.abc-gate-art svg { width: 100%; max-width: 400px; height: auto; }
@media (max-width: 900px) {
  .abc-gate-grid { grid-template-columns: 1fr; gap: 40px; }
  .abc-gate-art { display: none; }
}

/* ===== LOADING ===== */
.abc-slide-loading {
  text-align: center;
}
.abc-slide-loading .abc-title,
.abc-slide-loading .abc-desc { max-width: 100%; text-align: center; }
.abc-slide-loading .abc-desc { margin-left: auto; margin-right: auto; }
.abc-spinner {
  width: 56px; height: 56px;
  border: 4px solid var(--abc-red-light);
  border-top-color: var(--abc-red);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: abcSpin 0.7s linear infinite;
}
@keyframes abcSpin {
  to { transform: rotate(360deg); }
}

/* ===== RESULTS ===== */
.abc-results {
  padding: 78px 20px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.abc-results-head {
  text-align: center;
  margin-bottom: 20px;
}
.abc-results-head h1 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  color: var(--abc-navy-dark);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 8px;
}
.abc-results-head p {
  color: var(--abc-text-soft);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.abc-results-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--abc-border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: 0 18px 40px -16px rgba(10,37,64,0.10);
}
@media (max-width: 880px) {
  .abc-results-card { grid-template-columns: 1fr; padding: 24px; }
}

/* Equipment side */
.abc-eq {
  border-right: 1px solid var(--abc-border);
  padding-right: 28px;
}
@media (max-width: 880px) {
  .abc-eq { border-right: 0; border-bottom: 1px solid var(--abc-border); padding-right: 0; padding-bottom: 24px; }
}
.abc-eq-img {
  background: var(--abc-bg-soft);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--abc-navy);
}
.abc-eq-img svg { width: 140px; height: 140px; }
.abc-eq-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--abc-navy-dark);
  margin: 0 0 4px;
}
.abc-eq-spec {
  font-size: 14px;
  color: var(--abc-text-soft);
  margin: 0 0 4px;
}
.abc-eq-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 12px;
  background: var(--abc-red-light);
  color: var(--abc-navy-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}
.abc-eq-tag strong { color: var(--abc-red); }

/* Estimate side */
.abc-est-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--abc-text-soft);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.abc-est-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.abc-est-price-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--abc-navy-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.abc-est-price-mo {
  font-size: 18px;
  color: var(--abc-text-soft);
  font-weight: 600;
}
.abc-est-price-range {
  font-size: 13px;
  color: var(--abc-text-soft);
  margin-left: 6px;
}
.abc-est-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--abc-border);
  font-size: 14px;
}
.abc-est-row strong {
  color: var(--abc-navy-dark);
  font-weight: 700;
}

/* Slider */
.abc-slider-block {
  background: var(--abc-bg-soft);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 14px 0;
}
.abc-slider-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.abc-slider-end {
  font-size: 12px;
  font-weight: 600;
  color: var(--abc-text-soft);
}
#effSlider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, var(--abc-red) 0%, var(--abc-red) var(--abc-fill, 25%), var(--abc-border) var(--abc-fill, 25%), var(--abc-border) 100%);
  border-radius: 999px;
  outline: none;
}
#effSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  background: var(--abc-red);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(226,29,47,0.35);
}
#effSlider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--abc-red);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(226,29,47,0.35);
}
.abc-slider-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}
.abc-slider-tier span:first-child { color: var(--abc-red); }
.abc-slider-tier span:last-child { color: var(--abc-navy-dark); }

/* Financing */
.abc-est-finance {
  padding: 8px 0;
}
.abc-est-finance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--abc-border);
}
.abc-est-finance-row:last-child { border-bottom: 0; }
.abc-est-finance-row small {
  display: block;
  font-size: 12px;
  color: var(--abc-text-soft);
  margin-top: 2px;
}
.abc-est-finance-row strong {
  color: var(--abc-navy-dark);
  font-weight: 700;
}

.abc-est-match {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--abc-red-light);
  color: var(--abc-navy-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin: 14px 0;
}

/* Efficiency bar */
.abc-est-eff {
  background: var(--abc-bg-soft);
  border-radius: 10px;
  padding: 16px;
  margin: 14px 0;
}
.abc-est-eff-label { margin-bottom: 10px; }
.abc-est-eff-label strong { display: block; font-size: 14px; color: var(--abc-navy-dark); }
.abc-est-eff-label span { font-size: 12px; color: var(--abc-text-soft); }
.abc-est-eff-bar {
  height: 24px;
  background: var(--abc-border);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.abc-est-eff-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--abc-red), var(--abc-red-dark));
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  transition: width 0.3s;
  white-space: nowrap;
}

/* Rebates */
.abc-rebates {
  background: var(--abc-bg-soft);
  border-radius: 10px;
  padding: 18px;
  margin: 14px 0;
}
.abc-rebates-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--abc-text-soft);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.abc-rebate {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--abc-border);
  font-size: 14px;
}
.abc-rebate:last-of-type { border-bottom: 0; }
.abc-rebate strong { display: block; color: var(--abc-navy-dark); font-weight: 700; }
.abc-rebate small { font-size: 12px; color: var(--abc-text-soft); }
.abc-rebate sup { color: var(--abc-red); font-size: 10px; }
.abc-rebate-amt {
  font-weight: 700;
  color: var(--abc-red);
  white-space: nowrap;
}
.abc-rebate-incl { color: var(--abc-navy-dark); }
.abc-rebate-disclaim {
  font-size: 11px;
  color: var(--abc-text-soft);
  margin: 12px 0 0;
  line-height: 1.4;
}

/* CTA in card */
.abc-est-cta {
  background: var(--abc-navy);
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin: 14px 0;
}
.abc-est-cta h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}
.abc-est-cta p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 14px;
}
.abc-est-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--abc-red);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.15s, transform 0.1s;
}
.abc-est-cta-btn:hover { background: var(--abc-red-dark); }

.abc-est-disclaim {
  font-size: 11px;
  color: var(--abc-text-soft);
  margin: 14px 0 0;
  line-height: 1.5;
}

/* Free inspection block */
.abc-free-block {
  background: var(--abc-bg-soft);
  border: 1px solid var(--abc-border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 28px;
  text-align: center;
}
.abc-free-pill {
  display: inline-block;
  padding: 4px 14px;
  background: var(--abc-red);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.abc-free-block h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--abc-navy-dark);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.abc-free-block p {
  color: var(--abc-text-soft);
  margin: 0 0 18px;
}
.abc-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: inline-block;
  text-align: left;
}
.abc-check-list li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 14.5px;
  color: var(--abc-text);
}
.abc-check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e21d2f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.abc-link-cta {
  display: inline-block;
  color: var(--abc-red);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}
.abc-link-cta:hover { color: var(--abc-red-dark); }

/* Booknow / Calendar */
.abc-booknow {
  background: #fff;
  border: 1px solid var(--abc-border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 28px;
}
.abc-booknow h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--abc-navy-dark);
  margin: 0 0 8px;
}
.abc-booknow > p {
  color: var(--abc-text-soft);
  margin: 0 0 22px;
}

#abc-cal-widget {
  border: 1px solid var(--abc-border);
  border-radius: 12px;
  overflow: hidden;
}
.abc-cal-hdr {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--abc-navy);
  color: #fff;
}
.abc-cal-hdr-ico {
  width: 44px; height: 44px;
  background: var(--abc-red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.abc-cal-hdr-title {
  font-weight: 700;
  font-size: 16px;
}
.abc-cal-hdr-meta {
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  margin-top: 2px;
}

#abc-cal-s1, #abc-cal-s2, #abc-cal-s3, #abc-cal-s4 { padding: 22px 20px; }
.abc-cal-hidden { display: none; }
.abc-cal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.abc-cal-nav button {
  background: var(--abc-bg-soft);
  border: 1px solid var(--abc-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 16px;
  cursor: pointer;
  color: var(--abc-navy);
}
.abc-cal-nav button:hover { border-color: var(--abc-red); color: var(--abc-red); }
.abc-cal-nav span {
  font-weight: 700;
  color: var(--abc-navy-dark);
  font-size: 15px;
}
.abc-cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 11px;
  font-weight: 700;
  color: var(--abc-text-soft);
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--abc-border);
  margin-bottom: 8px;
}
#abc-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
#abc-cal-grid button {
  aspect-ratio: 1;
  background: var(--abc-bg-soft);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.12s;
  color: var(--abc-text);
}
#abc-cal-grid button:hover:not(:disabled) {
  background: var(--abc-red-light);
  border-color: var(--abc-red-fill);
}
#abc-cal-grid button.selected {
  background: var(--abc-red);
  color: #fff;
}
#abc-cal-grid button:disabled {
  color: #d6dbe5;
  cursor: not-allowed;
}
#abc-cal-grid .empty { background: transparent; cursor: default; pointer-events: none; }

.abc-cal-back-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 14px;
}
.abc-cal-back-row button {
  background: transparent;
  border: 0;
  color: var(--abc-red);
  cursor: pointer;
  font-weight: 600;
  padding: 4px 0;
  font-size: 13.5px;
}
.abc-cal-back-row span { font-weight: 700; color: var(--abc-navy-dark); }

#abc-cal-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
}
#abc-cal-slots button {
  padding: 12px;
  background: var(--abc-bg-soft);
  border: 1.5px solid var(--abc-border);
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.12s;
  color: var(--abc-text);
}
#abc-cal-slots button:hover {
  border-color: var(--abc-red);
  background: var(--abc-red-light);
  color: var(--abc-red);
}
.abc-cal-msg {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--abc-text-soft);
  font-size: 14px;
  padding: 14px 0;
}

.abc-cal-field { margin-bottom: 14px; }
.abc-cal-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--abc-text);
  margin-bottom: 4px;
}
.abc-cal-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--abc-border);
  border-radius: 6px;
  font: inherit;
  font-size: 14.5px;
}
.abc-cal-field input:focus {
  outline: none;
  border-color: var(--abc-red);
  box-shadow: 0 0 0 3px var(--abc-red-light);
}

.abc-cal-submit {
  width: 100%;
  padding: 13px 16px;
  background: var(--abc-red);
  color: #fff;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 6px 18px rgba(226,29,47,0.32);
}
.abc-cal-submit:hover { background: var(--abc-red-dark); }

.abc-cal-err {
  margin-top: 10px;
  padding: 8px 12px;
  background: var(--abc-error-bg);
  color: var(--abc-error);
  border-radius: 6px;
  font-size: 13px;
}

.abc-cal-success { text-align: center; padding: 22px 0; }
.abc-cal-ok-ico {
  width: 64px; height: 64px;
  background: var(--abc-red-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.abc-cal-ok-ico svg { width: 32px; height: 32px; }
.abc-cal-success h3 {
  font-size: 22px;
  color: var(--abc-navy-dark);
  margin: 0 0 8px;
}
.abc-cal-success p {
  color: var(--abc-text-soft);
  margin: 0 0 14px;
}
.abc-cal-confirm {
  font-weight: 600;
  color: var(--abc-navy-dark);
}

/* FAQ */
.abc-faq-block {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
@media (max-width: 760px) {
  .abc-faq-block { grid-template-columns: 1fr; }
}
.abc-faq-side details,
.abc-faq-main details {
  background: #fff;
  border: 1px solid var(--abc-border);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
  transition: border-color 0.15s;
}
.abc-faq-side details[open],
.abc-faq-main details[open] { border-color: var(--abc-red-fill); }
.abc-faq-side summary,
.abc-faq-main summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--abc-navy-dark);
  list-style: none;
}
.abc-faq-side summary::-webkit-details-marker,
.abc-faq-main summary::-webkit-details-marker { display: none; }
.abc-faq-side summary::after,
.abc-faq-main summary::after {
  content: "+";
  float: right;
  color: var(--abc-red);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.abc-faq-side details[open] summary::after,
.abc-faq-main details[open] summary::after { content: "−"; }
.abc-faq-side p,
.abc-faq-main p {
  color: var(--abc-text-soft);
  font-size: 14.5px;
  margin: 12px 0 0;
}
.abc-faq-main h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--abc-navy-dark);
  margin: 0 0 16px;
}

/* Trust */
.abc-trust {
  background: var(--abc-bg-soft);
  border: 1px solid var(--abc-border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 28px;
}
.abc-trust h2 {
  font-size: clamp(24px, 2.8vw, 30px);
  color: var(--abc-navy-dark);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.abc-trust p {
  color: var(--abc-text-soft);
  margin: 0 0 16px;
}

/* Reviews */
.abc-reviews {
  text-align: center;
  margin-bottom: 28px;
}
.abc-reviews h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--abc-navy-dark);
  margin: 0 0 4px;
}
.abc-reviews-sub {
  color: var(--abc-text-soft);
  margin: 0 0 12px;
}
.abc-stars {
  font-size: 22px;
  color: #f5a400;
  letter-spacing: 2px;
}
.abc-stars span {
  display: block;
  margin-top: 4px;
  color: var(--abc-text-soft);
  font-size: 14px;
  letter-spacing: 0;
}

/* Final CTA */
.abc-final-cta {
  background: var(--abc-navy);
  background-image: linear-gradient(135deg, var(--abc-navy) 0%, var(--abc-navy-dark) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-bottom: 24px;
}
.abc-final-cta h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.abc-final-cta p {
  color: rgba(255,255,255,0.85);
  margin: 0 0 20px;
}

/* Footer */
.abc-footer {
  text-align: center;
  padding: 20px 0;
  color: var(--abc-text-soft);
  font-size: 13px;
}
