:root {
  --navy: #0b1f3a;
  --navy-2: #102a4f;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eaf1ff;
  --blue-mist: #f4f7fc;
  --gold: #f3c969;
  --ink: #162239;
  --muted: #667085;
  --line: #dfe6f0;
  --white: #ffffff;
  --success: #16a34a;
  --danger: #dc2626;
  --shadow-lg: 0 30px 80px rgba(17, 31, 58, 0.14);
  --shadow-md: 0 16px 40px rgba(17, 31, 58, 0.09);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.advertorial-banner {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: #0b1f3a;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

.site-shell {
  width: 1250px;
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.secure-logo {
  width: 112px;
  max-height: 42px;
  object-fit: contain;
}

.brand-divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.header-trust {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #5c6980;
  font-size: 12px;
  font-weight: 500;
}

.header-trust__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.10);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.09), transparent 33%),
    linear-gradient(135deg, #f8faff 0%, #ffffff 55%, #eef4ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -38% auto;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 50%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb--one {
  width: 180px;
  height: 180px;
  top: 70px;
  right: 9%;
  background: rgba(243, 201, 105, 0.18);
}

.hero-orb--two {
  width: 120px;
  height: 120px;
  left: -40px;
  bottom: 70px;
  border: 26px solid rgba(37, 99, 235, 0.07);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 80px;
  padding: 78px 0 84px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 660px;
  margin: 22px 0 18px;
  color: var(--navy);
  font-size: clamp(44px, 5.1vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.hero h1 span {
  position: relative;
  color: var(--blue);
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 8px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(243, 201, 105, 0.46);
}

.hero__subtext {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.primary-cta {
  min-height: 56px;
  padding: 0 8px 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 22px 40px rgba(37, 99, 235, 0.30);
}

.primary-cta__icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 20px;
}

.hero__secure {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #61708a;
  font-size: 12px;
  font-weight: 500;
}

.hero__secure img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(100%, 460px);
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.3deg);
}

/* .hero-card::before {
  content: "";
  position: absolute;
  inset: -20px 42px auto -22px;
  height: 62px;
  z-index: -1;
  border-radius: 24px;
  background: var(--blue);
  transform: rotate(-5deg);
  opacity: 0.9;
} */

.hero-card__badge {
  position: absolute;
  top: 35px;
  left: 34px;
  z-index: 3;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 26px rgba(11, 31, 58, 0.24);
}

.hero-card__image-wrap {
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 23px;
  background:
    linear-gradient(180deg, rgba(232, 241, 255, 0.92), rgba(255, 255, 255, 0.96));
}

.hero-card__image {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 12px 6px;
}

.hero-card__footer>div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-card__label {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.hero-card__footer strong {
  color: var(--navy);
  font-size: 16px;
}

.hero-card__tick {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf8ef;
  color: var(--success);
  font-weight: 800;
}

.form-stage {
  display: none;
  min-height: 650px;
  padding: 70px 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(37, 99, 235, 0.10), transparent 30%),
    radial-gradient(circle at 84% 85%, rgba(243, 201, 105, 0.16), transparent 26%),
    #f5f8fd;
}

#customerForm {
  width: 100%;
}

.form-section {
  display: none;
}

.form-section.active {
  display: block;
  animation: formFade 0.35s ease both;
}

.home-hidden-section {
  display: none;
}

@keyframes formFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-card {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 42px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
}

.form-card--narrow {
  width: min(100%, 760px);
}

.form-card--message {
  width: min(100%, 680px);
  text-align: center;
  padding: 58px 42px;
}

.form-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.form-kicker {
  color: var(--blue);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.form-step-label {
  color: #8a96aa;
  font-size: 12px;
  font-weight: 600;
}

.question-text,
.question-text-1 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--navy);
  text-align: center;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.question-text-1 {
  margin-top: 18px;
  font-size: clamp(24px, 3vw, 34px);
}

.question-subtext {
  margin: 14px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  line-height: 1.65;
}

.progress {
  position: relative;
  width: min(100%, 620px);
  height: 10px;
  margin: 30px auto 0;
  overflow: visible;
  border-radius: 999px;
  background: #e8edf5;
  box-shadow: inset 0 1px 3px rgba(11, 31, 58, 0.08);
}

.progress-bar {
  position: relative;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg,
      #1d4ed8 0%,
      #2563eb 55%,
      #60a5fa 100%);
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.28);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #2563eb;
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.15),
    0 4px 12px rgba(37, 99, 235, 0.35);
  transform: translate(50%, -50%);
}

.options {
  width: 100%;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.options--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.options--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.option {
  position: relative;
  min-height: 178px;
  padding: 18px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 10px 26px rgba(17, 31, 58, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.option:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: 0 16px 34px rgba(17, 31, 58, 0.09);
}

.option.selected {
  border-color: var(--blue);
  background: #f5f8ff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}

.option.selected::after {
  content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.option__image {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: var(--blue-mist);
}

.option__image img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.option__image--photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.option__label {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.button-group {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.button-group--back-only {
  justify-content: flex-start;
}

.button-group--center {
  justify-content: center;
}

.btn-back,
.btn-next,
.btn-submit-custom {
  min-width: 150px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.22s ease;
}

.btn-back {
  border: 1px solid var(--line);
  background: var(--white);
  color: #4b5870;
}

.btn-back:hover {
  border-color: #b8c4d6;
  background: #f8fafc;
}

.btn-next,
.btn-submit-custom {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.btn-next:hover,
.btn-submit-custom:hover {
  transform: translateY(-1px);
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.form-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  position: relative;
}

.form-group--full {
  grid-column: 1 / -1;
}

.input-group {
  width: 100%;
  margin-top: 30px;
}

.form-group label,
.input-group label {
  display: block;
  margin: 0 0 8px;
  color: #3c4960;
  font-size: 12px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  outline: none;
  border: 1px solid #d5deea;
  border-radius: 13px;
  background: #fbfcfe;
  color: var(--ink);
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-control:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.form-control--otp {
  max-width: 250px;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.otp-field label {
  text-align: center;
}

.error-message {
  display: none;
  margin-top: 7px;
  color: var(--danger);
  font-size: 11px;
  line-height: 1.4;
}

.otp-field .error-message {
  text-align: center;
}

.hidden-postcode {
  display: none;
}

.message-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 22px;
  font-weight: 800;
}

.pac-container {
  z-index: 99999;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  font-family: 'Poppins', sans-serif;
}

.why-section {
  padding: 100px 0 105px;
  background: var(--white);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  box-shadow: 0 12px 34px rgba(17, 31, 58, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.05);
}

.benefit-card__number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #d8e0ec;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.benefit-card__icon {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--blue-mist);
}

.benefit-card__icon img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.benefit-card h3 {
  position: relative;
  z-index: 2;
  margin: 26px 0 12px;
  max-width: 290px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.benefit-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 310px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.trust-strip {
  padding: 26px 0;
  border-top: 1px solid rgba(11, 31, 58, 0.06);
  background: #f7f9fc;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.trust-strip__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
}

.trust-strip__icon img {
  width: 22px;
  height: 22px;
}

.trust-strip__inner>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-strip strong {
  color: var(--navy);
  font-size: 13px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 11px;
}

.site-footer {
  padding: 64px 0 26px;
  background:
    radial-gradient(circle at 85% 0%, rgba(37, 99, 235, 0.20), transparent 32%),
    var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.footer-brand__logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
}

.footer-brand__secure {
  width: 120px;
  max-height: 40px;
  object-fit: contain;
}

.footer-copy {
  max-width: 980px;
}

.footer-copy p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 11px;
  line-height: 1.75;
}

.footer-copy a {
  color: #9fc0ff;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.footer-bottom__secure {
  color: rgba(255, 255, 255, 0.42);
}

#startButton {
  opacity: 0;
  transform: scale(0.5);
  animation: popup 0.4s ease-out 0.8s forwards, zoomInOut 1.2s ease-in-out 1.2s infinite;
}

@keyframes popup {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomInOut {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 1024px) {
  .hero__grid {
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(42px, 6vw, 62px);
  }

  .options--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .options--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 70px;
  }

  .header-trust {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 0 68px;
  }

  .hero__content {
    text-align: center;
  }

  .hero h1,
  .hero__subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .why-section {
    padding: 78px 0 82px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .secure-logo {
    width: 96px;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .hero__grid {
    padding: 46px 0 54px;
  }

  .eyebrow {
    min-height: 29px;
    font-size: 10px;
  }

  .hero h1 {
    margin-top: 17px;
    font-size: 40px;
  }

  .hero__subtext {
    font-size: 15px;
  }

  .hero__actions {
    margin-top: 26px;
    gap: 15px;
    flex-direction: column;
  }

  .primary-cta {
    width: 75%;
    justify-content: space-between;
    font-size: 13px;
    padding-left: 11px;
    padding-right: 4px;
  }

  .hero-card {
    padding: 12px;
    border-radius: 26px;
  }

  .hero-card__image-wrap {
    min-height: 255px;
  }

  .hero-card__image {
    height: 255px;
  }

  .hero-card__badge {
    top: 26px;
    left: 24px;
  }

  .form-stage {
    padding: 34px 0 44px;
  }

  .form-card,
  .form-card--message {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .form-card__top {
    margin-bottom: 18px;
  }

  .question-text,
  .question-text-1 {
    font-size: 26px;
  }

  .options,
  .options--four,
  .options--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .option {
    min-height: 150px;
    padding: 14px 10px;
  }

  .option__image {
    width: 78px;
    height: 78px;
  }

  .option__image img {
    width: 64px;
    height: 64px;
  }

  .option__image--photo img {
    width: 100%;
    height: 100%;
  }

  .button-group {
    flex-direction: column-reverse;
  }

  .button-group--back-only {
    flex-direction: row;
  }

  .btn-back,
  .btn-next,
  .btn-submit-custom {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-group--full {
    grid-column: auto;
  }

  .why-section {
    padding: 66px 0 70px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .benefit-card {
    padding: 24px;
    border-radius: 20px;
  }

  .trust-strip__inner {
    justify-content: flex-start;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand-divider {
    display: none;
  }

  .brand-group {
    gap: 10px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero h1 span::after {
    height: 6px;
  }

  .hero-card__image-wrap,
  .hero-card__image {
    min-height: 220px;
    height: 220px;
  }

  .options,
  .options--four,
  .options--five {
    grid-template-columns: 1fr 1fr;
  }

  .option {
    min-height: 142px;
  }

  .question-text,
  .question-text-1 {
    font-size: 23px;
  }
}


/* =========================================================
   BATTERY REBATE ARTICLE PAGE
   Shares the same visual system as the redesigned homepage.
   ========================================================= */

.article-page {
  background: #f5f8fd;
}

.article-brand-link {
  text-decoration: none;
}

.article-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(37, 99, 235, 0.10), transparent 34%),
    linear-gradient(135deg, #f8faff 0%, #ffffff 54%, #eef4ff 100%);
}

.article-hero::after {
  content: "";
  position: absolute;
  right: -190px;
  bottom: -310px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 50%;
}

.article-hero__orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.article-hero__orb--one {
  width: 170px;
  height: 170px;
  top: 58px;
  right: 8%;
  background: rgba(243, 201, 105, 0.18);
}

.article-hero__orb--two {
  width: 110px;
  height: 110px;
  left: -35px;
  bottom: 54px;
  border: 24px solid rgba(37, 99, 235, 0.07);
}

.article-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 78px;
  padding: 76px 0 84px;
}

.article-hero__content h1 {
  max-width: 690px;
  margin: 20px 0 18px;
  color: var(--navy);
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.article-hero__content h1 span {
  color: var(--blue);
}

.article-hero__lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.article-hero__meta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #66758e;
  font-size: 12px;
  font-weight: 500;
}

.article-hero__meta b {
  color: var(--navy);
}

.article-hero__meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9eabc0;
}

.article-hero__visual {
  display: flex;
  justify-content: center;
}

.article-image-card {
  position: relative;
  width: min(100%, 480px);
  padding: 16px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}

/* .article-image-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -18px;
  left: -18px;
  right: 48px;
  height: 58px;
  border-radius: 22px;
  background: var(--blue);
  transform: rotate(-4deg);
  opacity: 0.92;
} */

.article-image-card__label {
  position: absolute;
  z-index: 3;
  top: 30px;
  left: 30px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.article-image-card__image {
  width: 100%;
  aspect-ratio: 16 / 11;
  display: block;
  object-fit: cover;
  border-radius: 22px;
}

.article-image-card__footer {
  padding: 17px 12px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.article-image-card__footer span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.article-image-card__footer strong {
  color: var(--navy);
  font-size: 13px;
}

.article-layout-section {
  padding: 76px 0 92px;
  background:
    radial-gradient(circle at 90% 20%, rgba(243, 201, 105, 0.11), transparent 25%),
    #f5f8fd;
}

.article-layout {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 20px;
  offset: 0;
}

.toc-card {
  position: sticky;
  top: 24px;
  padding: 15px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(17, 31, 58, 0.08);
}

.toc-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8edf5;
  color: var(--navy);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.toc-card__mark {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 10px;
}

.toc-card__nav {
  margin-top: 0;
  display: flex;
  flex-direction: column;
}

.toc-card__nav a {
  padding: 0;
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  padding: 15px 0;
  gap: 10px;
  text-decoration: none;
  transition: color 0.2s ease;
  flex-direction: row;
  flex-wrap: wrap;
}

.toc-card__nav a .feture-img {
  width: 35%;
  height: 90px;
}

.toc-card__nav a .feture-img img {
  height: 100%;
  object-fit: cover;
}

.toc-card__nav a .blog-info {
  width: 62%;
}

.content-link {
  display: grid;
  margin-bottom: 20px;
  justify-content: space-around;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 30px;
}

a.statebutton {
  display: inline-block;
  padding: 8px 20px;
  background-color: #2563eb;
  color: #fff !important;
  text-decoration: none;
  margin: 0;
  text-align: center;
  border-radius: 5px;
}

.toc-card__nav a .feture-img img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.toc-card__nav a .blog-info h2 {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  color: #000;
}

.toc-card__nav a:last-child {
  border-bottom: 0;
}

.toc-card__nav a:hover {
  color: var(--blue);
}

.toc-card__nav span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.toc-card__nav b {
  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
}

.toc-card__cta {
  margin-top: 14px;
  min-height: 44px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.18);
}

.article-card {
  min-width: 0;
  padding: 48px 54px 56px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.article-card__intro {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.article-card__label {
  color: var(--blue);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  white-space: nowrap;
}

.article-card__rule {
  width: 100%;
  height: 1px;
  background: #e8edf5;
}

.article-content {
  color: #4b5870;
}

.article-content h2,
.article-content h3 {
  scroll-margin-top: 30px;
  color: var(--navy);
  letter-spacing: -0.025em;
}

.article-content h2 {
  margin: 44px 0 16px;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.18;
  font-weight: 700;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
}

.article-content p {
  margin: 0 0 17px;
  color: #59677f;
  font-size: 15px;
  line-height: 1.85;
}

.article-content strong,
.article-content b {
  color: #27364e;
}

.article-content a:not(.article-cta) {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.article-content a:not(.article-cta):hover {
  text-decoration: underline;
}

.article-content ol,
.article-content ul {
  margin: 8px 0 26px;
  padding: 0;
  list-style: none;
  counter-reset: article-list;
}

.article-content ol li,
.article-content ul li {
  position: relative;
  margin-bottom: 10px;
  padding: 12px 15px 12px 48px;
  border: 1px solid #edf1f6;
  border-radius: 13px;
  background: #fafcff;
  color: #44536a;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.article-content ol li {
  counter-increment: article-list;
}

.article-content ol li::before {
  content: counter(article-list);
}

.article-content ul li::before {
  content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“";
}

.article-content ul li::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 12px;
  height: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  content: "";
  background: var(--blue);
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  transform: translateY(-50%);
}

.article-content ol li::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  transform: translateY(-50%);
}

.article-content blockquote {
  position: relative;
  margin: 28px 0;
  padding: 24px 26px 24px 62px;
  overflow: hidden;
  border: 1px solid #e0e8f4;
  border-radius: 18px;
  background: linear-gradient(135deg, #f5f8ff, #fbfcff);
  color: #45546c;
  font-size: 14px;
  line-height: 1.75;
  font-style: italic;
}

.article-content blockquote::before {
  content: "\"";
  position: absolute;
  top: 12px;
  left: 20px;
  color: var(--blue);
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  opacity: 0.85;
}

.article-graph {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin: 22px 0 16px;
  display: block;
  border-radius: 20px;
  background: #fff;
}

.map-img img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

.article-cta {
  margin: 18px auto 26px;
  min-height: 50px;
  padding: 0 22px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.20);
  transition: all 0.22s ease;
}

.article-cta:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.27);
}

.expert-card {
  margin: 30px 0 34px;
  padding: 24px;
  display: block;
  grid-template-columns: 120px 1fr;
  align-items: start;
  gap: 22px;
  border: 1px solid #dfe8f5;
  border-radius: 20px;
  background: linear-gradient(135deg, #f7faff, #ffffff);
  box-shadow: 0 14px 34px rgba(17, 31, 58, 0.07);
}

.expert-card__avatar {
  width: 104px;
  height: 104px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--blue-soft);
}

.expert-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-card__content p {
  margin-bottom: 12px;
}

.expert-card__advice {
  padding-top: 12px;
  border-top: 1px solid #e7edf6;
}

.expert-card__advice p:last-child {
  margin-bottom: 0;
}

.article-final-cta {
  padding: 0 0 86px;
  background: #f5f8fd;
}

.article-final-cta__card {
  position: relative;
  overflow: hidden;
  padding: 42px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.16), transparent 24%),
    var(--navy);
  box-shadow: var(--shadow-lg);
}

.article-final-cta__card::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -105px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.article-final-cta__card h2 {
  margin: 16px 0 8px;
  color: #fff;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.article-final-cta__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
}

.article-final-cta__button {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .article-hero__grid {
    gap: 46px;
  }

  .article-layout {
    grid-template-columns: 235px minmax(0, 1fr);
  }

  .article-card {
    padding: 42px 40px 50px;
  }
}

@media (max-width: 860px) {
  .article-hero__grid {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 58px 0 68px;
  }

  .article-hero__content {
    text-align: center;
  }

  .article-hero__content h1,
  .article-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .article-hero__meta {
    justify-content: center;
  }

  .article-hero__visual {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .toc-card {
    position: static;
  }

  .toc-card__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .toc-card__nav a span {
    display: block;
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .article-hero__grid {
    padding: 44px 0 54px;
  }

  .article-hero__content h1 {
    font-size: 36px;
  }

  .article-hero__lead {
    font-size: 14px;
  }

  .article-image-card {
    padding: 11px;
    border-radius: 24px;
  }

  .article-image-card__image {
    border-radius: 17px;
  }

  .article-image-card__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .article-layout-section {
    padding: 20px 0 64px;
  }

  .toc-card {
    padding: 18px;
    border-radius: 18px;
  }

  .toc-card__nav {
    grid-template-columns: 1fr;
  }

  .article-card {
    padding: 28px 20px 34px;
    border-radius: 22px;
  }

  .article-content h2 {
    margin-top: 36px;
    font-size: 27px;
  }

  .article-content h3 {
    font-size: 19px;
  }

  .article-content p {
    font-size: 14px;
    line-height: 1.78;
  }

  .article-content blockquote {
    padding: 22px 20px 22px 50px;
  }

  .expert-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .expert-card__avatar {
    margin: 0 auto;
  }

  .article-final-cta {
    padding-bottom: 58px;
  }

  .article-final-cta__card {
    padding: 32px 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  .article-final-cta__button {
    width: 100%;
  }
}


/* =========================================================
   THANK YOU PAGE
   Add this entire block at the END of the existing style.css
   ========================================================= */

.thank-you-page {
  background: #ffffff;
}

.thank-you-brand-link {
  text-decoration: none;
}

.thank-you-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(37, 99, 235, 0.10), transparent 33%),
    linear-gradient(135deg, #f8faff 0%, #ffffff 55%, #eef4ff 100%);
}

.thank-you-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -320px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 50%;
}

.thank-you-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.thank-you-orb--one {
  width: 170px;
  height: 170px;
  top: 75px;
  right: 9%;
  background: rgba(243, 201, 105, 0.17);
}

.thank-you-orb--two {
  width: 118px;
  height: 118px;
  left: -38px;
  bottom: 65px;
  border: 25px solid rgba(37, 99, 235, 0.07);
}

.thank-you-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.7fr 0.3fr;
  align-items: center;
  gap: 0;
  padding: 76px 0 84px;
}

.thank-you-status {
  width: fit-content;
  padding: 8px 13px 8px 8px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(22, 163, 74, 0.13);
  border-radius: 999px;
  background: #effaf3;
  color: #15803d;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.thank-you-status__icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.thank-you-hero h1 {
  max-width: 650px;
  margin: 22px 0 18px;
  color: var(--navy);
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.thank-you-hero h1 span {
  color: var(--blue);
}

.thank-you-hero__lead {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.thank-you-hero__lead strong {
  color: var(--navy);
}

.thank-you-info-card {
  width: min(100%, 580px);
  margin-top: 30px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e4eaf3;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(17, 31, 58, 0.06);
  backdrop-filter: blur(12px);
}

.thank-you-info-card__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
}

.thank-you-info-card>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.thank-you-info-card span {
  color: #8a96aa;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.thank-you-info-card strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}

.thank-you-hero__visual {
  display: flex;
  justify-content: center;
}

.thank-you-house-card {
  position: relative;
  width: min(100%, 470px);
  padding: 17px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}

/* .thank-you-house-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -19px;
  left: -18px;
  right: 48px;
  height: 60px;
  border-radius: 23px;
  background: var(--blue);
  transform: rotate(-4deg);
  opacity: 0.92;
} */

.thank-you-house-card__badge {
  position: absolute;
  z-index: 3;
  top: 31px;
  left: 31px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.20);
}

.thank-you-house-card__image-wrap {
  min-height: 340px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 23px;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
}

.thank-you-house-card__image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 23px;
}

.thank-you-house-card__footer {
  padding: 17px 11px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.thank-you-house-card__footer>div:first-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.thank-you-house-card__footer span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.thank-you-house-card__footer strong {
  color: var(--navy);
  font-size: 14px;
}

.thank-you-house-card__check {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf8ef;
  color: #16a34a;
  font-weight: 800;
}

.next-steps-section {
  padding: 98px 0 102px;
  background: #ffffff;
}

.next-steps-heading {
  max-width: 760px;
}

.next-steps-heading h2 span {
  color: var(--blue);
}

.next-steps-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.next-step-card {
  position: relative;
  min-height: 420px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 15%, rgba(37, 99, 235, 0.08), transparent 31%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  box-shadow: 0 14px 38px rgba(17, 31, 58, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.next-step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.next-step-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.next-step-card__number {
  color: #dbe3ef;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.next-step-card__tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.next-step-card__media {
  height: 165px;
  margin: 20px 0 22px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.16), transparent 45%),
    #f4f7fc;
}

.next-step-card__media img {
  max-width: 82%;
  max-height: 140px;
  object-fit: contain;
}

.next-step-card__content h3 {
  margin: 0 0 11px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.next-step-card__content p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.thank-you-trust {
  padding: 26px 0;
  border-top: 1px solid rgba(11, 31, 58, 0.06);
  background: #f7f9fc;
}

.thank-you-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.thank-you-trust__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
}

.thank-you-trust__icon img {
  width: 22px;
  height: 22px;
}

.thank-you-trust__inner>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.thank-you-trust strong {
  color: var(--navy);
  font-size: 13px;
}

.thank-you-trust span {
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 900px) {
  .thank-you-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 58px 0 68px;
  }

  .thank-you-hero__content {
    text-align: center;
  }

  .thank-you-status,
  .thank-you-info-card {
    margin-left: auto;
    margin-right: auto;
  }

  .thank-you-hero h1,
  .thank-you-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .thank-you-hero__visual {
    width: min(100%, 540px);
    margin: 0 auto;
  }

  .next-steps-grid {
    grid-template-columns: 1fr;
  }

  .next-step-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .thank-you-hero__grid {
    padding: 44px 0 54px;
  }

  .thank-you-hero h1 {
    font-size: 35px;
  }

  .thank-you-hero__lead {
    font-size: 15px;
  }

  .thank-you-info-card {
    align-items: flex-start;
    text-align: left;
  }

  .thank-you-house-card {
    padding: 12px;
    border-radius: 25px;
  }

  .thank-you-house-card__image-wrap,
  .thank-you-house-card__image {
    min-height: 270px;
    height: 270px;
  }

  .next-steps-section {
    padding: 50px 0 72px;
  }

  .next-step-card {
    padding: 20px;
    border-radius: 20px;
  }

  .next-step-card__media {
    height: 145px;
  }

  .thank-you-trust__inner {
    justify-content: flex-start;
  }
}

/* =========================================================
   HOME PAGE - SOCIAL PROOF / REBATE + FINAL CTA
   ========================================================= */

.rebate-proof-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(37, 99, 235, 0.10), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(243, 201, 105, 0.12), transparent 28%),
    linear-gradient(90deg, #eef4ff 0%, #f7faff 100%);
}

.rebate-proof-section::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.05);
  pointer-events: none;
}

.rebate-proof-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.rebate-proof-panel__trust,
.rebate-proof-panel__rebate {
  min-width: 0;
  padding: 50px;
}

.rebate-proof-panel__trust {
  position: relative;
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.08), transparent 34%),
    #ffffff;
}

.rebate-proof-panel__trust::after {
  content: "";
  position: absolute;
  right: 0;
  top: 42px;
  bottom: 42px;
  width: 1px;
  background: #e7edf6;
}

.rebate-proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.rebate-proof-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #56df9a;
  box-shadow: 0 0 0 4px rgba(86, 223, 154, 0.10);
}

.rebate-proof-kicker--light {
  color: #cfe0ff;
}

.rebate-proof-stat {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rebate-proof-stat strong {
  color: var(--navy);
  font-size: clamp(54px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.rebate-proof-stat span {
  color: var(--navy);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  font-weight: 700;
}

.rebate-proof-panel__trust>p {
  max-width: 470px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.rebate-proof-points {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.rebate-proof-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #506078;
  font-size: 11px;
  font-weight: 600;
}

.rebate-proof-points i {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ecf9f1;
  color: var(--success);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.rebate-proof-panel__rebate {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(243, 201, 105, 0.16), transparent 30%),
    linear-gradient(135deg, #0b1f3a 0%, #12345f 100%);
}

.rebate-proof-panel__rebate::before {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -125px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.rebate-proof-rebate__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.rebate-proof-pill {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.rebate-proof-panel__rebate h2 {
  position: relative;
  z-index: 2;
  margin: 24px 0 16px;
  max-width: 660px;
  color: #ffffff;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.rebate-proof-panel__rebate h2 span {
  color: var(--gold);
}

.rebate-proof-panel__rebate>p {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 13px;
  line-height: 1.75;
}

.rebate-proof-action {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.rebate-proof-button {
  min-height: 52px;
  padding: 0 10px 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3c969 0%, #f1b841 100%);
  color: #162239;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(243, 201, 105, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rebate-proof-button span:last-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 31, 58, 0.09);
  font-size: 17px;
}

.rebate-proof-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(243, 201, 105, 0.24);
}

.rebate-proof-action small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 500;
}

.final-rebate-cta {
  padding: 60px 0 96px;
  background: #ffffff;
}

.final-rebate-cta__card {
  position: relative;
  overflow: hidden;
  padding: 62px 36px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 5% 20%, rgba(67, 209, 171, 0.11), transparent 28%),
    radial-gradient(circle at 95% 78%, rgba(243, 201, 105, 0.12), transparent 25%),
    linear-gradient(135deg, #0a2747 0%, #0e3158 52%, #173a64 100%);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.final-rebate-cta__card::before,
.final-rebate-cta__card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.final-rebate-cta__card::before {
  left: -120px;
  top: -140px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.final-rebate-cta__card::after {
  right: -100px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.final-rebate-cta__eyebrow {
  position: relative;
  z-index: 2;
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.final-rebate-cta h2 {
  position: relative;
  z-index: 2;
  margin: 18px auto 12px;
  max-width: 900px;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.final-rebate-cta h2 span {
  color: #72e3bc;
  display: block;
}

.final-rebate-cta p {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.final-rebate-cta__button {
  position: relative;
  z-index: 2;
  min-height: 56px;
  margin-top: 27px;
  padding: 0 9px 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.34);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.final-rebate-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(37, 99, 235, 0.42);
}

.final-rebate-cta__arrow {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  font-size: 18px;
}

.final-rebate-cta__meta {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.50);
  font-size: 10px;
  font-weight: 600;
}

.final-rebate-cta__meta span {
  margin: 0 5px;
  color: rgba(255, 255, 255, 0.26);
}

@media (max-width: 900px) {
  .rebate-proof-panel {
    grid-template-columns: 1fr;
  }

  .rebate-proof-panel__trust::after {
    left: 38px;
    right: 38px;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
  }

  .rebate-proof-panel__trust,
  .rebate-proof-panel__rebate {
    padding: 42px;
  }
}

@media (max-width: 640px) {
  .rebate-proof-section {
    padding: 64px 0;
  }

  .rebate-proof-panel {
    border-radius: 23px;
  }

  .rebate-proof-panel__trust,
  .rebate-proof-panel__rebate {
    padding: 30px 22px;
  }

  .rebate-proof-stat strong {
    font-size: 50px;
  }

  .rebate-proof-stat span {
    font-size: 23px;
  }

  .rebate-proof-points {
    flex-direction: column;
  }

  .rebate-proof-panel__rebate h2 {
    font-size: 31px;
  }

  .rebate-proof-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .rebate-proof-button {
    width: 100%;
    justify-content: space-between;
  }

  .final-rebate-cta {
    padding-bottom: 60px;
  }

  .final-rebate-cta__card {
    padding: 46px 22px;
    border-radius: 23px;
  }

  .final-rebate-cta h2 {
    font-size: 37px;
  }

  .final-rebate-cta__button {
    width: 100%;
    justify-content: space-between;
  }
}

/* =========================================================
   ARTICLE SIDEBAR + COMMENT FORM ENHANCEMENTS
   Scoped to .article-page so shared styles remain untouched.
   ========================================================= */

.article-page .sidebar-block {
  margin-top: 0;
  padding: 18px 0;
  border-top: 1px solid #e8edf5;
}

.article-page .sidebar-block__heading {
  margin-bottom: 13px;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.article-page .sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-page .sidebar-tags a {
  padding: 8px 11px;
  border: 1px solid #dce6f4;
  border-radius: 999px;
  background: #f7faff;
  color: #4c5b72;
  text-decoration: none;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  transition: all 0.2s ease;
}

.article-page .sidebar-tags a:hover {
  border-color: rgba(37, 99, 235, 0.35);
  background: var(--blue-soft);
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.article-page .sidebar-guide__links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.article-page .sidebar-guide__links a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 11px;
  color: #536178;
  text-decoration: none;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.article-page .sidebar-guide__links a span {
  min-width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
}

.article-page .sidebar-guide__links a:hover {
  background: #f5f8fd;
  color: var(--blue-dark);
}

.article-page .sidebar-check-card {
  margin-top: 0;
  padding: 20px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.14), transparent 34%),
    var(--navy);
  box-shadow: 0 14px 28px rgba(11, 31, 58, 0.14);
}

.article-page .sidebar-check-card__label {
  display: inline-block;
  margin-bottom: 10px;
  color: #9fc0ff;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.article-page .sidebar-check-card h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.article-page .sidebar-check-card p {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.6;
}

.article-page .sidebar-check-card__button {
  min-height: 40px;
  padding: 0 8px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.article-page .sidebar-check-card__button span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

.article-page .sidebar-check-card__button:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.article-page .article-content h4[id],
.article-page .article-content h3[id] {
  scroll-margin-top: 32px;
}

.article-page .article-comments {
  margin-top: 46px;
  padding-top: 38px;
  border-top: 1px solid #e6ecf4;
}

.article-page .article-comments__header {
  margin-bottom: 24px;
}

.article-page .article-comments__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.article-page .article-comments__header h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.article-page .article-comments__header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.article-page .comment-form {
  padding: 24px;
  border: 1px solid #e1e8f2;
  border-radius: 20px;
  background: #f9fbfe;
}

.article-page .comment-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.article-page .comment-field--full {
  grid-column: 1 / -1;
}

.article-page .comment-field label {
  display: block;
  margin-bottom: 7px;
  color: #34435a;
  font-size: 11px;
  font-weight: 700;
}

.article-page .comment-field label span {
  color: var(--blue);
}

.article-page .comment-field input,
.article-page .comment-field textarea {
  width: 100%;
  outline: none;
  border: 1px solid #d8e1ed;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-page .comment-field input {
  min-height: 48px;
  padding: 0 14px;
}

.article-page .comment-field textarea {
  min-height: 145px;
  padding: 13px 14px;
  resize: vertical;
  line-height: 1.6;
}

.article-page .comment-field input:focus,
.article-page .comment-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.09);
}

.article-page .comment-form__footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.article-page .comment-form__footer p {
  margin: 0;
  color: #7a879b;
  font-size: 10px;
  line-height: 1.5;
}

.article-page .comment-submit {
  min-height: 44px;
  padding: 0 8px 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.article-page .comment-submit span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

.article-page .comment-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

@media (max-width: 860px) {

  .article-page .sidebar-block,
  .article-page .sidebar-check-card {
    margin-top: 16px;
  }

  .article-page .sidebar-guide__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .article-page .sidebar-guide__links {
    grid-template-columns: 1fr;
  }

  .article-page .article-comments {
    margin-top: 36px;
    padding-top: 30px;
  }

  .article-page .article-comments__header h3 {
    font-size: 24px;
  }

  .article-page .comment-form {
    padding: 18px;
    border-radius: 16px;
  }

  .article-page .comment-form__grid {
    grid-template-columns: 1fr;
  }

  .article-page .comment-field--full {
    grid-column: auto;
  }

  .article-page .comment-form__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-page .comment-submit {
    width: 100%;
    justify-content: space-between;
  }
}


/* Static reader comments shown below the existing comment form */
.article-page .reader-comments-wrap {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid #e5ebf3;
}

.article-page .reader-comments-heading {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.article-page .reader-comments-heading h4 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.article-page .article-comments__count {
  padding-bottom: 3px;
  color: #7a879b;
  font-size: 11px;
  font-weight: 600;
}

.article-page .article-comments__list {
  overflow: hidden;
  border: 1px solid #e1e8f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 31, 58, 0.05);
}

.article-page .reader-comment {
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
}

.article-page .reader-comment+.reader-comment {
  border-top: 1px solid #edf1f6;
}

.article-page .reader-comment__avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf3ff;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.article-page .reader-comment:nth-child(2) .reader-comment__avatar {
  background: #f5f0e5;
  color: #8b6a22;
}

.article-page .reader-comment:nth-child(3) .reader-comment__avatar {
  background: #eef7f0;
  color: #2c7640;
}

.article-page .reader-comment__body {
  min-width: 0;
}

.article-page .reader-comment__meta>div {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}

.article-page .reader-comment__meta strong {
  color: var(--navy);
  font-size: 12px;
  line-height: 1.4;
}

.article-page .reader-comment__meta span {
  color: #97a2b4;
  font-size: 10px;
  line-height: 1.4;
}

.article-page .reader-comment__body p {
  margin: 8px 0 11px;
  color: #4f5e73;
  font-size: 12px;
  line-height: 1.7;
}

.article-page .reader-comment__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8a96a8;
  font-size: 10px;
  font-weight: 600;
  pointer-events: none;
  user-select: none;
}

.article-page .reader-comment__like {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #65748a;
}

.article-page .reader-comment__like svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
}

@media (max-width: 640px) {

  .article-sidebar {
    position: relative;
  }

  .article-page .sidebar-tags a {
    font-size: 12px;
  }

  .article-page .sidebar-guide__links a {
    font-size: 15px;
  }

  .article-page .reader-comments-wrap {
    margin-top: 24px;
    padding-top: 24px;
  }

  .article-page .reader-comments-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .article-page .article-comments__count {
    padding-bottom: 0;
  }

  .article-page .article-comments__list {
    border-radius: 16px;
  }

  .article-page .reader-comment {
    padding: 18px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
  }

  .article-page .reader-comment__avatar {
    width: 38px;
    height: 38px;
    font-size: 10px;
  }

  .article-page .reader-comment__meta>div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .content-link {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .toc-card__nav a .blog-info {
    width: 61%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

/* =========================================================
   NEWS ARTICLE REDESIGN
   Scoped only to: body.article-page.news-redesign
   Other pages using this stylesheet remain unchanged.
   ========================================================= */

body.article-page.news-redesign {
  --news-red: #d71920;
  --news-ink: #202124;
  --news-muted: #74777c;
  --news-line: #dedede;
  --news-soft: #f7f7f7;
  background: #ffffff;
  color: var(--news-ink);
}

body.article-page.news-redesign .site-shell {
  width: min(1250px, calc(100% - 48px));
}

/* Header */
body.article-page.news-redesign .news-header {
  background: #ffffff;
  border-bottom: 1px solid #dedede;
  box-shadow: none;
  backdrop-filter: none;
}

body.article-page.news-redesign .news-header__top {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

body.article-page.news-redesign .news-header__date-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: start;
  color: #5f6368;
}

body.article-page.news-redesign .news-menu-icon {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  pointer-events: none;
}

body.article-page.news-redesign .news-menu-icon span {
  width: 21px;
  height: 2px;
  display: block;
  background: var(--news-red);
  border-radius: 999px;
}

body.article-page.news-redesign .news-header__date {
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

body.article-page.news-redesign .news-logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #171717;
  text-decoration: none;
  font-size: 25px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

body.article-page.news-redesign .news-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

body.article-page.news-redesign .news-logo strong {
  color: var(--news-red);
  font-weight: 800;
}

body.article-page.news-redesign .news-search {
  width: min(100%, 280px);
  height: 44px;
  justify-self: end;
  position: relative;
}

body.article-page.news-redesign .news-search input {
  width: 100%;
  height: 100%;
  padding: 0 44px 0 15px;
  border: 1px solid #b8b8b8;
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: #555;
  font-size: 14px;
  cursor: default;
}

body.article-page.news-redesign .news-search__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #222;
  font-size: 24px;
  line-height: 1;
  pointer-events: none;
}

body.article-page.news-redesign .news-sections {
  border-top: 1px solid #eeeeee;
  background: #fafafa;
}

body.article-page.news-redesign .news-sections__inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
}

body.article-page.news-redesign .news-sections__inner span {
  color: #202124;
  font-size: 14px;
  font-weight: 500;
  cursor: default;
  user-select: none;
}

/* Lead story */
body.article-page.news-redesign .news-article-hero {
  overflow: visible;
  background: #ffffff;
  border-bottom: 1px solid #ececec;
}

body.article-page.news-redesign .news-article-hero::after,
body.article-page.news-redesign .article-hero__orb {
  display: none;
}

body.article-page.news-redesign .news-article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: stretch;
  padding: 54px 0 58px;
}

body.article-page.news-redesign .news-article-hero__content {
  min-width: 0;
  padding: 4px 0 0;
  display: flex;
  flex-direction: column;
}

body.article-page.news-redesign .news-publish-meta {
  padding: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #d9d9d9;
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 500;
}

body.article-page.news-redesign .news-publish-meta span:first-child::before {
  content: "";
  width: 18px;
  height: 2px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  background: var(--news-red);
}

body.article-page.news-redesign .news-article-hero__content h1 {
  max-width: 650px;
  margin: 26px 0 18px;
  color: #252525;
  font-size: clamp(34px, 3.25vw, 50px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 500;
}

body.article-page.news-redesign .news-article-hero__lead {
  max-width: 610px;
  margin: 0;
  color: #4c4c4c;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

body.article-page.news-redesign .news-author {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.article-page.news-redesign .news-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

body.article-page.news-redesign .news-author div {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: #666;
  font-size: 11px;
}

body.article-page.news-redesign .news-author strong {
  color: #313131;
  font-size: 12px;
  font-weight: 600;
}

body.article-page.news-redesign .news-article-hero__visual {
  min-width: 0;
}

body.article-page.news-redesign .news-article-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  display: block;
  object-fit: cover;
}

/* Article + right sidebar */
body.article-page.news-redesign .article-layout-section {
  padding: 56px 0 88px;
  background: #ffffff;
}

body.article-page.news-redesign .article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 58px;
  align-items: start;
}

body.article-page.news-redesign .article-card {
  grid-column: 1;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.article-page.news-redesign .article-sidebar {
  grid-column: 2;
  position: sticky;
  top: 22px;
  min-width: 0;
}

body.article-page.news-redesign .news-headlines {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.article-page.news-redesign .news-headlines__title {
  position: relative;
  margin-bottom: 4px;
  padding-bottom: 14px;
  color: #2b2b2b;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 700;
}

body.article-page.news-redesign .news-headlines__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 145px;
  height: 2px;
  background: #1d1d1d;
}

body.article-page.news-redesign .news-headline-item {
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #e7e7e7;
  color: inherit;
  text-decoration: none;
}

body.article-page.news-redesign .news-headline-item:last-child {
  border-bottom: 0;
}

body.article-page.news-redesign .news-headline-item__content {
  min-width: 0;
}

body.article-page.news-redesign .news-headline-item h3 {
  margin: 0;
  color: #333333;
  font-size: 14px;
  line-height: 1.38;
  letter-spacing: -0.01em;
  font-weight: 600;
  transition: color 0.2s ease;
}

body.article-page.news-redesign .news-headline-item span {
  margin-top: 9px;
  display: block;
  color: #aaaaaa;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 400;
}

body.article-page.news-redesign .news-headline-item img {
  width: 112px;
  height: 74px;
  display: block;
  object-fit: cover;
  background: #eeeeee;
}

body.article-page.news-redesign .news-headline-item:hover h3 {
  color: var(--news-red);
}

/* Keep current article content readable while removing the old card-like advertorial look */
body.article-page.news-redesign .article-content {
  color: #444;
}

body.article-page.news-redesign .article-content h2,
body.article-page.news-redesign .article-content h3,
body.article-page.news-redesign .article-content h4 {
  color: #252525;
}

body.article-page.news-redesign .article-content h2 {
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.25;
  font-weight: 600;
}

body.article-page.news-redesign .article-content p,
body.article-page.news-redesign .article-content li {
  font-size: 15px;
  line-height: 1.78;
}

/* Responsive */
@media (max-width: 1024px) {
  body.article-page.news-redesign .news-header__top {
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
  }

  body.article-page.news-redesign .news-search {
    width: 230px;
  }

  body.article-page.news-redesign .news-article-hero__grid {
    gap: 32px;
  }

  body.article-page.news-redesign .article-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 36px;
  }

  body.article-page.news-redesign .news-headline-item {
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 12px;
  }

  body.article-page.news-redesign .news-headline-item img {
    width: 92px;
    height: 64px;
  }
}

@media (max-width: 860px) {
  body.article-page.news-redesign .news-header__top {
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }

  body.article-page.news-redesign .news-logo {
    grid-column: 2;
    grid-row: 1;
  }

  body.article-page.news-redesign .news-search {
    display: none;
  }

  body.article-page.news-redesign .news-sections__inner {
    justify-content: flex-start;
    gap: 34px;
    overflow-x: auto;
  }

  body.article-page.news-redesign .news-article-hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 0 48px;
  }

  body.article-page.news-redesign .news-author {
    margin-top: 0;
    padding-top: 28px;
  }

  body.article-page.news-redesign .news-article-hero__visual img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  body.article-page.news-redesign .article-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  body.article-page.news-redesign .article-card,
  body.article-page.news-redesign .article-sidebar {
    grid-column: 1;
  }

  body.article-page.news-redesign .article-sidebar {
    position: static;
  }

  body.article-page.news-redesign .news-headlines {
    max-width: 680px;
  }
}

@media (max-width: 640px) {

  .article-graph{
    height: auto;
  }

  body.article-page.news-redesign .site-shell {
    width: min(100% - 28px, 1250px);
  }

  body.article-page.news-redesign .news-header__top {
    min-height: 68px;
    gap: 12px;
  }

  body.article-page.news-redesign .news-header__date-wrap {
    gap: 10px;
  }

  body.article-page.news-redesign .news-header__date {
    font-size: 10px;
  }

  body.article-page.news-redesign .news-logo {
    gap: 6px;
    font-size: 18px;
  }

  body.article-page.news-redesign .news-logo img {
    width: 30px;
    height: 30px;
  }

  body.article-page.news-redesign .news-sections__inner {
    min-height: 44px;
    gap: 26px;
  }

  body.article-page.news-redesign .news-sections__inner span {
    font-size: 12px;
  }

  body.article-page.news-redesign .news-publish-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  body.article-page.news-redesign .news-article-hero__content h1 {
    margin-top: 22px;
    font-size: 32px;
  }

  body.article-page.news-redesign .news-article-hero__lead {
    font-size: 14px;
  }

  body.article-page.news-redesign .article-layout-section {
    padding: 38px 0 64px;
  }

  body.article-page.news-redesign .news-headline-item {
    grid-template-columns: minmax(0, 1fr) 105px;
  }

  body.article-page.news-redesign .news-headline-item img {
    width: 105px;
    height: 70px;
  }
}

@media (max-width: 420px) {
  body.article-page.news-redesign .news-header__date {
    max-width: 120px;
    white-space: normal;
    line-height: 1.3;
  }

  body.article-page.news-redesign .news-menu-icon {
    display: none;
  }

  body.article-page.news-redesign .news-headline-item {
    grid-template-columns: minmax(0, 1fr) 88px;
  }

  body.article-page.news-redesign .news-headline-item img {
    width: 88px;
    height: 62px;
  }
}

/* Legal / policy pages */
body.legal-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.legal-page .legal-header {
  padding: 28px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

body.legal-page .legal-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

body.legal-page .legal-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #171717;
  text-decoration: none;
  font-size: 25px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

body.legal-page .legal-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

body.legal-page .legal-logo strong {
  color: #c41e3a;
  font-weight: 800;
}

body.legal-page .legal-main {
  flex: 1;
  padding: 40px 16px 56px;
}

body.legal-page .legal-content {
  max-width: 780px;
  margin: 0 auto;
}

body.legal-page .legal-content h1 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.25;
  color: var(--navy);
}

body.legal-page .legal-content .legal-updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
}

body.legal-page .legal-content h2 {
  margin: 24px 0 10px;
  font-size: 17px;
  color: var(--navy);
}

body.legal-page .legal-content p,
body.legal-page .legal-content li {
  margin: 0 0 12px;
  color: #3d4a63;
  font-size: 14px;
  line-height: 1.7;
}

body.legal-page .legal-content ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

body.legal-page .legal-content a {
  color: var(--blue);
  text-decoration: none;
}

body.legal-page .legal-content a:hover {
  text-decoration: underline;
}

body.legal-page .legal-contact-email {
  display: inline-block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 600;
}

body.legal-page .legal-footer .site-shell {
  text-align: center;
}

body.legal-page .legal-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 24px;
}

body.legal-page .legal-footer .footer-nav a {
  color: #9fc0ff;
  text-decoration: none;
  font-size: 12px;
}

body.legal-page .legal-footer .footer-nav a:hover {
  text-decoration: underline;
}

body.legal-page .legal-footer .footer-bottom {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 24px;
}

.site-footer .footer-nav a {
  color: #9fc0ff;
  text-decoration: none;
  font-size: 12px;
}

.site-footer .footer-nav a:hover {
  text-decoration: underline;
}

.site-footer .footer-brand a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

@media (max-width: 768px) {
  body.legal-page .legal-content h1 {
    font-size: 24px;
  }

  body.legal-page .legal-main {
    padding: 28px 16px 40px;
  }
}