:root {
  --sun: #f5a623;
  --sun-deep: #e07b00;
  --sky: #0b2d5e;
  --sky-mid: #1a4a8a;
  --sky-light: #2d6cbf;
  --dusk: #1a0a2e;
  --paper: #fafaf7;
  --cream: #f2efe8;
  --ink: #111827;
  --muted: #6b7280;
  --rule: #e5e0d5;
  --green: #16a34a;
  --green-light: #dcfce7;
  --alert: #dc2626;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── PROGRESS BAR ── */

#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--sun);
  z-index: 9999;
  transition: width 0.1s;
  box-shadow: 0 0 8px rgba(245, 166, 35, 0.6);
}

/* ── TOP TICKER ── */

.ticker {
  background: var(--sky);
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-block;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}

.ticker span {
  color: var(--sun);
  margin: 0 24px;
}

/* ── MASTHEAD ── */

.masthead {
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.masthead-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 58px;
}

.pub-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pub-name .dot {
  color: var(--sun);
}

.masthead-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ad-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 4px 10px;
}

.btn-nav {
  background: var(--sky);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 20px;
  border: none;
  cursor: pointer;
  height: 100%;
  transition: background 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.btn-nav:hover {
  background: var(--sky-mid);
}

/* ── HERO ── */

.hero-wrap {
  background: linear-gradient(
    170deg,
    var(--dusk) 0%,
    var(--sky) 55%,
    #1e5a8a 100%
  );
  position: relative;
  overflow: hidden;
  padding: 70px 24px 0;
}

.hero-wrap::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.35) 0%,
    rgba(245, 166, 35, 0) 70%
  );
  pointer-events: none;
}

.hero-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--paper));
  pointer-events: none;
}

.hero {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cat-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--sun);
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: white;
  margin-bottom: 28px;
}

h1 .sun-text {
  color: var(--sun);
  display: block;
}

.hero-deck {
  font-family: 'Lora', serif;
  font-size: 19px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 660px;
  margin-bottom: 32px;
}

.hero-byline {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-byline .sep {
  color: rgba(255, 255, 255, 0.2);
}

.hero-byline .verified {
  color: var(--sun);
}

/* ── HERO STATS PANEL ── */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 44px 0 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.h-stat {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.h-stat:last-child {
  border-right: none;
}

.h-stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 0.02em;
  color: var(--sun);
  line-height: 1;
  display: block;
}

.h-stat .lbl {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-top: 6px;
}

/* ── ARTICLE ── */

.article-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.article-wrap p {
  margin-bottom: 26px;
  color: #1f2937;
}

.article-wrap p:first-of-type::first-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  float: left;
  line-height: 0.72;
  padding-right: 10px;
  padding-top: 10px;
  color: var(--sky);
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin: 52px 0 18px;
  line-height: 1;
  border-bottom: 2px solid var(--sun);
  padding-bottom: 10px;
  display: inline-block;
}

h3 {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  margin: 32px 0 14px;
  color: var(--sky);
}

.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 44px 0;
}

/* ── PULL QUOTE ── */

.pull-quote {
  margin: 44px -20px;
  padding: 32px 40px;
  background: var(--sky);
  color: white;
  position: relative;
  overflow: hidden;
}

.pull-quote::before {
  content: '\201C';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 160px;
  color: rgba(255, 255, 255, 0.07);
  position: absolute;
  top: -20px;
  left: 16px;
  line-height: 1;
}

.pull-quote p {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.55;
  color: white;
  margin: 0;
  position: relative;
  z-index: 1;
}

.pull-quote p::first-letter {
  font-size: inherit;
  float: none;
  padding: 0;
  color: white;
  font-family: inherit;
}

.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun);
  font-style: normal;
  position: relative;
  z-index: 1;
}

/* ── SAVINGS VISUAL ── */

.savings-viz {
  background: linear-gradient(135deg, #0f1f3d 0%, var(--sky) 100%);
  padding: 40px 36px;
  margin: 40px 0;
  color: white;
}

.savings-viz .title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--sun);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.bill-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.bill-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  width: 90px;
  flex-shrink: 0;
}

.bill-bar {
  flex: 1;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.bill-fill {
  height: 100%;
  border-radius: 2px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: white;
  transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bill-fill.before {
  background: rgba(220, 38, 38, 0.7);
  width: 88%;
}

.bill-fill.after {
  background: rgba(22, 163, 74, 0.75);
  width: 22%;
}

/* ── REBATE TABLE ── */

.rebate-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.rebate-table thead tr {
  background: var(--sky);
  color: white;
}

.rebate-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rebate-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
  color: #374151;
  vertical-align: top;
}

.rebate-table tr:nth-child(even) td {
  background: var(--cream);
}

.rebate-table tr:hover td {
  background: #eff6ff;
}

.province-name {
  font-weight: 600;
  color: var(--sky);
}

.rebate-amt {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--green);
  letter-spacing: 0.03em;
}

/* ── BEFORE / AFTER ── */

.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin: 36px 0;
  background: var(--rule);
}

.ba-col {
  padding: 28px 24px;
}

.ba-col.before {
  background: #fff5f5;
}

.ba-col.after {
  background: #f0fdf4;
}

.ba-head {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ba-col.before .ba-head {
  color: var(--alert);
}

.ba-col.after .ba-head {
  color: var(--green);
}

.ba-list {
  list-style: none;
}

.ba-list li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #374151;
  line-height: 1.5;
}

.ba-list li:last-child {
  border-bottom: none;
}

.ba-list li .icon {
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 1px;
}

/* ── TESTIMONIALS ── */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 36px 0;
}

.testi-card {
  background: white;
  border: 1px solid var(--rule);
  padding: 22px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}

.testi-card::after {
  content: 'Read full story →';
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-light);
  position: absolute;
  bottom: 12px;
  right: 14px;
  opacity: 0;
  transition: opacity 0.2s;
}

.testi-card:hover {
  border-color: var(--sun);
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.15);
  transform: translateY(-3px);
}

.testi-card:hover::after {
  opacity: 1;
}

.stars {
  color: var(--sun);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testi-card blockquote {
  font-family: 'Lora', serif;
  font-size: 15px;
  font-style: italic;
  color: #374151;
  line-height: 1.65;
  margin: 0 0 14px;
  border: none;
  padding: 0;
}

.testi-reviewer {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── URGENCY STRIP ── */

.urgency {
  background: var(--alert);
  color: white;
  text-align: center;
  padding: 13px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 36px 0;
}

.urgency-clock {
  background: rgba(0, 0, 0, 0.25);
  padding: 4px 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: 'Bebas Neue', sans-serif;
}

/* ── CTA BOX ── */

.cta-box {
  background: linear-gradient(150deg, var(--dusk) 0%, var(--sky) 100%);
  padding: 52px 44px;
  margin: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.25) 0%,
    transparent 70%
  );
}

.cta-box h2 {
  color: white;
  border-bottom: none;
  display: block;
  font-size: 52px;
  margin: 0 0 12px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  margin-bottom: 28px;
}

.cta-box p::first-letter {
  float: none;
  font-size: inherit;
  color: inherit;
  padding: 0;
  font-family: inherit;
}

.savings-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
}

.pill-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.pill-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--sun);
  line-height: 1;
  letter-spacing: 0.02em;
}

.btn-cta {
  display: inline-block;
  background: var(--sun);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 48px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-cta:hover {
  background: #ffb733;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.btn-cta-outline {
  display: inline-block;
  background: transparent;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 48px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-cta-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.trust-item {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-item .chk {
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--sun);
}

/* ── STICKY BAR ── */

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dusk);
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 8000;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  gap: 16px;
}

.sticky-bar.show {
  transform: translateY(0);
}

.sticky-text {
  font-family: 'Lora', serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.sticky-text strong {
  color: var(--sun);
  font-style: italic;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.sticky-btn {
  background: var(--sun);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.sticky-btn:hover {
  background: #ffb733;
}

.sticky-dismiss {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: color 0.2s;
}

.sticky-dismiss:hover {
  color: white;
}

/* ── TOAST ── */

.toast {
  position: fixed;
  bottom: 78px;
  left: 20px;
  background: white;
  border-left: 3px solid var(--green);
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
  max-width: 290px;
  z-index: 7500;
  transform: translateX(calc(-100% - 40px));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 2px 2px 0;
}

.toast.show {
  transform: translateX(0);
}

.toast .t-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 3px;
}

.toast .t-msg {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #374151;
  line-height: 1.4;
}

.toast .t-time {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: #9ca3af;
  margin-top: 5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── MODALS ── */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 25, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--paper);
  max-width: 560px;
  width: 100%;
  transform: translateY(32px) scale(0.96);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
}

.overlay.open .modal {
  transform: none;
}

.modal-hd {
  background: var(--sky);
  color: white;
  padding: 32px 32px 26px;
  position: relative;
}

.modal-hd h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.03em;
  color: white;
  margin: 0;
  line-height: 1.1;
  font-style: normal;
}

.modal-hd .sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun);
  margin-top: 6px;
}

.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border-radius: 2px;
}

.modal-x:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-bd {
  padding: 28px 32px 32px;
}

.modal-bd p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #374151;
}

.modal-bd p::first-letter {
  float: none;
  font-size: inherit;
  color: inherit;
  padding: 0;
  font-family: inherit;
}

/* Form */

.form-field {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--rule);
  background: var(--cream);
  font-family: 'Lora', serif;
  font-size: 16px;
  outline: none;
  color: var(--ink);
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.form-field:focus {
  border-color: var(--sky);
}

.form-field::placeholder {
  color: #9ca3af;
}

select.form-field {
  appearance: none;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--sky);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.btn-submit:hover {
  background: var(--sky-mid);
}

.form-note {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* Progress steps */

.steps {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  background: var(--cream);
  border-right: 1px solid var(--rule);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.step:last-child {
  border-right: none;
}

.step.active {
  background: var(--sky);
  color: white;
}

.step .snum {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: inherit;
  margin-bottom: 2px;
  font-family: 'Bebas Neue', sans-serif;
}

/* Exit modal */

.exit-modal .modal-hd {
  background: linear-gradient(135deg, var(--dusk) 0%, var(--sky-mid) 100%);
  text-align: center;
  padding: 40px 32px;
}

.exit-modal .exit-badge {
  display: inline-block;
  background: var(--sun);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.exit-modal .modal-hd h3 {
  font-size: 36px;
}

.exit-offer {
  text-align: center;
  padding: 0 4px;
}

.exit-offer .offer-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--sky);
  letter-spacing: 0.02em;
  line-height: 1;
  display: block;
  margin: 6px 0;
}

.exit-offer .offer-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.timer-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0;
}

.t-block {
  background: var(--sky);
  color: white;
  padding: 10px 14px;
  text-align: center;
  min-width: 58px;
}

.t-block .tn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--sun);
  line-height: 1;
  display: block;
}

.t-block .tl {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
  display: block;
}

.exit-no {
  display: block;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #9ca3af;
  cursor: pointer;
  margin-top: 14px;
  text-decoration: underline;
  letter-spacing: 0.06em;
}

/* Review modal */

.rev-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.rev-avatar {
  width: 52px;
  height: 52px;
  background: var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--sun);
  flex-shrink: 0;
}

.rev-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.rev-loc {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.rev-verified {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 2px 8px;
  border-radius: 2px;
  margin-top: 4px;
  display: inline-block;
}

/* Success */

.success-icon {
  font-size: 52px;
  text-align: center;
  display: block;
  margin-bottom: 12px;
}

.savings-estimate {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 20px;
  margin: 16px 0;
  text-align: center;
}

.savings-estimate .est-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--green);
  line-height: 1;
  display: block;
  letter-spacing: 0.02em;
}

.savings-estimate .est-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── HIGHLIGHTS ── */

.hl {
  background: rgba(245, 166, 35, 0.18);
  padding: 0 3px;
}

.hl-blue {
  background: rgba(29, 74, 107, 0.1);
  padding: 0 3px;
}

.hl-green {
  background: rgba(22, 163, 74, 0.12);
  padding: 0 3px;
}

/* ── FOOTNOTE ── */

.footnote {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #9ca3af;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

/* ── REVEAL ── */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .ba {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 44px;
  }
  .cta-box {
    padding: 36px 20px;
  }
  .pull-quote {
    margin: 36px -24px;
    padding: 28px 24px;
  }
  .sticky-text {
    font-size: 13px;
  }
  .modal-bd {
    padding: 20px;
  }
  .modal-hd {
    padding: 24px 20px;
  }
  .masthead-right .btn-nav {
    display: none;
  }
  .rebate-table {
    font-size: 12px;
  }
  .rebate-table th,
  .rebate-table td {
    padding: 10px;
  }
}

/* Pulse animation for CTAs */

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(245, 166, 35, 0);
  }
}

.pulse {
  animation: pulseGlow 2.5s ease infinite;
}

/* ── FOOTER LINKS ── */

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #9ca3af;
  letter-spacing: 0.06em;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.footer-links a {
  color: var(--sky-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--sky);
  text-decoration: underline;
}

.footer-sep {
  color: var(--rule);
}

/* Legal modal specific */

.legal-modal .modal-bd h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 22px 0 8px;
}

.legal-modal .modal-bd p {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 14px;
}

.legal-modal .modal-bd p::first-letter {
  float: none;
  font-size: inherit;
  color: inherit;
  padding: 0;
  font-family: inherit;
}

.legal-modal .modal-bd ul {
  margin: 0 0 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

/* Contact form inside modal */

.contact-form .form-field {
  margin-bottom: 10px;
}

.contact-form textarea.form-field {
  resize: vertical;
  min-height: 90px;
  font-family: 'Lora', serif;
  font-size: 15px;
}
