/* ============================================================
   BREEZE — PREMIUM: page sections, cards, responsive
   ============================================================ */

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; color: #fff; isolation: isolate; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: var(--grad-hero);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 90% at 88% 0%, rgba(252,132,36,0.34), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(0,174,239,0.35), transparent 60%);
}
.hero-in {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 92px);
}
.hero-copy h1 {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: var(--s-3);
}
.hero-head {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: var(--fs-3xl);
  line-height: var(--lh-tight);
  color: #fff;
  margin-bottom: var(--s-4);
}
.hero-sub { font-size: var(--fs-md); color: #dceaf3; max-width: 52ch; margin-bottom: var(--s-6); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-6); }
.hero-chips { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  padding: 7px 13px; font-size: var(--fs-xs); font-weight: 600; color: #fff;
}
.chip-ic { color: var(--gold); flex: none; }

/* Hero card / request form */
.hero-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: var(--s-6); color: var(--ink); position: relative; }
.hc-badge { display: flex; align-items: center; gap: var(--s-3); padding-bottom: var(--s-4); margin-bottom: var(--s-4); border-bottom: 1px solid var(--line); }
.hc-badge-txt { font-size: var(--fs-sm); color: var(--muted); }
.hc-badge-txt strong { color: var(--ink); font-size: var(--fs-md); }
.stars { display: inline-flex; gap: 1px; }
.star-ic { color: var(--gold); }

.req-form h2 { font-size: var(--fs-lg); margin-bottom: 6px; }
.rf-note { font-size: var(--fs-sm); color: var(--muted); margin-bottom: var(--s-4); }
.field { margin-bottom: var(--s-3); }
.field label { display: block; font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 5px; }
.field input, .field select {
  width: 100%; padding: 12px 14px; font-family: var(--font-body); font-size: var(--fs-base);
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,174,239,0.16); }
.req-form .btn-block { margin-top: var(--s-2); }
.rf-fine { font-size: var(--fs-xs); color: var(--muted); text-align: center; margin-top: var(--s-3); }

.form-success { display: none; text-align: center; padding: var(--s-6) var(--s-2); }
.form-success.show { display: block; }
.hero-card.sent .req-form { display: none; }
.hero-card.sent .hc-badge { display: none; }
.fs-check { color: var(--success); margin: 0 auto var(--s-3); }
.form-success h2 { font-size: var(--fs-lg); }
.form-success p { color: var(--muted); font-size: var(--fs-sm); }

/* ---------- Stats band ---------- */
.stats-band { background: #fff; border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); padding-block: var(--s-7); }
.stat { text-align: center; }
.stat-n { display: block; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-2xl); color: var(--blue-deep); line-height: 1; }
.stat-l { display: block; font-size: var(--fs-sm); color: var(--muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.svc-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--s-6); color: var(--ink); transition: transform var(--dur) var(--ease-out), box-shadow var(--dur), border-color var(--dur);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; text-decoration: none; }
.svc-ic-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: var(--radius-md);
  background: linear-gradient(140deg, rgba(0,174,239,0.14), rgba(252,132,36,0.14));
  color: var(--blue-deep); margin-bottom: var(--s-4);
}
.svc-card:hover .svc-ic-wrap { background: var(--grad-warm); color: #241205; }
.svc-card h3 { margin-bottom: var(--s-2); }
.svc-card p { color: var(--muted); font-size: var(--fs-sm); margin-bottom: var(--s-4); }
.svc-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: var(--fs-sm); color: var(--orange-deep); text-transform: uppercase; letter-spacing: 0.04em; }
.arr-ic { transition: transform var(--dur); }
.svc-card:hover .arr-ic { transform: translateX(4px); }

.sec-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; margin-top: var(--s-7); }

/* ---------- Us vs Them ---------- */
.comp-wrap { max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th, .comp-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.comp-table thead th { background: var(--wash); vertical-align: middle; }
.th-us img { height: 46px; width: auto; }
.th-them { font-family: var(--font-display); text-transform: uppercase; color: var(--muted); font-size: var(--fs-md); font-weight: 600; }
.comp-table tbody tr:last-child td { border-bottom: none; }
.row-label { font-weight: 700; color: var(--ink); width: 34%; }
.col-us { color: var(--ink); font-weight: 600; }
.col-us { white-space: normal; }
.col-us .chk { color: var(--success); display: inline-block; vertical-align: -4px; margin-right: 6px; }
.col-them { color: var(--muted); }
.col-us, .col-them { font-size: var(--fs-sm); }

/* ---------- Reviews ---------- */
.google-badge { display: inline-flex; align-items: center; gap: var(--s-3); margin-top: var(--s-4); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 8px 18px; box-shadow: var(--shadow-sm); }
.gb-num { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-lg); color: var(--ink); }
.gb-txt { font-size: var(--fs-sm); color: var(--muted); }
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: var(--s-5); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review-card blockquote { margin: var(--s-3) 0 var(--s-4); font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.55; }
.review-card figcaption { margin-top: auto; display: flex; flex-direction: column; }
.review-card figcaption strong { color: var(--ink); }
.review-card figcaption span { font-size: var(--fs-xs); color: var(--muted); }

/* ---------- Service areas ---------- */
.area-chips { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; max-width: 900px; margin: 0 auto; }
.area-chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-pill); padding: 9px 16px; font-weight: 600; font-size: var(--fs-sm); color: #eaf2f7; }
.area-ic { color: var(--gold); flex: none; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s-6) var(--s-5); text-align: left; }
.step-n { position: absolute; top: -16px; left: var(--s-5); width: 40px; height: 40px; border-radius: 50%; background: var(--grad-warm); color: #241205; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-md); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.step-ic { display: inline-flex; color: var(--blue-deep); margin: var(--s-4) 0 var(--s-3); }
.step h3 { font-size: var(--fs-md); margin-bottom: var(--s-2); }
.step p { color: var(--muted); font-size: var(--fs-sm); }

/* ---------- Financing + membership ---------- */
.fin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
.fin-card { border-radius: var(--radius-lg); padding: var(--s-7); }
.fin-club { background: var(--grad-ink); color: #d7e3eb; }
.fin-club h3 { color: #fff; }
.fin-club .eyebrow { color: var(--gold); }
.fin-club p { color: #b3c2cd; }
.check-list { margin: var(--s-4) 0 var(--s-5); display: grid; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: var(--fs-sm); font-weight: 600; }
.cl-ic { color: var(--gold); flex: none; }
.fin-money { background: var(--wash); border: 1px solid var(--line); }
.fin-money .eyebrow { color: var(--orange-deep); }
.fin-money p { color: var(--muted); }
.fin-ic { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: var(--radius-md); background: var(--grad-warm); color: #241205; margin-bottom: var(--s-4); }
.fin-money .btn { margin-top: var(--s-4); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: #fff; isolation: isolate; }
.cta-bg { position: absolute; inset: 0; z-index: -1; background: var(--grad-hero); }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 100% 0%, rgba(252,132,36,0.4), transparent 55%); }
.cta-in { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: var(--s-7); align-items: center; padding-block: var(--s-9); }
.cta-copy h2 { color: #fff; }
.cta-copy p { color: #dceaf3; font-size: var(--fs-md); max-width: 48ch; }
.cta-actions { display: flex; flex-direction: column; gap: var(--s-3); align-items: stretch; }
.cta-actions .btn { width: 100%; }
.cta-lic { font-size: var(--fs-xs); color: #cbdae4; text-align: center; margin-top: var(--s-2); }

/* ---------- FAQ (native details, zero-JS) ---------- */
.faq-wrap { max-width: var(--container-narrow); }
.faq-list { display: grid; gap: var(--s-3); }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: 18px 20px; cursor: pointer; list-style: none;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: var(--fs-md); color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark { position: relative; flex: none; width: 20px; height: 20px; }
.faq-mark::before, .faq-mark::after { content: ""; position: absolute; background: var(--orange); border-radius: 2px; }
.faq-mark::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-mark::after { top: 0; left: 9px; width: 2px; height: 20px; transition: transform var(--dur); }
.faq-item[open] .faq-mark::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 20px 20px; }
.faq-a p { color: var(--muted); font-size: var(--fs-sm); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .mainnav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-phone { display: none; }
  .nav-actions .btn { display: none; }
  .nav-actions .nav-phone { display: inline-flex; }
  .hero-in { grid-template-columns: 1fr; }
  .fin-grid { grid-template-columns: 1fr; }
  .cta-in { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .tb-cred { display: none; }
}

@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6) var(--s-4); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .tb-right { gap: var(--s-3); }
  .topbar-in { font-size: 11px; }
  .mobile-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; box-shadow: 0 -4px 16px rgba(6,52,74,0.18); }
  body { padding-bottom: 56px; }
  .comp-table th, .comp-table td { padding: 12px 12px; }
  .row-label { width: 40%; }
}
