@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1a6b4a;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 16px;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e2e6e2;
}

.article-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a4a4a;
}
.article-body h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e6e2;
}
.article-body h3 {
  font-size: 1.15rem;
  margin-top: 32px;
  margin-bottom: 8px;
}
.article-body ul, .article-body ol {
  margin: 16px 0;
  padding-left: 24px;
}
.article-body ul li, .article-body ol li {
  margin-bottom: 8px;
  list-style: disc;
}
.article-body ol li {
  list-style: decimal;
}
.article-body strong {
  font-weight: 700;
  color: #1a1a1a;
}
.article-body blockquote {
  border-left: 4px solid #1a6b4a;
  padding: 16px 24px;
  margin: 24px 0;
  background: #f8f9f8;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #4a4a4a;
}
.article-body code {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.875rem;
  background: #f0f2f0;
  padding: 2px 6px;
  border-radius: 4px;
  color: #e85d24;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  /* padding: $spacing-unit * 5 0; */
}

.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .content-with-sidebar {
    grid-template-columns: 1fr 280px;
  }
}

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

@media (min-width: 1024px) {
  .sidebar {
    position: sticky;
    top: 24px;
    height: fit-content;
  }
}

.sidebar-widget {
  background: #f8f9f8;
  border: 1px solid #e2e6e2;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}
.sidebar-widget__heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #767676;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e6e2;
}

.sidebar-provider {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid #e2e6e2;
}
.sidebar-provider:last-child {
  border-bottom: none;
}
.sidebar-provider__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  display: block;
  text-decoration: none;
  margin-bottom: 2px;
}
.sidebar-provider__name:hover {
  color: #1a6b4a;
}
.sidebar-provider .badge {
  align-self: flex-start;
}
.sidebar-provider .affiliate-link {
  font-size: 0.8rem;
  padding: 5px 12px;
  align-self: flex-start;
  margin-top: 2px;
}

.default-page {
  max-width: 760px;
  margin: 0 auto;
}

.page-content {
  margin-top: 24px;
}

.breadcrumbs {
  margin-bottom: 24px;
}
.breadcrumbs__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 0.85rem;
  color: #767676;
  padding: 0;
}
.breadcrumbs__item {
  list-style: none;
  display: flex;
  align-items: center;
}
.breadcrumbs__item::after {
  content: "›";
  margin: 0 6px;
  color: #c8cec8;
}
.breadcrumbs__item:last-child::after {
  content: "";
}
.breadcrumbs__item a {
  color: #767676;
}
.breadcrumbs__item a:hover {
  color: #1a6b4a;
}
.breadcrumbs__item--current {
  color: #4a4a4a;
}

.listing-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e6e2;
}
.listing-header__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a6b4a;
  margin-bottom: 8px;
}
.listing-header__title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.listing-header__desc {
  font-size: 1rem;
  color: #4a4a4a;
  max-width: 760px;
  line-height: 1.7;
  margin: 0;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.article-card {
  display: block;
  background: #ffffff;
  border: 1px solid #e2e6e2;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.article-card:hover {
  border-color: #1a6b4a;
  box-shadow: 0 2px 12px rgba(26, 107, 74, 0.08);
  text-decoration: none;
}
.article-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a6b4a;
  margin-bottom: 8px;
}
.article-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.35;
}
.article-card__desc {
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 16px;
}
.article-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: #767676;
  margin-bottom: 8px;
}
.article-card__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a6b4a;
}

.listing-empty {
  font-size: 1rem;
  color: #767676;
  padding: 32px 0;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e6e2;
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a6b4a;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: none;
}
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    align-items: center;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a4a4a;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.nav-link:hover {
  color: #1a6b4a;
  background: #e8f5f0;
  text-decoration: none;
}
.nav-link.is-active {
  color: #1a6b4a;
  font-weight: 600;
}
.nav-link--highlight {
  background: #1a6b4a;
  color: #ffffff !important;
  padding: 8px 16px;
}
.nav-link--highlight:hover {
  background: #0f4a32;
  color: #ffffff !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.2s;
}

.nav-menu.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e6e2;
  padding: 16px 24px;
  z-index: 200;
}
.nav-menu.is-open .nav-list {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.nav-menu.is-open .nav-link {
  width: 100%;
  padding: 12px 8px;
}

.site-footer {
  background: #f8f9f8;
  border-top: 1px solid #e2e6e2;
  margin-top: auto;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid #e2e6e2;
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 280px 1fr;
  }
}

.footer-brand .site-logo {
  margin-bottom: 12px;
  display: inline-block;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #767676;
  line-height: 1.6;
  margin: 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}
.footer-nav__heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav__list li {
  list-style: none;
}
.footer-nav__list a {
  font-size: 0.875rem;
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-nav__list a:hover {
  color: #1a6b4a;
  text-decoration: none;
}

.footer-disclosure {
  padding: 24px 0;
  border-bottom: 1px solid #e2e6e2;
}
.footer-disclosure p {
  font-size: 0.8rem;
  color: #767676;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}

.footer-copyright {
  font-size: 0.8rem;
  color: #767676;
  line-height: 1.6;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal li {
  list-style: none;
}
.footer-legal a {
  font-size: 0.8rem;
  color: #767676;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #1a6b4a;
}

.hero {
  background: #f8f9f8;
  border-bottom: 1px solid #e2e6e2;
  padding: 64px 0;
  text-align: center;
}
.hero__tag {
  display: inline-block;
  background: #e8f5f0;
  color: #1a6b4a;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__headline {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .hero__headline {
    font-size: 3rem;
  }
}
.hero__sub {
  font-size: 1.1rem;
  color: #4a4a4a;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: #1a6b4a;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.cta-btn:hover {
  background: #0f4a32;
  text-decoration: none;
  color: #ffffff;
}

.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e6e2;
  padding: 12px 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #4a4a4a;
  font-weight: 500;
}
.trust-bar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d7a4f;
  flex-shrink: 0;
}

.home-section {
  padding: 48px 0;
  border-bottom: 1px solid #e2e6e2;
}
.home-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.home-section__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #767676;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.home-section__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}
.home-section__link {
  font-size: 0.875rem;
  color: #1a6b4a;
  white-space: nowrap;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.category-card {
  background: #f8f9f8;
  border: 1px solid #e2e6e2;
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.category-card:hover {
  border-color: #1a6b4a;
  box-shadow: 0 2px 12px rgba(26, 107, 74, 0.08);
}
.category-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.category-card__desc {
  font-size: 0.85rem;
  color: #767676;
  margin-bottom: 12px;
  line-height: 1.5;
}
.category-card__links li {
  font-size: 0.825rem;
  color: #1a6b4a;
  padding: 3px 0;
  cursor: pointer;
}
.category-card__links li::before {
  content: "→ ";
  color: #767676;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.recent-card {
  background: #f8f9f8;
  border: 1px solid #e2e6e2;
  border-radius: 8px;
  padding: 12px;
}
.recent-card__tag {
  font-size: 0.75rem;
  color: #767676;
  margin-bottom: 8px;
}
.recent-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}
.recent-card__date {
  font-size: 0.75rem;
  color: #767676;
  margin-top: 8px;
}

a.recent-card {
  display: block;
  text-decoration: none;
}
a.recent-card:hover {
  border-color: #1a6b4a;
  text-decoration: none;
}

.methodology-box {
  background: #f8f9f8;
  border: 1px solid #e2e6e2;
  border-left: 4px solid #1a6b4a;
  border-radius: 0 8px 8px 0;
  padding: 20px;
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.7;
}
.methodology-box strong {
  color: #1a1a1a;
}

.article-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e6e2;
}
.article-header__category {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a6b4a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.article-header__title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 16px;
}
.article-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #767676;
  align-items: center;
}
.article-header__reading-time::before {
  content: "⏱ ";
}
.article-header__updated::before {
  content: "Updated ";
}

.author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8f9f8;
  border: 1px solid #e2e6e2;
  border-radius: 8px;
  margin-bottom: 24px;
}
.author-block__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-block__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.author-block__credentials {
  font-size: 0.8rem;
  color: #767676;
}

.key-facts-card {
  background: #f8f9f8;
  border: 1px solid #e2e6e2;
  border-left: 4px solid #1a6b4a;
  border-radius: 0 8px 8px 0;
  padding: 20px;
  margin-bottom: 32px;
}
.key-facts-card__heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a6b4a;
  margin-bottom: 12px;
}
.key-facts-card__row {
  display: flex;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #e2e6e2;
  font-size: 0.9rem;
}
.key-facts-card__row:last-child {
  border-bottom: none;
}
.key-facts-card__label {
  font-weight: 600;
  color: #1a1a1a;
  min-width: 160px;
  flex-shrink: 0;
}
.key-facts-card__value {
  color: #4a4a4a;
}

.toc {
  background: #f8f9f8;
  border: 1px solid #e2e6e2;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}
.toc__heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #767676;
  margin-bottom: 12px;
}
.toc__list li {
  padding: 3px 0;
  list-style: none;
}
.toc__list a {
  font-size: 0.875rem;
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.15s;
}
.toc__list a:hover, .toc__list a.is-active {
  color: #1a6b4a;
}

.inline-cta {
  background: #e8f5f0;
  border: 1px solid rgb(54.2744360902, 206.2255639098, 144.3195488722);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  text-align: center;
}
.inline-cta__heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f4a32;
  margin-bottom: 8px;
}
.inline-cta__body {
  font-size: 0.95rem;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.related-articles {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e2e6e2;
}
.related-articles__heading {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.related-articles__list li {
  padding: 8px 0;
  border-bottom: 1px solid #e2e6e2;
  list-style: none;
}
.related-articles__list li:last-child {
  border-bottom: none;
}
.related-articles__list li a {
  font-size: 0.9rem;
  color: #1a6b4a;
}
.related-articles__list li a::before {
  content: "→ ";
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 24px 0;
}
.article-body table th {
  background: #1a6b4a;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 16px;
  text-align: left;
  font-size: 0.85rem;
}
.article-body table td {
  padding: 10px 16px;
  border-bottom: 1px solid #e2e6e2;
  color: #4a4a4a;
  vertical-align: top;
}
.article-body table tr:nth-child(even) td {
  background: #f8f9f8;
}
.article-body table tr:last-child td {
  border-bottom: none;
}
.article-body table tr:hover td {
  background: #e8f5f0;
}

.provider-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.provider-table th {
  font-weight: 600;
  color: #767676;
  padding: 8px 12px;
  text-align: left;
  border-bottom: 2px solid #e2e6e2;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.provider-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e2e6e2;
  color: #1a1a1a;
  vertical-align: middle;
}
.provider-table tr:last-child td {
  border-bottom: none;
}
.provider-table tr:hover td {
  background: #f8f9f8;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.badge--green {
  background: rgb(209.3413173653, 238.1586826347, 222.0658682635);
  color: #2d7a4f;
}
.badge--blue {
  background: #e6f1fb;
  color: #185fa5;
}
.badge--purple {
  background: #eeedfe;
  color: #3c3489;
}
.badge--top {
  background: #e8f5f0;
  color: #0f4a32;
}

.see-all-link {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  color: #1a6b4a;
  margin-top: 12px;
  padding: 8px;
}
.see-all-link:hover {
  text-decoration: underline;
}

.score-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.score-bar__label {
  font-size: 0.85rem;
  color: #4a4a4a;
  width: 160px;
  flex-shrink: 0;
}
.score-bar__track {
  flex: 1;
  height: 6px;
  background: #f0f2f0;
  border-radius: 3px;
  overflow: hidden;
}
.score-bar__fill {
  height: 100%;
  border-radius: 3px;
  background: #2d7a4f;
}
.score-bar__fill--excellent {
  background: #2d7a4f;
}
.score-bar__fill--good {
  background: #5a9e3a;
}
.score-bar__fill--average {
  background: #b97b0d;
}
.score-bar__fill--poor {
  background: #c0392b;
}
.score-bar__value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

.verdict-box {
  background: #e8f5f0;
  border: 1px solid rgb(74.7894736842, 211.2105263158, 155.6315789474);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}
.verdict-box__heading {
  font-size: 1rem;
  font-weight: 700;
  color: #0f4a32;
  margin-bottom: 8px;
}
.verdict-box__text {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 16px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
@media (max-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}
.pros-cons__col {
  background: #f8f9f8;
  border: 1px solid #e2e6e2;
  border-radius: 8px;
  padding: 16px;
}
.pros-cons__heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.pros-cons__heading--pros {
  color: #2d7a4f;
}
.pros-cons__heading--cons {
  color: #c0392b;
}
.pros-cons__list li {
  font-size: 0.875rem;
  color: #4a4a4a;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
  list-style: none;
}
.pros-cons__list li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}
.pros-cons__list--pros li::before {
  content: "✓";
  color: #2d7a4f;
}
.pros-cons__list--cons li::before {
  content: "✗";
  color: #c0392b;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th {
  background: #f8f9f8;
  font-weight: 700;
  color: #1a1a1a;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid #e2e6e2;
  position: sticky;
  top: 64px;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e6e2;
  color: #4a4a4a;
  vertical-align: middle;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:hover td {
  background: #f8f9f8;
}
.comparison-table .winner-cell {
  color: #2d7a4f;
  font-weight: 600;
}
.comparison-table .winner-cell::after {
  content: " ✓";
}
.comparison-table .tie-cell {
  color: #767676;
}

.comparison-header {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9f8;
  border: 1px solid #e2e6e2;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .comparison-header {
    grid-template-columns: 1fr;
  }
}

.comparison-provider {
  text-align: center;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e2e6e2;
  border-radius: 8px;
}
.comparison-provider--winner {
  border-color: #1a6b4a;
  border-width: 2px;
}
.comparison-provider__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.comparison-provider__badge {
  font-size: 0.75rem;
  background: #e8f5f0;
  color: #1a6b4a;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
}
.comparison-provider__score {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a6b4a;
}

.verdict-choose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
@media (max-width: 768px) {
  .verdict-choose {
    grid-template-columns: 1fr;
  }
}
.verdict-choose__col {
  background: #f8f9f8;
  border: 1px solid #e2e6e2;
  border-radius: 8px;
  padding: 16px;
}
.verdict-choose__heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.verdict-choose__list li {
  font-size: 0.875rem;
  color: #4a4a4a;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
  list-style: none;
}
.verdict-choose__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #1a6b4a;
}

.cp-hero {
  background: linear-gradient(135deg, #1a6b4a 0%, #0f4a32 100%);
  color: #fff;
  padding: 64px 0 48px;
  text-align: center;
}
.cp-hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.cp-hero__badge {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cp-hero__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .cp-hero__title {
    font-size: 2.75rem;
  }
}
.cp-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.cp-hero__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cp-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cp-badge--date {
  background: rgba(255, 255, 255, 0.1);
}

.cp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.cp-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.cp-stat__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cp-disclosure {
  max-width: 1140px;
  margin: 24px auto;
  padding: 12px 16px;
  background: #fffbeb;
  border: 1px solid #f0d060;
  border-left: 3px solid #b97b0d;
  border-radius: 0 8px 8px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.6;
}
.cp-disclosure svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #b97b0d;
}
.cp-disclosure p {
  margin: 0;
}
.cp-disclosure strong {
  color: #1a1a1a;
}
@media (min-width: 1024px) {
  .cp-disclosure {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.cp-filters {
  max-width: 1140px;
  margin: 0 auto 24px;
  padding: 0 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.cp-filters__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #767676;
}

.cp-filter-btn {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 16px;
  border: 1.5px solid #c8cec8;
  border-radius: 20px;
  background: #ffffff;
  color: #4a4a4a;
  cursor: pointer;
  transition: all 0.15s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.cp-filter-btn:hover {
  border-color: #1a6b4a;
  color: #1a6b4a;
}
.cp-filter-btn--active {
  background: #1a6b4a;
  border-color: #1a6b4a;
  color: #fff;
}
.cp-filter-btn--active:hover {
  background: #0f4a32;
}

.cp-grid {
  max-width: 1140px;
  margin: 0 auto 48px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .cp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cp-card {
  background: #ffffff;
  border: 1px solid #e2e6e2;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.cp-card:hover {
  border-color: #1a6b4a;
  box-shadow: 0 4px 20px rgba(26, 107, 74, 0.1);
}
.cp-card--top {
  border-color: #1a6b4a;
  border-width: 2px;
}
.cp-card__ribbon {
  position: absolute;
  top: 14px;
  right: -2px;
  background: #1a6b4a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 12px 3px 10px;
  border-radius: 3px 0 0 3px;
  margin-top: 50px;
}
.cp-card__ribbon::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  border-width: 0 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #0f4a32;
}
.cp-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 8px;
}
.cp-card__logo-wrap {
  height: 40px;
  display: flex;
  align-items: center;
}
.cp-card__logo {
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
}
.cp-card__logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: #1a6b4a;
}
.cp-card__badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cp-card__price-row {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e6e2;
}
.cp-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.cp-card__price-from {
  font-size: 0.8rem;
  color: #767676;
}
.cp-card__price-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a6b4a;
  line-height: 1;
}
.cp-card__price-unit {
  font-size: 0.85rem;
  color: #767676;
}
.cp-card__differentiator {
  font-size: 0.82rem;
  color: #4a4a4a;
  line-height: 1.5;
}
.cp-card__details {
  margin-bottom: 16px;
  flex: 1;
}
.cp-card__detail {
  padding: 6px 0;
  border-bottom: 1px solid #e2e6e2;
}
.cp-card__detail:last-child {
  border-bottom: none;
}
.cp-card__detail dt {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #767676;
  margin-bottom: 3px;
}
.cp-card__detail dd {
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.5;
}
.cp-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.cp-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #1a6b4a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.cp-card__cta:hover {
  background: #0f4a32;
  color: #fff;
  text-decoration: none;
}
.cp-card__review-link {
  text-align: center;
  font-size: 0.85rem;
  color: #1a6b4a;
  text-decoration: none;
}
.cp-card__review-link:hover {
  text-decoration: underline;
}
.cp-card__review-coming {
  text-align: center;
  font-size: 0.82rem;
  color: #767676;
  font-style: italic;
}

.cp-pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
}
.cp-pill--green {
  background: rgb(198.1640718563, 234.0359281437, 214.0035928144);
  color: #2d7a4f;
}
.cp-pill--blue {
  background: #e6f1fb;
  color: #185fa5;
}

.cp-table-section {
  max-width: 1140px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.cp-table-header {
  margin-bottom: 20px;
}
.cp-table-header__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.cp-table-header__desc {
  font-size: 0.9rem;
  color: #767676;
  margin: 0;
}

.cp-table-wrap {
  overflow-x: auto;
  border: 1px solid #e2e6e2;
  border-radius: 12px;
}

.cp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 800px;
}
.cp-table thead tr {
  background: #1a6b4a;
}
.cp-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.cp-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e6e2;
  color: #4a4a4a;
  vertical-align: top;
  line-height: 1.5;
}
.cp-table tr:last-child td {
  border-bottom: none;
}
.cp-table__row--top td {
  background: #e8f5f0;
}
.cp-table tr:hover:not(thead tr) td {
  background: #f8f9f8;
}
.cp-table__col--provider {
  min-width: 160px;
}
.cp-table__col--action {
  width: 120px;
}
.cp-table__cell--provider strong {
  display: block;
  color: #1a1a1a;
  font-weight: 700;
}
.cp-table__top-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #1a6b4a;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 3px;
}
.cp-table__cell--price {
  font-weight: 600;
  color: #1a6b4a;
  white-space: nowrap;
}
.cp-table__check {
  color: #2d7a4f;
  font-weight: 700;
}
.cp-table__no {
  color: #767676;
}
.cp-table__cell--best {
  max-width: 180px;
}
.cp-table__cell--actions {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
}
.cp-table__cta {
  display: inline-block;
  background: #1a6b4a;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
}
.cp-table__cta:hover {
  background: #0f4a32;
  color: #fff;
}
.cp-table__review {
  display: inline-block;
  font-size: 0.78rem;
  color: #1a6b4a;
  text-decoration: none;
  text-align: center;
}
.cp-table__review:hover {
  text-decoration: underline;
}

.cp-editorial {
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.cp-editorial h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e6e2;
}
.cp-editorial h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 24px 0 8px;
}
.cp-editorial p {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.75;
  margin-bottom: 16px;
}
.cp-editorial strong {
  color: #1a1a1a;
}

.cp-bottom-cta {
  background: #1a6b4a;
  color: #fff;
  text-align: center;
  padding: 48px 24px;
  margin-top: 32px;
}
.cp-bottom-cta__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}
.cp-bottom-cta__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cp-bottom-cta__body {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.65;
}
.cp-bottom-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cp-bottom-cta__btn {
  display: inline-block;
  background: #fff;
  color: #1a6b4a;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.cp-bottom-cta__btn:hover {
  opacity: 0.9;
  text-decoration: none;
  color: #1a6b4a;
}
.cp-bottom-cta__review {
  display: inline-block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 12px 0;
}
.cp-bottom-cta__review:hover {
  color: #fff;
  text-decoration: underline;
}
.cp-bottom-cta__disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.breadcrumb {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 24px 8px;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: #767676;
}
.breadcrumb__link {
  color: #1a6b4a;
  text-decoration: none;
}
.breadcrumb__link:hover {
  text-decoration: underline;
}
.breadcrumb__sep {
  color: #767676;
}
.breadcrumb__item--current {
  color: #4a4a4a;
}

.rv-hero {
  max-width: 1140px;
  margin: 0 auto 32px;
  padding: 24px 24px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .rv-hero {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}
.rv-hero__eyebrow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.rv-hero__title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .rv-hero__title {
    font-size: 2.4rem;
  }
}
.rv-hero__subtitle {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 680px;
}
.rv-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e6e2;
}

.rv-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
  background: #e8f5f0;
  color: #0f4a32;
}
.rv-tag--muted {
  background: #f8f9f8;
  color: #767676;
}

.rv-meta__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #767676;
}
.rv-meta__item svg {
  flex-shrink: 0;
  color: #1a6b4a;
}
.rv-meta__item strong {
  color: #4a4a4a;
}

.rv-score {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.rv-score__stars {
  display: flex;
  gap: 2px;
}
.rv-score__star {
  font-size: 1.4rem;
  position: relative;
  color: #e0e0e0;
}
.rv-score__star::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--fill, 0%);
  overflow: hidden;
  color: #f5a623;
}
.rv-score__num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}
.rv-score__denom {
  font-size: 0.9rem;
  color: #767676;
  font-weight: 400;
}
.rv-score__label-badge {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 20px;
}
.rv-score--excellent .rv-score__label-badge {
  background: #d4edda;
  color: #155724;
}
.rv-score--great .rv-score__label-badge {
  background: #d1ecf1;
  color: #0c5460;
}
.rv-score--good .rv-score__label-badge {
  background: #fff3cd;
  color: #856404;
}
.rv-score--fair .rv-score__label-badge {
  background: #fde8d8;
  color: #7d3c00;
}
.rv-score--poor .rv-score__label-badge {
  background: #f8d7da;
  color: #721c24;
}

.rv-scorecard {
  background: #ffffff;
  border: 2px solid #1a6b4a;
  border-radius: 12px;
  padding: 20px;
}
.rv-scorecard__logo {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e6e2;
  min-height: 52px;
  display: flex;
  align-items: center;
}
.rv-scorecard__logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a6b4a;
}
.rv-scorecard__score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.rv-scorecard__score-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: #1a1a1a;
}
.rv-scorecard__score-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rv-scorecard__facts {
  margin: 16px 0 0;
}
.rv-scorecard__fact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 8px;
  padding: 8px 0;
  border-bottom: 1px solid #e2e6e2;
  font-size: 0.82rem;
}
.rv-scorecard__fact:last-child {
  border-bottom: none;
}
.rv-scorecard__fact dt {
  color: #767676;
  font-weight: 500;
}
.rv-scorecard__fact dd {
  color: #1a1a1a;
  font-weight: 600;
  text-align: right;
}
.rv-scorecard__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #1a6b4a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 16px;
  transition: background 0.15s;
}
.rv-scorecard__cta:hover {
  background: #0f4a32;
  color: #fff;
  text-decoration: none;
}
.rv-scorecard__disclaimer {
  font-size: 0.72rem;
  color: #767676;
  text-align: center;
  margin: 8px 0 0;
  line-height: 1.5;
}
.rv-scorecard__disclaimer a {
  color: #767676;
}

.rv-scorecard__score.rv-score--excellent .rv-scorecard__score-label {
  color: #155724;
}
.rv-scorecard__score.rv-score--great .rv-scorecard__score-label {
  color: #0c5460;
}
.rv-scorecard__score.rv-score--good .rv-scorecard__score-label {
  color: #856404;
}
.rv-scorecard__score.rv-score--fair .rv-scorecard__score-label {
  color: #7d3c00;
}
.rv-scorecard__score.rv-score--poor .rv-scorecard__score-label {
  color: #721c24;
}

.rv-subscores {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  border-top: 1px solid #e2e6e2;
  padding-top: 16px;
}

.rv-subscore {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.82rem;
}
.rv-subscore__label {
  flex: 1;
  color: #4a4a4a;
  white-space: nowrap;
}
.rv-subscore__bar {
  flex: 2;
  height: 6px;
  background: #f8f9f8;
  border-radius: 3px;
  overflow: hidden;
}
.rv-subscore__fill {
  height: 100%;
  background: #1a6b4a;
  border-radius: 3px;
  transition: width 0.4s ease;
}
.rv-subscore__num {
  width: 28px;
  text-align: right;
  font-weight: 700;
  color: #1a1a1a;
}

.rv-proscons {
  max-width: 1140px;
  margin: 0 auto 32px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .rv-proscons {
    grid-template-columns: 1fr 1fr;
  }
}
.rv-proscons__col {
  padding: 20px;
  border-radius: 12px;
}
.rv-proscons__col--pros {
  background: #f0faf4;
  border: 1px solid #a8d5b5;
}
.rv-proscons__col--cons {
  background: #fdf4f4;
  border: 1px solid #f0b8b8;
}
.rv-proscons__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.rv-proscons__heading--pros {
  color: #1a7a3c;
}
.rv-proscons__heading--pros svg {
  color: #1a7a3c;
}
.rv-proscons__heading--cons {
  color: #b91c1c;
}
.rv-proscons__heading--cons svg {
  color: #b91c1c;
}
.rv-proscons__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rv-proscons__item {
  font-size: 0.9rem;
  line-height: 1.55;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-left: 16px;
  position: relative;
}
.rv-proscons__item:last-child {
  border-bottom: none;
}
.rv-proscons__item--pro::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1a7a3c;
  font-weight: 700;
}
.rv-proscons__item--con::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #b91c1c;
  font-weight: 700;
}

.rv-layout {
  max-width: 1140px;
  margin: 0 auto 48px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .rv-layout {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }
}

.rv-toc {
  background: #f8f9f8;
  border: 1px solid #e2e6e2;
  border-left: 3px solid #1a6b4a;
  border-radius: 0 8px 8px 0;
  padding: 16px;
  margin-bottom: 24px;
}
.rv-toc__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #767676;
  margin-bottom: 8px;
}
.rv-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.rv-toc__item {
  counter-increment: toc;
  padding: 4px 0;
}
.rv-toc__link {
  font-size: 0.875rem;
  color: #1a6b4a;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.rv-toc__link::before {
  content: counter(toc) ".";
  font-size: 0.75rem;
  color: #767676;
  min-width: 18px;
}
.rv-toc__link:hover {
  text-decoration: underline;
}

.rv-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e6e2;
}
.rv-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 24px 0 8px;
}
.rv-body p {
  font-size: 0.97rem;
  color: #4a4a4a;
  line-height: 1.78;
  margin-bottom: 16px;
}
.rv-body ul, .rv-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.rv-body ul li, .rv-body ol li {
  font-size: 0.97rem;
  color: #4a4a4a;
  line-height: 1.65;
  margin-bottom: 6px;
}
.rv-body strong {
  color: #1a1a1a;
}
.rv-body a {
  color: #1a6b4a;
}
.rv-body a:hover {
  text-decoration: underline;
}
.rv-body blockquote {
  border-left: 3px solid #1a6b4a;
  margin: 16px 0;
  padding: 12px 16px;
  background: #f8f9f8;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #4a4a4a;
}
.rv-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.875rem;
}
.rv-body table th {
  background: #1a6b4a;
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
}
.rv-body table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e2e6e2;
  color: #4a4a4a;
}
.rv-body table tr:last-child td {
  border-bottom: none;
}
.rv-body table tr:hover td {
  background: #f8f9f8;
}

.rv-verdict-cta {
  background: #1a6b4a;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}
.rv-verdict-cta__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.rv-verdict-cta__score {
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex-shrink: 0;
}
.rv-verdict-cta__score-num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.rv-verdict-cta__score-denom {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.rv-verdict-cta__text {
  flex: 1;
  min-width: 160px;
}
.rv-verdict-cta__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.rv-verdict-cta__summary {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}
.rv-verdict-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #1a6b4a;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.rv-verdict-cta__btn:hover {
  opacity: 0.9;
  text-decoration: none;
  color: #1a6b4a;
}
.rv-verdict-cta__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.rv-alternatives {
  margin: 32px 0;
}
.rv-alternatives__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.rv-alternatives__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .rv-alternatives__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .rv-alternatives__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rv-alternatives__card {
  background: #ffffff;
  border: 1px solid #e2e6e2;
  border-radius: 8px;
  padding: 16px;
  transition: border-color 0.15s;
}
.rv-alternatives__card:hover {
  border-color: #1a6b4a;
}
.rv-alternatives__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.rv-alternatives__tagline {
  font-size: 0.82rem;
  color: #767676;
  margin-bottom: 8px;
  line-height: 1.4;
}
.rv-alternatives__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a6b4a;
  margin-bottom: 12px;
}
.rv-alternatives__links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rv-alternatives__visit {
  display: inline-block;
  background: #1a6b4a;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 4px;
  text-decoration: none;
}
.rv-alternatives__visit:hover {
  background: #0f4a32;
  color: #fff;
}
.rv-alternatives__review {
  font-size: 0.8rem;
  color: #1a6b4a;
  text-decoration: none;
}
.rv-alternatives__review:hover {
  text-decoration: underline;
}
.rv-alternatives__all {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.875rem;
  color: #1a6b4a;
  text-decoration: none;
}
.rv-alternatives__all:hover {
  text-decoration: underline;
}

.rv-related {
  margin: 32px 0;
  padding-top: 24px;
  border-top: 1px solid #e2e6e2;
}
.rv-related__heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.rv-related__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rv-related__item {
  border-bottom: 1px solid #e2e6e2;
}
.rv-related__item:last-child {
  border-bottom: none;
}
.rv-related__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  text-decoration: none;
  color: #1a1a1a;
}
.rv-related__link:hover .rv-related__title {
  color: #1a6b4a;
}
.rv-related__title {
  font-size: 0.9rem;
  transition: color 0.15s;
}
.rv-related__score {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a6b4a;
  white-space: nowrap;
}

.rv-sidebar__widget {
  background: #ffffff;
  border: 1px solid #e2e6e2;
  border-radius: 12px;
  padding: 20px;
}
@media (min-width: 1024px) {
  .rv-sidebar__widget {
    position: sticky;
    top: 24px;
  }
}
.rv-sidebar__widget--sticky { /* handled above */ }
.rv-sidebar__logo {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e6e2;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.rv-sidebar__provider-name {
  font-size: 1rem;
  font-weight: 800;
  color: #1a6b4a;
  margin: 0;
}
.rv-sidebar__score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.rv-sidebar__score-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}
.rv-sidebar__score-word {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #767676;
}
.rv-sidebar__cta {
  display: block;
  background: #1a6b4a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background 0.15s;
}
.rv-sidebar__cta:hover {
  background: #0f4a32;
  color: #fff;
  text-decoration: none;
}
.rv-sidebar__facts {
  margin: 0;
}
.rv-sidebar__fact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 8px;
  padding: 8px 0;
  border-bottom: 1px solid #e2e6e2;
  font-size: 0.8rem;
}
.rv-sidebar__fact:last-child {
  border-bottom: none;
}
.rv-sidebar__fact dt {
  color: #767676;
  font-weight: 500;
}
.rv-sidebar__fact dd {
  color: #1a1a1a;
  font-weight: 600;
  text-align: right;
}
.rv-sidebar__compare {
  display: block;
  margin-top: 16px;
  font-size: 0.82rem;
  color: #1a6b4a;
  text-decoration: none;
  text-align: center;
}
.rv-sidebar__compare:hover {
  text-decoration: underline;
}

.rv-disclosure {
  max-width: 1140px;
  margin: 0 auto 24px;
  padding: 12px 16px;
  background: #fffbeb;
  border: 1px solid #f0d060;
  border-left: 3px solid #b97b0d;
  border-radius: 0 8px 8px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: #4a4a4a;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .rv-disclosure {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.rv-disclosure svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #b97b0d;
}
.rv-disclosure p {
  margin: 0;
}
.rv-disclosure strong {
  color: #1a1a1a;
}
.rv-disclosure a {
  color: #1a6b4a;
}

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

.text-muted {
  color: #767676;
}

.text-primary {
  color: #1a6b4a;
}

.text-success {
  color: #2d7a4f;
}

.text-danger {
  color: #c0392b;
}

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

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

.affiliate-link {
  display: inline-block;
  background: #1a6b4a;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.affiliate-link:hover {
  background: #0f4a32;
  color: #ffffff;
  text-decoration: none;
}

.affiliate-disclosure {
  font-size: 0.8rem;
  color: #767676;
  font-style: italic;
  margin-top: 8px;
  line-height: 1.5;
}

.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.form-field input[type=text],
.form-field input[type=email],
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #c8cec8;
  border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-field input[type=text]:focus,
.form-field input[type=email]:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #1a6b4a;
  box-shadow: 0 0 0 3px rgba(26, 107, 74, 0.1);
}
.form-field input[type=text]:hover,
.form-field input[type=email]:hover,
.form-field textarea:hover,
.form-field select:hover {
  border-color: #1a6b4a;
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23767676' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-errors {
  background: #fcebeb;
  border: 1px solid #f09595;
  border-left: 3px solid #c0392b;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: #c0392b;
}

.form-messages {
  background: #e8f5f0;
  border: 1px solid rgb(74.7894736842, 211.2105263158, 155.6315789474);
  border-left: 3px solid #1a6b4a;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: #0f4a32;
}

.form-data input[type=submit],
.form-field input[type=submit],
button[type=submit],
input[type=submit] {
  background: #1a6b4a;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  margin-bottom: 20px;
}
.form-data input[type=submit]:hover,
.form-field input[type=submit]:hover,
button[type=submit]:hover,
input[type=submit]:hover {
  background: #0f4a32;
}

.form-honeypot {
  display: none;
}

/*# sourceMappingURL=theme.css.map */
