:root {
  --c-acc:      #0ea968;
  --c-acc-dark: #077f4d;
  --c-dark:     #0a1a14;
  --c-bg:       #ffffff;
  --c-bg-soft:  #f0faf5;
  --c-border:   #dde9e2;
  --c-text:     #0a1a14;
  --c-muted:    rgba(0,0,0,.5);
  --rhythm:     88px;
  --radius:     16px;
  --shadow:     0 1px 4px rgba(0,0,0,.04);
  --ff-h:     'Archivo', system-ui, -apple-system, sans-serif;
  --ff-b:     'Inter', system-ui, -apple-system, sans-serif;
  --hue-shift:                0deg;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-b);
  line-height: 1.6;
  color: var(--c-text);
  background-color: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-h);
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--c-dark);
}
h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.7em; }
p { margin-bottom: 1em; }
a { color: var(--c-acc); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; margin-bottom: 1em; }
ul li { position: relative; margin-bottom: 0.5em; padding-left: 1.5em; }
ul li::before {
  content: '\2022'; /* Bullet point */
  color: var(--c-acc);
  position: absolute;
  left: 0;
  top: 0;
}
strong { font-weight: 600; }
img { max-width: 100%; height: auto; display: block; }

/* Typography */
.intro-subtitle {
  font-size: 1.3em;
  font-weight: 400;
  color: var(--c-muted);
}
.byline {
  font-size: 0.9em;
  color: var(--c-muted);
  margin-bottom: 2em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.byline .fa-regular {
  color: var(--c-acc);
}
.one-liner {
  font-style: italic;
  font-size: 1.1em;
  color: var(--c-muted);
}
.review-score h3 {
  margin-top: 1.5em;
  font-size: 1.4em;
}
.review-score ul li::before {
  content: '';
  left: 0;
  top: 0.25em; /* Adjust for Font Awesome icon */
  font-size: 0.8em;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-score ul li .fa-solid.fa-check {
  color: var(--c-acc);
  position: absolute;
  left: 0;
  top: 0;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 1.5em;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: var(--ff-b);
  border: 1px solid transparent;
}
.button-acc {
  background: var(--c-acc);
  color: #fff;
}
.button-acc:hover {
  background: var(--c-acc-dark);
  text-decoration: none;
}
.button-out {
  background: transparent;
  color: var(--c-acc);
  border: 1px solid var(--c-acc);
}
.button-out:hover {
  background: var(--c-acc);
  color: #fff;
  text-decoration: none;
}
.intro-cta .button {
  min-width: 150px;
}

/* Layout & Sections */
.page-wrap {
  min-width: 320px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: var(--rhythm) 0;
  background-color: var(--c-bg-soft);
}
.intro {
  background-color: var(--c-bg);
  padding-bottom: calc(var(--rhythm) / 2);
}
.footer {
  background-color: var(--c-bg);
}

/* Header & Nav */
.header {
  background-color: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  padding: 15px 0;
}
.header .page-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.header-logo a {
  font-family: var(--ff-h);
  font-size: 1.8em;
  font-weight: 700;
  color: var(--c-dark);
  text-decoration: none;
  white-space: nowrap;
}
.header-logo a:hover {
  color: var(--c-acc);
  text-decoration: none;
}
.header-nav {
  display: flex;
  gap: 25px;
  align-items: center;
}
.header-link {
  color: var(--c-text);
  font-weight: 500;
  text-decoration: none;
  padding: 5px 0;
  position: relative;
}
.header-link:hover {
  color: var(--c-acc);
  text-decoration: none;
}
.header-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--c-acc);
  transition: width 0.2s ease;
}
.header-link:hover::after {
  width: 100%;
}
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--c-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero */
.intro {
  text-align: center;
  padding-top: calc(var(--rhythm) / 1.5);
  padding-bottom: var(--rhythm);
}
.intro h1 {
  font-size: 3.5em;
  margin-bottom: 0.3em;
  color: var(--c-dark);
}
.intro-subtitle {
  max-width: 700px;
  margin: 0 auto 2em;
}
.intro-cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 2em;
  flex-wrap: wrap;
}
.intro-chips {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.intro-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--c-border);
  color: var(--c-dark);
  padding: 0.5em 1em;
  border-radius: var(--radius);
  font-size: 0.9em;
  font-weight: 500;
}
.intro-pill .fa-solid {
  color: var(--c-acc);
}

/* Comparison Table */
.tbl-wrap {
  overflow-x: auto;
  width: 100%;
  padding-bottom: 10px; /* Space for scrollbar */
}
.tbl-cmp {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* Ensure table is scrollable if content overflows */
}
.tbl-cmp th, .tbl-cmp td {
  padding: 1em;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  vertical-align: middle;
}
.tbl-cmp th {
  background-color: var(--c-bg-soft);
  font-weight: 600;
  color: var(--c-dark);
  position: sticky;
  top: 0;
  z-index: 10;
}
.tbl-cmp tbody tr:last-child td {
  border-bottom: none;
}
.tbl-cmp .tbl-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.tbl-cmp .tbl-logo {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.tbl-cmp .tbl-name a {
  color: var(--c-dark);
  text-decoration: none;
}
.tbl-cmp .tbl-name a:hover {
  text-decoration: underline;
}
.tbl-cmp .main-brand {
    background-color: var(--c-bg);
}
.tbl-cmp .tbl-badge {
    display: inline-block;
    background-color: var(--c-acc);
    color: #fff;
    padding: 0.3em 0.8em;
    border-radius: var(--radius);
    font-size: 0.8em;
    font-weight: 500;
    margin-left: 10px;
    white-space: nowrap;
}
.tbl-cmp td:last-child {
  text-align: center;
}
.tbl-cmp .rating span {
  font-size: 1em;
  color: var(--c-dark);
  white-space: nowrap;
}

/* Editor's Pick */
.featured {
  background: var(--c-bg);
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 2em;
  display: flex;
  gap: 2em;
  align-items: flex-start;
  flex-direction: column; /* Default for mobile, will change on desktop */
}
.featured-content {
  flex: 1;
}
.featured h3 {
  font-size: 2em;
  margin-bottom: 0.2em;
}
.featured .tbl-badge {
  background-color: var(--c-acc);
  color: #fff;
  padding: 0.4em 1em;
  border-radius: var(--radius);
  font-size: 0.9em;
  font-weight: 500;
  margin-bottom: 1em;
  display: inline-block;
}
.featured .rating {
  font-size: 1.1em;
  margin-bottom: 1em;
}
.featured ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5em;
}
.featured ul li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1.8em;
  color: var(--c-dark);
}
.featured ul li .fa-solid.fa-check {
  color: var(--c-acc);
  position: absolute;
  left: 0;
  top: 0.2em;
}
.featured p {
  color: var(--c-text);
  margin-bottom: 1.5em;
}
.featured .button {
  margin-top: 1em;
}

/* Verdict section */
.card-verdict {
  background: var(--c-bg);
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.5em 2em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  margin-top: 2em;
}

.card-verdict .verdict-name {
  font-family: var(--ff-h);
  font-size: 1.8em;
  font-weight: 700;
  color: var(--c-dark);
}

.card-verdict .verdict-rating {
  font-size: 1.1em;
  color: var(--c-dark);
}

/* Compare2 Section */
.compare2-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 2em;
}

.compare2-card {
  background: var(--c-bg);
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 2em;
  display: flex;
  flex-direction: column;
}

.compare2-card h3 {
  font-size: 1.8em;
  margin-bottom: 0.2em;
}

.compare2-card .rating {
  font-size: 1.1em;
  margin-bottom: 1em;
}

.compare2-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5em;
  flex-grow: 1; /* Pushes button to bottom */
}

.compare2-card ul li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1.8em;
  color: var(--c-text);
}

.compare2-card ul li .fa-solid.fa-check {
  color: var(--c-acc);
  position: absolute;
  left: 0;
  top: 0.2em;
}

.compare2-card .button {
  margin-top: auto; /* Aligns button to botom if content varies */
}

/* Besti section */
.besti-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2em;
}

.besti-card {
  background: var(--c-bg);
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.5em;
}

.besti-card h4 {
  font-size: 1.3em;
  color: var(--c-dark);
  margin-bottom: 0.5em;
}

.besti-card p {
  color: var(--c-text);
  margin-bottom: 0.5em;
}

.besti-card p strong {
  color: var(--c-acc);
  font-weight: 600;
}

/* Methodology */
.steps-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2em;
}
.step-card {
  background: var(--c-bg);
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 2em;
  text-align: center;
  position: relative;
}
.step-num {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--c-acc);
  margin-bottom: 0.5em;
  line-height: 1;
}
.step-card h3 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
.step-card p {
  color: var(--c-muted);
  line-height: 1.5;
}

/* Guides Teaser */
.blog-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.guide-card {
  background: var(--c-bg);
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  color: var(--c-text);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  text-decoration: none;
}
.guide-card h3 {
  font-size: 1.4em;
  color: var(--c-dark);
  margin-bottom: 0.5em;
}
.guide-card p {
  font-size: 0.9em;
  color: var(--c-muted);
}
.guide-content p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.guide-content h3 {
  margin-top: 2em;
  margin-bottom: 1em;
  text-align: center;
}
.guide-content ul {
  list-style: disc;
  padding-left: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
}
.guide-content ul li {
  padding-left: 0;
  margin-bottom: 0.8em;
}
.guide-content ul li::before {
  display: none;
}

/* FAQ */
.qna {
  background: var(--c-bg);
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-bottom: 15px;
  padding: 1em 1.5em;
}
.qna-q { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--c-dark); }
.qna-q::-webkit-details-marker { display: none; }
.qna-q::after { content: '<i class="fa-solid fa-chevron-down"></i>'; display: inline-block; transition: transform 0.2s; }
.qna[open] > .qna-q::after { transform: rotate(180deg); }
.qna-a { margin-top: 1em; padding-top: 1em; border-top: 1px solid var(--c-border); color: var(--c-text); }
.qna-a p:last-child { margin-bottom: 0; }

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 1.5em;
  justify-content: center;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  padding: 0.8em 1.2em;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  flex-grow: 1;
  max-width: 300px;
  font-size: 1em;
  font-family: var(--ff-b);
}
.newsletter-form button {
  flex-shrink: 0;
}
.success-message {
  background-color: var(--c-acc-dark);
  color: #fff;
  padding: 1em;
  border-radius: var(--radius);
  margin-top: 1.5em;
  text-align: center;
}

/* Call to Action (CTA) */
.section .button-acc {
  margin-top: 1em;
}
.section h2 {
  text-align: center;
}
.section p {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Risk Strip */
.risk-band {
  background-color: var(--c-dark);
  color: rgba(255,255,255,0.7);
  padding: 1em 0;
  font-size: 0.9em;
}
.risk-band p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.risk-band .fa-solid {
  color: var(--c-acc);
  flex-shrink: 0;
}


/* Footer */
.footer {
  padding: var(--rhythm) 0;
  background-color: var(--c-bg);
  color: var(--c-text);
  border-top: 1px solid var(--c-border);
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: var(--rhythm);
}
.footer-col h3 {
  font-size: 1.2em;
  margin-bottom: 1em;
  color: var(--c-dark);
}
.footer-col p {
  font-size: 0.9em;
  line-height: 1.5;
  color: var(--c-muted);
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.5em;
  padding-left: 0;
}
.footer-col ul li::before {
  display: none;
}
.footer-col a {
  color: var(--c-text);
  text-decoration: none;
}
.footer-col a:hover {
  text-decoration: underline;
}
.footer-col address {
  font-style: normal;
  line-height: 1.5;
  color: var(--c-muted);
}
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9em;
  color: var(--c-muted);
  margin-top: var(--rhythm);
}

/* Cookie Banner */
.gdpr {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c-dark);
  color: #fff;
  padding: 1.5em 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}
.gdpr.show {
  transform: translateY(0);
}
.gdpr p {
  margin-bottom: 1em;
  text-align: left;
}
.gdpr-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
}
.gdpr-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gdpr-btns .button {
  min-width: 120px;
}
.gdpr-prefs {
  margin-top: 1em;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1em;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  flex-direction: column;
  gap: 10px;
  display: none; /* Hidden by default until JS shows it */
}
.gdpr-prefs.show {
  max-height: 300px; /* Arbitrary large enough value */
  display: flex;
}
.gdpr-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #fff;
}
.gdpr-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gdpr-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.gdpr-row label {
  cursor: pointer;
}
.gdpr-row .fa-solid {
  color: rgba(255,255,255,0.7);
  cursor: help;
}

.gdpr-reopen {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--c-acc);
  color: #fff;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  transform: translateX(150%);
  transition: transform 0.5s ease-out;
}
.gdpr-reopen.show {
  transform: translateX(0);
}

/* Brand Pages & Reviews */
.brand-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 2em;
  padding: 1.5em;
  background: var(--c-bg);
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.brand-hero-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.brand-hero-cap {
  font-size: 0.95em;
  color: var(--c-muted);
  margin: 0;
}
.brand-hero-cap a {
  color: var(--c-dark);
  font-weight: 500;
  text-decoration: none;
}
.brand-hero-cap a:hover {
  text-decoration: underline;
  color: var(--c-acc);
}

.review-score {
  background: var(--c-bg);
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 2em;
  margin-bottom: var(--rhythm);
}
.review-score h2 {
  font-size: 2em;
  margin-bottom: 0.2em;
}
.review-score .rating {
  font-size: 1.2em;
  margin-bottom: 1em;
}
.review-score ul {
  padding: 0;
  margin-bottom: 1.5em;
}
.review-score ul li {
  padding-left: 1.8em;
  color: var(--c-dark);
}
.review-score ul li .fa-solid.fa-check {
  color: var(--c-acc);
}
.review-content {
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
}
.review-content h3 {
  margin-top: 2em;
}
.review-content a.button {
  margin-top: 2em;
  display: inline-flex;
}
.review-content .logo-inline {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.section-alternatives {
  margin-top: var(--rhythm);
  padding-top: var(--rhythm);
  border-top: 1px solid var(--c-border);
}
.section-alternatives h2 {
  margin-bottom: 1.5em;
  text-align: center;
}
.alternative-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.alt-card {
  background: var(--c-bg);
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.5em;
  display: flex;
  flex-direction: column;
}
.alt-card h3 {
  font-size: 1.4em;
  color: var(--c-dark);
  margin-bottom: 0.5em;
}
.alt-card p {
  color: var(--c-muted);
  line-height: 1.5;
  margin-bottom: 1.5em;
  flex-grow: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  h1 { font-size: 2.4em; }
  h2 { font-size: 2em; }
  h3 { font-size: 1.5em; }
  .intro h1 { font-size: 2.8em; }
  .intro-subtitle { font-size: 1.1em; }
  .featured h3 { font-size: 1.8em; }
}

@media (max-width: 768px) {
  .header .page-wrap {
    flex-wrap: wrap;
  }
  .header-nav {
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    gap: 10px;
    display: none; /* Hidden by default for mobile */
  }
  .header-nav.open {
    display: flex;
  }
  .menu-btn {
    display: flex;
  }
  .intro h1 { font-size: 2.2em; }
  .intro-cta { flex-direction: column; align-items: center; }
  .intro-chips { flex-direction: column; align-items: center; }
  .section { padding: calc(var(--rhythm) / 1.5) 0; }
  .footer .footer-grid { grid-template-columns: 1fr; }
  .footer-col { text-align: center; }
  .footer-col ul { display: flex; flex-direction: column; align-items: center; }
  .footer-col address { text-align: center; }
  .gdpr-item { align-items: center; text-align: center; }
  .gdpr p { text-align: center; }
  .gdpr-btns { justify-content: center; width: 100%; }
  .hero-block.split { flex-direction: column; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.8em; }
  h2 { font-size: 1.6em; }
  .intro h1 { font-size: 2em; }
  .page-wrap { padding: 0 15px; }
  .tbl-cmp th, .tbl-cmp td { padding: 0.8em; }
  .tbl-cmp .button { padding: 0.6em 1em; font-size: 0.9em; }
  .risk-band p { font-size: 0.8em; }
  .gdpr-btns .button { min-width: unset; flex-grow: 1; }
  .gdpr-reopen { bottom: 10px; right: 10px; width: 40px; height: 40px; font-size: 1em; border-radius: 10px; }
  .brand-hero { flex-direction: column; text-align: center; }
  .brand-hero-cap a { word-break: break-all; }
  .faq-list .qna { padding: 0.8em 1em; }
  .faq-list .qna-q { font-size: 1em; }
  .faq-list .qna-a { font-size: 0.9em; }
  .newsletter-form input { width: 100%; max-width: none; }
  .newsletter-form button { width: 100%; }
  .compare2-grid { grid-template-columns: 1fr; }
}
