:root {
  --red: #e0523f;
  --red-dark: #b83728;
  --ink: #171b22;
  --muted: #66707d;
  --line: #dfe4ea;
  --soft: #f6f7f2;
  --paper: #ffffff;
  --navy: #202936;
  --green: #23836f;
  --amber: #d99b32;
  --blue: #356b8c;
  --shadow: 0 18px 48px rgba(24, 31, 43, 0.09);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f2f4f0 0, #fff 420px),
    var(--paper);
  font-size: 16px;
  line-height: 1.56;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  z-index: 20;
  border-bottom: 0;
  background: transparent;
}

.topbar {
  color: #fff;
  background: var(--navy);
}

.header-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand span {
  color: #f7f4eb;
}

.brand strong {
  display: inline-block;
  margin-left: 5px;
  padding: 5px 8px 6px;
  border-radius: 2px 12px 12px 2px;
  color: #fff;
  background: var(--red);
}

.header-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(217, 155, 50, 0.22);
}

.weather {
  white-space: nowrap;
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 12px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(224, 82, 63, 0.28);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.header-cta:hover {
  background: #f05d49;
}

.header-cta:focus-visible {
  outline: 3px solid rgba(217, 155, 50, 0.65);
  outline-offset: 3px;
}

.subnav {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  color: #38414c;
  font-weight: 800;
  scrollbar-width: none;
}

.subnav span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.subnav::-webkit-scrollbar {
  display: none;
}

.ticker {
  padding: 30px 0 22px;
}

.ticker-row {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #202936;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.ticker-row strong {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 15px 22px;
  color: #1f2631;
  background: var(--amber);
  font-size: 18px;
  text-transform: none;
}

.ticker-marquee {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: ticker-scroll 34s linear infinite;
  will-change: transform;
}

.ticker-row:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track span {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }

  .ticker-marquee {
    overflow-x: auto;
  }
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 810px) 300px;
  gap: 54px;
  padding: 24px 0 112px;
}

.article-main {
  min-width: 0;
}

.category,
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: none;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 36px 0 14px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.lead {
  max-width: 790px;
  padding-left: 22px;
  border-left: 4px solid var(--amber);
  color: #343a46;
  font-size: 21px;
  line-height: 1.45;
}

.media {
  margin: 34px 0;
}

.media-large {
  margin-top: 28px;
}

.media img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-large img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid #b9c3cb;
  border-radius: 18px;
  color: #4d5664;
  background:
    linear-gradient(135deg, rgba(53, 107, 140, 0.16), rgba(217, 155, 50, 0.14)),
    repeating-linear-gradient(45deg, #f4f1e8 0 18px, #e9edf0 18px 36px);
  text-align: center;
}

.placeholder span {
  font-size: 20px;
  font-weight: 900;
}

.placeholder small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.media-large .placeholder {
  min-height: 460px;
}

.placeholder-compact {
  min-height: 280px;
}

.placeholder-square {
  min-height: auto;
  aspect-ratio: 1 / 1;
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.fact-strip {
  margin: 30px 0 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.fact-strip div {
  min-height: 112px;
  display: grid;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 31, 43, 0.06);
}

.fact-strip div:first-child {
  border-left: 1px solid var(--line);
}

.fact-strip strong {
  color: var(--red);
  font-size: 36px;
  line-height: 1;
}

.fact-strip span {
  margin-top: 7px;
  color: var(--muted);
  font-weight: 800;
}

blockquote {
  margin: 34px 0;
  padding: 26px 30px;
  border-left: 0;
  border-radius: 18px;
  color: #fff;
  background: var(--navy);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.36;
}

.highlight-title {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
}

.strong-ending {
  margin: 26px 0 0;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.red-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.red-list li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 28px;
}

.red-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px var(--amber);
}

.content-band {
  margin: 40px 0;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 28px;
  align-items: center;
  border: 0;
  border-radius: 22px;
  background: #ecf3f4;
}

.content-band h2 {
  margin-top: 0;
}

.content-band .media {
  margin: 0;
}

.content-band .media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(24, 31, 43, 0.08);
}

.profit-focus {
  margin: 34px 0;
  padding: 28px;
  border: 2px solid rgba(224, 82, 63, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(224, 82, 63, 0.12), rgba(217, 155, 50, 0.17)),
    #fff;
  box-shadow: 0 16px 34px rgba(24, 31, 43, 0.08);
}

.profit-focus strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red-dark);
  font-size: 28px;
  line-height: 1.12;
}

.profit-focus p {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
}

.benefit-list {
  margin-top: 28px;
}

.callout {
  margin: 34px 0;
  padding: 24px;
  border: 1px solid #e5d7b8;
  border-radius: 18px;
  background: #fffaf0;
}

.callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red-dark);
  font-size: 20px;
}

.callout p {
  margin: 0;
}

.request-section {
  margin: 42px 0;
  padding: 32px;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 28px;
  align-items: start;
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(224, 82, 63, 0.92), rgba(32, 41, 54, 0.96)),
    var(--navy);
  box-shadow: var(--shadow);
}

.request-section .section-kicker {
  color: var(--navy);
  background: #fff;
}

.request-section h2 {
  margin-top: 0;
}

.request-section p {
  color: rgba(255, 255, 255, 0.82);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
}

.lead-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 48px;
  background:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%) right 21px
      center / 7px 7px no-repeat,
    linear-gradient(135deg, var(--navy) 50%, transparent 50%) right 15px
      center / 7px 7px no-repeat,
    linear-gradient(90deg, transparent, transparent calc(100% - 40px), #edf1f5 0)
      center / 100% 100% no-repeat,
    #fff;
}

.lead-form select:invalid {
  color: var(--muted);
}

.lead-form select option {
  color: var(--ink);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(241, 180, 52, 0.55);
}

.lead-form .checkbox {
  grid-column: 1 / -1;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.35;
}

.checkbox input {
  min-height: 18px;
  margin-top: 2px;
}

.lead-form button,
.cookie-inner button,
.back-link {
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
  cursor: pointer;
}

.lead-form button {
  grid-column: 1 / -1;
  background: var(--green);
}

.lead-form button:hover,
.cookie-inner button:hover,
.back-link:hover {
  filter: brightness(0.96);
}

.reviews {
  margin-top: 50px;
}

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

.review-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.avatar {
  width: 54px;
  height: 54px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #eef1f4;
  box-shadow: 0 0 0 1px var(--line);
}

.avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.review-card p {
  margin: 0;
  color: #404753;
}

.sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
}

.sidebar h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 0;
  font-size: 36px;
}

.sidebar h2::before {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--amber);
}

.sidebar ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: popular;
}

.sidebar li {
  margin-bottom: 12px;
  counter-increment: popular;
}

.sidebar li a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  line-height: 1.24;
}

.sidebar li a:hover {
  border-color: rgba(217, 155, 50, 0.65);
  background: #fff;
  box-shadow: 0 12px 26px rgba(24, 31, 43, 0.08);
}

.sidebar li a:focus-visible {
  outline: 3px solid rgba(217, 155, 50, 0.5);
  outline-offset: 3px;
}

.sidebar li a::before {
  content: counter(popular);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--navy);
  font-size: 22px;
}

.side-promo {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.side-promo > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.placeholder-ad {
  min-height: 250px;
  border-radius: 18px;
}

.side-banner {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 6 / 5;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.side-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cookie-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  color: #fff;
  background: rgba(32, 41, 54, 0.97);
}

.cookie-bar.is-hidden {
  display: none;
}

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

.cookie-inner p {
  margin: 0;
  font-weight: 700;
}

.cookie-inner button {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.16);
}

.success-page {
  min-height: 100vh;
  background: var(--soft);
}

.success-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.success-card {
  width: min(560px, 100%);
  padding: 42px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.success-brand {
  justify-content: center;
  margin-bottom: 26px;
}

.success-brand span {
  color: var(--red);
}

.success-brand strong {
  color: #fff;
  background: var(--red);
}

.success-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 42px;
  font-weight: 900;
}

.success-card h1 {
  font-size: 42px;
}

.success-card p {
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
}

@media (max-width: 1040px) {
  .header-row {
    flex-wrap: wrap;
    gap: 14px 22px;
    padding: 16px 0;
  }

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

  .sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    position: static;
  }

  .brand {
    font-size: 25px;
  }

  .header-tools {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .subnav {
    gap: 18px;
  }

  .ticker {
    padding-top: 18px;
  }

  .ticker-row {
    flex-direction: column;
  }

  .ticker-row strong,
  .ticker-track span {
    padding: 12px 16px;
  }

  .ticker-marquee {
    min-height: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .article-layout {
    padding-top: 12px;
  }

  h1 {
    font-size: 34px;
  }

  h2,
  .sidebar h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 19px;
  }

  .placeholder,
  .media-large .placeholder {
    min-height: 260px;
  }

  .media img,
  .media-large img {
    border-radius: 12px;
  }

  .media-large img {
    aspect-ratio: 16 / 8.6;
  }

  .fact-strip {
    grid-template-columns: 1fr;
  }

  .fact-strip div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .fact-strip div:first-child {
    border-top: 0;
  }

  blockquote {
    padding: 20px;
    font-size: 19px;
  }

  .content-band,
  .request-section {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .profit-focus {
    padding: 20px;
  }

  .profit-focus strong {
    font-size: 24px;
  }

  .profit-focus p {
    font-size: 18px;
  }

  .lead-form,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    align-items: stretch;
    flex-direction: column;
    padding: 16px 0;
  }

  .cookie-inner button {
    width: 100%;
  }

  .success-card {
    padding: 30px 22px;
  }

  .success-card h1 {
    font-size: 34px;
  }
}
