/* ════════════════════════════════════════════════════════════
   CheapHeatingOpus — Front Page v2 Stylesheet
   This file is loaded ONLY on the home page via inc/assets.php.
   It contains ONLY the new selectors for the v2 homepage design.
   Existing main.css is untouched.
   ════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────
   HERO v2 — full-bleed dark header section
   ─────────────────────────────────────── */
.cho-hero-v2 {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 56px 24px 52px;
}
.cho-hero-v2__bg {
  position: absolute;
  inset: 0;
  /* Default: a cool winter-sky gradient suggesting the snowy outdoor scene from the mockup.
     To use a real photo, add this to the WP Customizer or a child theme:
       .cho-hero-v2__bg { background-image: url('/path/to/photo.jpg') !important;
                          background-size: cover; background-position: center right; }
  */
  background:
    linear-gradient(115deg,
      rgba(13,31,45,1) 0%,
      rgba(13,31,45,0.92) 38%,
      rgba(24,54,80,0.75) 60%,
      rgba(78,110,140,0.55) 80%,
      rgba(168,190,210,0.45) 100%);
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.cho-hero-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,31,45,0.85) 0%, rgba(13,31,45,0.55) 60%, rgba(13,31,45,0.15) 100%);
  z-index: 1;
}
.cho-hero-v2__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.cho-hero-v2__headline {
  text-align: center;
}
.cho-hero-v2__h1 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 14px 0;
}
.cho-hero-v2__h1-orange {
  color: var(--flame);
  display: block;
}
.cho-hero-v2__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 640px;
}
.cho-hero-v2__panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.cho-hero-v2__report-panel {
  background: #122436;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 28px 26px 24px;
  display: flex;
  gap: 18px;
}
.cho-hero-v2__report-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.cho-hero-v2__report-copy {
  flex: 1;
  min-width: 0;
}
.cho-hero-v2__report-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.cho-hero-v2__report-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin: 0 0 12px 0;
}
.cho-hero-v2__report-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
}
.cho-hero-v2__report-trust span {
  white-space: nowrap;
}
.cho-hero-v2__report-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin: 12px 0 0 0;
}
.cho-hero-v2__find-panel {
  background: #ffffff;
  border-radius: 12px;
  padding: 26px 24px;
}
.cho-hero-v2__find-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.cho-hero-v2__find-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 16px 0;
}
.cho-hero-v2__zip-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cho-hero-v2__zip-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.cho-hero-v2__zip-input-wrap svg {
  position: absolute;
  left: 12px;
  pointer-events: none;
}
.cho-hero-v2__zip-input {
  width: 100%;
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  padding: 11px 14px 11px 34px;
  font-size: 14px;
  color: var(--navy);
  background: #ffffff;
  outline: none;
}
.cho-hero-v2__zip-input:focus {
  border-color: var(--navy);
}
.cho-hero-v2__zip-input::placeholder {
  color: #9ca3af;
}

/* ───────────────────────────────────────
   v2 buttons
   ─────────────────────────────────────── */
.cho-btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.15s, transform 0.1s;
}
.cho-btn-v2:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.cho-btn-v2--orange {
  background: var(--flame);
  color: #ffffff;
}
.cho-btn-v2--orange:hover {
  color: #ffffff;
}
.cho-btn-v2--navy {
  background: var(--navy);
  color: #ffffff;
}
.cho-btn-v2--navy:hover {
  color: #ffffff;
}
.cho-btn-v2--full {
  display: flex;
  width: 100%;
}

/* ───────────────────────────────────────
   MARKET BAR — dark strip below hero
   ─────────────────────────────────────── */
.cho-mkt-bar {
  background: #0d1f2d;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cho-mkt-bar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cho-mkt-bar__items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cho-mkt-bar__item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cho-mkt-bar__label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
}
.cho-mkt-bar__val {
  font-family: var(--mono);
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}
.cho-mkt-bar__val--lg {
  font-size: 22px;
}
.cho-mkt-bar__chg {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}
.cho-mkt-bar__chg--up {
  color: #4ade80;
}
.cho-mkt-bar__chg--dn {
  color: #f87171;
}
.cho-mkt-bar__meta {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  text-align: right;
}
.cho-mkt-bar__live {
  color: #4ade80;
  font-weight: 600;
}

/* ───────────────────────────────────────
   BODY container
   ─────────────────────────────────────── */
.cho-body-v2 {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ───────────────────────────────────────
   SECTIONS
   ─────────────────────────────────────── */
.cho-sec-v2 {
  padding: 40px 0 0 0;
}
.cho-sec-v2__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 12px;
}
.cho-sec-v2__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.cho-sec-v2__title-line {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--flame);
  border-radius: 2px;
}
.cho-sec-v2__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--flame);
  text-decoration: none;
  white-space: nowrap;
}
.cho-sec-v2__link:hover {
  text-decoration: underline;
}

/* ───────────────────────────────────────
   STATE GRID v2
   ─────────────────────────────────────── */
.cho-sg-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.cho-sg-v2__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 38px 14px 16px;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 92px;
}
.cho-sg-v2__card:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(13,31,45,0.08);
}
.cho-sg-v2__name {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
}
.cho-sg-v2__price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.cho-sg-v2__gal {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
.cho-sg-v2__chg {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}
.cho-sg-v2__chg--up {
  color: #15803d;
}
.cho-sg-v2__chg--dn {
  color: var(--flame);
}
.cho-sg-v2__arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #c0c8d0;
}

/* ───────────────────────────────────────
   CHART + NEWS ROW
   ─────────────────────────────────────── */
.cho-cn-row {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
  padding-top: 40px;
}
.cho-cp-v2 {
  background: #ffffff;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.cho-cp-v2__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 20px 14px;
  gap: 12px;
}
.cho-cp-v2__title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cho-cp-v2__info {
  font-size: 14px;
  color: var(--muted);
  cursor: help;
}
.cho-cp-v2__sub {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--mono);
  margin-top: 3px;
}
.cho-cp-v2__range {
  border: 1.5px solid var(--rule);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--navy);
  background: #ffffff;
  cursor: pointer;
  outline: none;
}
.cho-cp-v2 .cho-price-chart {
  border: none;
  border-radius: 0;
  margin: 0;
}
.cho-cp-v2 .cho-price-chart__head {
  display: none;
}
.cho-cp-v2 .cho-price-chart__svg {
  padding: 0 12px 12px;
}

.cho-cs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.cho-cs-cell {
  padding: 14px 20px;
  border-right: 1px solid var(--rule);
}
.cho-cs-cell:last-child {
  border-right: none;
}
.cho-cs-cell__label {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.cho-cs-cell__val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.cho-cs-cell__val--up {
  color: #15803d;
}
.cho-cs-cell__val--dn {
  color: var(--flame);
}
.cho-cs-cell__date {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--muted);
  margin-top: 3px;
}

/* News panel */
.cho-np-v2 {
  background: #ffffff;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.cho-np-v2__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--rule);
}
.cho-np-v2__title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.cho-np-v2__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 18px;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}
.cho-np-v2__item:last-child {
  border-bottom: none;
}
.cho-np-v2__item:hover {
  background: #fafafa;
}
.cho-np-v2__num {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  width: 22px;
  flex-shrink: 0;
  padding-top: 1px;
}
.cho-np-v2__body {
  min-width: 0;
}
.cho-np-v2__t {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 4px;
}
.cho-np-v2__item:hover .cho-np-v2__t {
  color: var(--flame);
}
.cho-np-v2__meta {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--muted);
}

/* ───────────────────────────────────────
   QUOTES (homeowner reports)
   ─────────────────────────────────────── */
.cho-q-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}
.cho-q-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px 0;
}
.cho-q-wrap {
  overflow-x: auto;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  background: #ffffff;
}
.cho-q-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.cho-q-tbl th {
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 12px 14px;
  border-bottom: 2px solid var(--rule);
  background: #fafafa;
  white-space: nowrap;
  font-weight: 600;
}
.cho-q-tbl td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--rule);
  color: var(--navy);
  vertical-align: middle;
}
.cho-q-tbl tr:last-child td {
  border-bottom: none;
}
.cho-q-tbl__price {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.cho-q-tbl__time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.cho-q-src--verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  white-space: nowrap;
}
.cho-q-src--community {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--flame);
  font-weight: 600;
  white-space: nowrap;
}
.cho-q-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green);
  margin: 12px 0 0 0;
}

.cho-q-side {
  background: #f8fafc;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  padding: 24px 22px;
  text-align: center;
}
.cho-q-side__icon {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}
.cho-q-side__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px 0;
}
.cho-q-side__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 16px 0;
}
.cho-q-side__note {
  font-size: 11px;
  color: var(--muted);
  margin: 10px 0 0 0;
}

/* ───────────────────────────────────────
   HOW IT WORKS
   ─────────────────────────────────────── */
/* ───────────────────────────────────────
   HOW IT WORKS — cream band background
   Uses full-bleed trick to extend edge-to-edge
   even though the section sits inside cho-body-v2.
   ─────────────────────────────────────── */
.cho-hiw-band {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 48px;
  background: var(--cho-cc-section-bg, #EAF2FA);
  border-top: 1px solid #f0e6d4;
  border-bottom: 1px solid #f0e6d4;
}
.cho-hiw-v2 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px 32px 24px;
  text-align: center;
}
.cho-hiw-v2__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 32px 0;
}
.cho-hiw-v2__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cho-hiw-v2__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cho-hiw-v2__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cho-hiw-v2__icon--orange {
  background: var(--flame);
}
.cho-hiw-v2__icon--navy {
  background: var(--navy);
}
.cho-hiw-v2__step h3 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}
.cho-hiw-v2__step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ───────────────────────────────────────
   EMAIL ALERT BANNER
   ─────────────────────────────────────── */
.cho-ab-v2 {
  background: var(--navy);
  border-radius: 12px;
  margin: 40px 0 0 0;
}
.cho-ab-v2__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 30px 34px;
}
.cho-ab-v2__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cho-ab-v2__icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cho-ab-v2__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}
.cho-ab-v2__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin: 0;
}
.cho-ab-v2__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cho-ab-v2__row {
  display: flex;
  gap: 10px;
}
.cho-ab-v2__input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #ffffff;
  background: rgba(255,255,255,0.1);
  outline: none;
}
.cho-ab-v2__input::placeholder {
  color: rgba(255,255,255,0.5);
}
.cho-ab-v2__input:focus {
  border-color: rgba(255,255,255,0.5);
}
.cho-ab-v2__note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* ───────────────────────────────────────
   RESPONSIVE
   ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .cho-sg-v2 { grid-template-columns: repeat(3, 1fr); }
  .cho-cn-row { grid-template-columns: 1fr; }
  .cho-hero-v2__h1 { font-size: 36px; }
}
@media (max-width: 820px) {
  .cho-hero-v2__panels { grid-template-columns: 1fr; max-width: 540px; }
  .cho-hero-v2__h1 { font-size: 30px; }
  .cho-q-row { grid-template-columns: 1fr; }
  .cho-q-side { text-align: left; }
  .cho-hiw-v2__steps { grid-template-columns: repeat(2, 1fr); }
  .cho-ab-v2__inner { grid-template-columns: 1fr; gap: 22px; padding: 26px 24px; }
  .cho-mkt-bar__inner { flex-direction: column; align-items: flex-start; }
  .cho-mkt-bar__meta { text-align: left; }
}
@media (max-width: 600px) {
  .cho-hero-v2__report-panel { flex-direction: column; gap: 14px; }
  .cho-hero-v2__h1 { font-size: 26px; }
  .cho-sg-v2 { grid-template-columns: repeat(2, 1fr); }
  .cho-hiw-v2__steps { grid-template-columns: 1fr; }
  .cho-cs-row { grid-template-columns: 1fr; }
  .cho-cs-cell { border-right: none; border-bottom: 1px solid var(--rule); }
  .cho-cs-cell:last-child { border-bottom: none; }
  .cho-ab-v2__row { flex-direction: column; }
  .cho-mkt-bar__items { gap: 16px; }
}

/* ════════════════════════════════════════════════════════════
   v1.1.3 homepage mockup alignment pass
   - wires the Control Center hero image visually
   - removes duplicate top ticker in mockup mode
   - makes the homepage closer to the approved light hero mockup
   ════════════════════════════════════════════════════════════ */
body.cho-home-mockup-preview .cho-ticker,
body.home.cho-home-mockup-preview .cho-ticker {
  display: none !important;
}

body.cho-homepage-v2 .cho-header {
  display: block !important;
  background: #061f3a !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
  position: relative;
  top: auto;
  z-index: 100;
}
body.cho-homepage-v2 .cho-header__inner {
  max-width: 1180px;
  height: 88px;
  padding-left: 40px;
  padding-right: 40px;
}
body.cho-homepage-v2 .cho-logo__text { font-size: 25px; letter-spacing: .01em; }
body.cho-homepage-v2 .cho-logo__flame { width: 34px; height: 34px; }
body.cho-homepage-v2 .cho-nav a {
  color: rgba(255,255,255,.88);
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .035em;
  padding: 10px 12px;
}
body.cho-homepage-v2 .cho-nav .current-menu-item > a,
body.cho-homepage-v2 .cho-nav a:hover {
  color: #fff;
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--flame);
}

body.cho-homepage-v2 .cho-hero-v2 {
  background: var(--cho-cc-section-bg, #EAF2FA);
  padding: 28px 24px 26px;
  min-height: 390px;
}
body.cho-homepage-v2 .cho-hero-v2__bg {
  opacity: 1;
  background-size: cover;
  background-position: center right;
  filter: none;
}
body.cho-homepage-v2 .cho-hero-v2__overlay {
  background: linear-gradient(90deg,
    rgba(244,248,252,.80) 0%,
    rgba(244,248,252,.58) 42%,
    rgba(244,248,252,.30) 66%,
    rgba(244,248,252,.08) 100%);
}
body.cho-homepage-v2 .cho-hero-v2__inner {
  max-width: 1160px;
  gap: 22px;
}
body.cho-homepage-v2 .cho-hero-v2__headline { text-align: center; }
body.cho-homepage-v2 .cho-hero-v2__h1 {
  color: #081f3d;
  font-size: clamp(38px, 4.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -.02em;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
  margin-bottom: 9px;
}
body.cho-homepage-v2 .cho-hero-v2__h1-orange { color: #f05a1a; }
body.cho-homepage-v2 .cho-hero-v2__sub {
  color: #0a243f;
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 600;
  max-width: 850px;
  line-height: 1.35;
}
body.cho-homepage-v2 .cho-hero-v2__panels {
  max-width: 980px;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, .78fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 4px;
}
body.cho-homepage-v2 .cho-hero-v2__report-panel {
  background: linear-gradient(135deg,#062c60 0%,#061f3a 100%);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 40px rgba(7,31,58,.26);
  padding: 26px 38px 24px;
  gap: 28px;
}
body.cho-homepage-v2 .cho-hero-v2__report-icon {
  width: 74px;
  height: 74px;
}
body.cho-homepage-v2 .cho-hero-v2__report-icon svg {
  width: 74px;
  height: 74px;
}
body.cho-homepage-v2 .cho-hero-v2__report-title {
  font-size: clamp(27px, 2.9vw, 39px);
  line-height: 1.05;
  margin-bottom: 10px;
}
body.cho-homepage-v2 .cho-hero-v2__report-desc {
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 18px;
  color: rgba(255,255,255,.90);
}
body.cho-homepage-v2 .cho-hero-v2__report-trust {
  gap: 30px;
  justify-content: flex-start;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  margin-bottom: 20px;
}
body.cho-homepage-v2 .cho-btn-v2 {
  min-height: 48px;
  font-size: 14px;
}
body.cho-homepage-v2 .cho-btn-v2--orange {
  background: linear-gradient(180deg,#ff5b1a 0%,#f04a10 100%);
}
body.cho-homepage-v2 .cho-hero-v2__find-panel {
  padding: 30px 28px 26px;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(7,31,58,.18);
  border: 1px solid rgba(9,45,87,.10);
}
body.cho-homepage-v2 .cho-hero-v2__find-head {
  font-size: 27px;
  gap: 12px;
  margin-bottom: 13px;
}
body.cho-homepage-v2 .cho-hero-v2__find-head svg {
  width: 31px;
  height: 31px;
}
body.cho-homepage-v2 .cho-hero-v2__find-sub {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}
body.cho-homepage-v2 .cho-hero-v2__zip-input { min-height: 47px; }

body.cho-homepage-v2 .cho-mkt-bar {
  background: var(--cho-cc-bg, #F4F8FC);
  border: 0;
  padding: 0 40px 26px;
}
body.cho-homepage-v2 .cho-mkt-bar__inner {
  max-width: 1180px;
  background: #082a52;
  border-radius: 10px;
  padding: 24px 44px;
  box-shadow: 0 8px 24px rgba(7,31,58,.10);
}
body.cho-homepage-v2 .cho-mkt-bar__items {
  gap: 0;
  flex: 1;
  justify-content: space-between;
}
body.cho-homepage-v2 .cho-mkt-bar__item {
  min-width: 130px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,.22);
}
body.cho-homepage-v2 .cho-mkt-bar__item:last-child { border-right: 0; }
body.cho-homepage-v2 .cho-mkt-bar__val { font-size: 23px; }
body.cho-homepage-v2 .cho-mkt-bar__val--lg { font-size: 24px; }
body.cho-homepage-v2 .cho-mkt-bar__meta {
  border-left: 1px solid rgba(255,255,255,.25);
  padding-left: 28px;
  min-width: 210px;
}

body.cho-homepage-v2 .cho-body-v2 {
  background: var(--cho-cc-bg, #F4F8FC);
  padding-top: 0;
}
body.cho-homepage-v2 .cho-sec-v2 {
  max-width: 1180px;
}
body.cho-homepage-v2 .cho-sg-v2 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
body.cho-homepage-v2 .cho-sg-v2__card {
  min-height: 87px;
  padding: 17px 18px;
}
body.cho-homepage-v2 .cho-cn-row {
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .95fr);
  gap: 24px;
}
body.cho-homepage-v2 .cho-q-row {
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, .85fr);
  gap: 24px;
}
body.cho-homepage-v2 .cho-hiw-band {
  max-width: 1180px;
  background: var(--cho-cc-section-bg, #EAF2FA);
  border-radius: 12px;
  padding: 18px 28px 24px;
}
body.cho-homepage-v2 .cho-hiw-v2__steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
body.cho-homepage-v2 .cho-ab-v2 {
  max-width: 1180px;
  margin-top: 18px;
}
body.cho-homepage-v2 .cho-guides-v2 {
  display: none !important;
}
body.cho-homepage-v2 .cho-footer {
  margin-top: 0;
  background: linear-gradient(180deg,#05264d 0%,#061f3a 100%);
}
body.cho-homepage-v2 .cho-footer__inner { max-width: 1180px; }
body.cho-homepage-v2 .cho-footer__grid { grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr; gap: 42px; }

@media (max-width: 980px) {
  body.cho-homepage-v2 .cho-header__inner { height: 74px; padding-left: 22px; padding-right: 22px; }
  body.cho-homepage-v2 .cho-hero-v2 { padding-top: 26px; }
  body.cho-homepage-v2 .cho-hero-v2__panels { grid-template-columns: 1fr; max-width: 660px; }
  body.cho-homepage-v2 .cho-sg-v2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.cho-homepage-v2 .cho-cn-row,
  body.cho-homepage-v2 .cho-q-row { grid-template-columns: 1fr; }
  body.cho-homepage-v2 .cho-hiw-v2__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.cho-homepage-v2 .cho-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body.cho-homepage-v2 .cho-hero-v2 { padding: 24px 16px; }
  body.cho-homepage-v2 .cho-hero-v2__report-panel { padding: 24px 20px; }
  body.cho-homepage-v2 .cho-hero-v2__report-icon { width: 50px; height: 50px; }
  body.cho-homepage-v2 .cho-hero-v2__report-icon svg { width: 50px; height: 50px; }
  body.cho-homepage-v2 .cho-mkt-bar { padding-left: 16px; padding-right: 16px; }
  body.cho-homepage-v2 .cho-mkt-bar__inner { padding: 20px; }
  body.cho-homepage-v2 .cho-mkt-bar__item { border-right: 0; min-width: 45%; margin-right: 0; padding-right: 0; }
  body.cho-homepage-v2 .cho-sg-v2 { grid-template-columns: 1fr; }
  body.cho-homepage-v2 .cho-hiw-v2__steps { grid-template-columns: 1fr; }
  body.cho-homepage-v2 .cho-ab-v2__row { grid-template-columns: 1fr; }
}

/* v1.1.6 homepage How It Works alignment correction */
body.cho-homepage-v2 .cho-hiw-band,
.cho-home-v115-header ~ .cho-main .cho-hiw-band{
  width:calc(100% - 48px)!important;
  max-width:1220px!important;
  left:auto!important;
  right:auto!important;
  margin-left:auto!important;
  margin-right:auto!important;
  box-sizing:border-box!important;
  display:block!important;
}
body.cho-homepage-v2 .cho-hiw-v2,
.cho-home-v115-header ~ .cho-main .cho-hiw-v2{
  max-width:1120px!important;
  width:100%!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:0!important;
  padding-right:0!important;
  text-align:center!important;
}
body.cho-homepage-v2 .cho-hiw-v2__steps,
.cho-home-v115-header ~ .cho-main .cho-hiw-v2__steps{
  justify-content:center!important;
  align-items:start!important;
}
body.cho-homepage-v2 .cho-hiw-v2__step,
.cho-home-v115-header ~ .cho-main .cho-hiw-v2__step{
  text-align:center!important;
  align-items:center!important;
}
@media(max-width:640px){
  body.cho-homepage-v2 .cho-hiw-band,
  .cho-home-v115-header ~ .cho-main .cho-hiw-band{width:calc(100% - 32px)!important}
}
