:root {
  --c-acc:      #e30613;
  --c-acc-dark: #b30410;
  --c-dark:     #000000;
  --c-bg:       #ffffff;
  --c-bg-soft:  #f0f0f0;
  --c-border:   #000000;
  --c-text:     #000000;
  --c-muted:    rgba(0,0,0,.55);
  --rhythm:     56px;
  --radius:     0px;
  --shadow:     none;
  --ff-h:       'Manrope', system-ui, -apple-system, sans-serif;
  --ff-b:       'Manrope', system-ui, -apple-system, sans-serif;
  --hue-shift:  0deg;
}

.section:nth-child(even) { background-color: var(--c-bg-soft); }

/* Mixin for card styles */
.featured, .alt-card, .metric, .qna, .brand-head, .guide-card, .compare2-item, .verdict-pick {
  background: var(--c-bg); border: 1px solid var(--c-border); box-shadow: none;
}

/* Reset and Base */
* { 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: var(--c-bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-h);
  line-height: 1.2;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: 700;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1em; }
a { color: var(--c-acc); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { margin-left: 1.5em; margin-bottom: 1em; }
li { margin-bottom: 0.5em; }

.page-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--rhythm) 0;
  position: relative;
}

/* Header and Navigation */
.header {
  background: var(--c-bg);
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-border);
}
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.header-logo {
  font-family: var(--ff-h);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-text);
  text-decoration: none;
}
.header-logo:hover { text-decoration: none; }

.header-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-grow: 1;
}
.header-link {
  font-weight: 500;
  color: var(--c-text);
  padding: 0.5rem 0;
}
.header-link:hover {
  text-decoration: underline;
}
.header-burger {
  display: none; /* Hidden on desktop */
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-text);
}


/* Footer */
.footer {
  background: var(--c-dark);
  color: #fff;
  padding: var(--rhythm) 0 1rem;
  font-size: 0.9rem;
}
.footer .header-logo {
  color: #fff;
  margin-bottom: 1rem;
  display: block;
  font-size: 1.5rem;
}
.footer a {
  color: #fff;
  text-decoration: underline;
}
.footer a:hover {
  color: var(--c-acc);
}
.footer h3 {
  color: #fff;
  margin-top: 0;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer p {
  color: rgba(255,255,255,.7);
  margin-bottom: 0.5em;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer li {
  margin-bottom: 0.5em;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.ft-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}
.ft-social i {
    font-size: 1.3rem;
    color: #fff;
}
.ft-social a:hover i {
    color: var(--c-acc);
}
.ft-bottom {
  text-align: center;
  color: rgba(255,255,255,.7);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* Hero */
.intro {
  text-align: center;
}
.intro h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.intro-subtitle {
  font-size: 1.25rem;
  color: var(--c-muted);
  max-width: 800px;
  margin: 0 auto 2rem;
}
.intro-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.intro-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.intro-pill {
  background: var(--c-bg-soft);
  color: var(--c-text);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Verdict Block (new) */
.verdict-pick {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
}
.verdict-pick h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}
.verdict-pick .logo-inline {
    width: 50px !important;
    height: 50px !important;
    display: block;
    margin: 0 auto;
    border-radius: 0;
}

/* Editors Pick (Featured) */
.featured {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  align-items: center;
}
.featured img {
  border-radius: var(--radius);
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}
.featured-content {
  flex-grow: 1;
}
.featured-name {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0;
    font-size: 1.8rem;
}
.featured p {
  margin-top: 0.8rem;
}
.featured-bullets {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}
.featured-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.featured-bullets i {
  color: var(--c-acc);
  font-size: 0.9em;
}

/* Compare2 (new) */
.compare2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
.compare2-item {
    padding: 1.5rem;
    text-align: center;
}
.compare2-item h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}
.compare2-item ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    color: var(--c-muted);
}
.compare2-item li {
    margin-bottom: 0.3rem;
}

/* Comparison Table */
.tbl-wrap {
  overflow-x: auto;
  margin-top: 2rem;
}
.tbl-cmp {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.tbl-cmp th, .tbl-cmp td {
  padding: 1rem;
  border: 1px solid var(--c-border);
}
.tbl-cmp th {
  background: var(--c-bg-soft);
  font-weight: 600;
  white-space: nowrap;
}
.tbl-cmp td {
  vertical-align: middle;
}
.cmp-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    white-space: nowrap;
}
.tbl-logo {
  width: 40px;
  height: 40px;
  border-radius: 0;
  flex-shrink: 0;
}
.tbl-name {
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tbl-name:hover { text-decoration: underline; }
.tbl-badge {
    background: var(--c-acc);
    color: #fff;
    padding: 0.3em 0.6em;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}


/* FAQ */
.qna-grid {
    margin-top: 2rem;
}
.qna { border-bottom: 1px solid var(--c-border); }
.qna-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-text);
}
.qna-q i { transition: transform .3s; }
.qna-q[aria-expanded="true"] i { transform: rotate(180deg); }
.qna-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s ease-in-out; }
.qna-a > div { overflow: hidden; }
.qna-a p {
  margin-top: 0;
  padding-bottom: 1.25rem;
  color: var(--c-text);
}
.qna-item.is-open .qna-a { grid-template-rows: 1fr; }


/* CTA Section */
.cta-section {
  text-align: center;
}
.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.25rem;
  color: var(--c-muted);
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  white-space: nowrap;
}
.button-acc {
  background: var(--c-acc);
  color: #fff;
  border: 1px solid var(--c-acc);
}
.button-acc:hover {
  background: var(--c-acc-dark);
  border-color: var(--c-acc-dark);
  text-decoration: none;
}
.button-out {
  border: 1px solid var(--c-acc);
  color: var(--c-acc);
  background: transparent;
}
.button-out:hover {
  background: var(--c-acc);
  color: #fff;
  text-decoration: none;
}

/* Risk Strip */
.risk-band {
  background: var(--c-dark);
  color: rgba(255,255,255,.7);
  font-size: 0.85rem;
  padding: 1rem 0;
}
.risk-band .page-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.risk-band i {
  color: var(--c-acc);
  flex-shrink: 0;
}

/* Cookie Banner */
.gdpr-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c-dark);
  color: #fff;
  padding: 1rem 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-size: 0.9rem;
}
.gdpr-bar.open {
  transform: translateY(0);
}
.gdpr-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.gdpr-content p {
  flex-grow: 1;
  margin: 0;
}
.gdpr-content p a {
  color: #fff;
  text-decoration: underline;
}
.gdpr-content p a:hover {
    color: var(--c-acc);
}
.gdpr-btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.gdpr-prefs {
    margin-top: 1.5rem;
    display: none;
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 1.5rem;
}
.gdpr-prefs.open {
    display: block;
}
.gdpr-prefs h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.gdpr-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255,255,255,.8);
}
/* Switch styles */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 20px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: var(--c-acc);
}
input:focus + .slider {
  box-shadow: 0 0 1px var(--c-acc);
}
input:checked + .slider:before {
  transform: translateX(20px);
}
.gdpr-reopen {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-dark);
    color: var(--c-acc);
    border: 1px solid var(--c-acc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 999;
}


/* Stars (Rating) */
.stars { display: flex; align-items: center; gap: 0.5rem; color: var(--c-text); }
.stars-val { font-size: 1rem; color: #f59e0b; /* Amber 500 - neutral */}
.stars-num { font-weight: 600; font-size: 0.9rem; }

/* Breadcrumbs (for sub-pages) */
.breadcrumbs {
    padding: 1rem 0;
    background: var(--c-bg-soft);
    font-size: 0.9rem;
    color: var(--c-muted);
}
.breadcrumbs a {
    color: var(--c-muted);
}
.breadcrumbs a:hover {
    color: var(--c-acc);
}

/* Byline on review/guide pages */
.byline {
    font-size: 0.9rem;
    color: var(--c-muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
    justify-content: center;
}
.byline i {
    color: var(--c-acc);
}
.editor-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2rem auto;
    padding: 1.5rem;
    max-width: 400px;
}
.editor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--c-acc);
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
.editor-profile h3 {
    margin: 0.5rem 0 0.2rem 0;
    font-size: 1.4rem;
}
.editor-role {
    font-style: italic;
    color: var(--c-muted);
    margin-bottom: 1rem;
}

/* Brand pages specific */
.bp-hero {
    padding-bottom: 1rem;
}
.bp-hero h1 {
  margin-top: 0;
  font-size: 3rem;
  text-align: center;
}
.bp-hero .byline {
    margin-bottom: 1rem;
}
.brand-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    justify-content: center;
}
.brand-hero-logo {
    width: 64px;
    height: 64px;
    border-radius: 0;
}
.brand-hero-cap {
    margin: 0;
    font-size: 0.9rem;
}
.brand-hero-cap a {
    color: var(--c-text);
    font-weight: 600;
}
.hero-one-liner {
    font-size: 1.15rem;
    color: var(--c-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.review-content h3 {
    margin-top: 2rem;
    font-size: 1.6rem;
}
.review-content ul {
    list-style: none;
    padding: 0;
    margin-left: 0;
}
.review-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}
.review-content ul i.fa-check {
    color: var(--c-acc);
    margin-top: 0.2em;
    flex-shrink: 0;
}
.review-content ul i.fa-triangle-exclamation {
     color: #f59e0b; /* Amber 500 */
     margin-top: 0.2em;
     flex-shrink: 0;
}

.alt-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.alt-card {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.alt-card .tbl-logo {
    margin-bottom: 1rem;
}
.alt-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
.alt-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Guides pages */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.guide-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}
.guide-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
  flex-grow: 1;
}
.guide-card h3 a {
  color: var(--c-text);
  text-decoration: none;
}
.guide-card h3 a:hover {
  text-decoration: underline;
}
.guide-card p {
    font-size: 0.95rem;
    color: var(--c-muted);
}
.content-body {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}
.content-body h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
}
.content-body h3 {
    font-size: 1.5rem;
    margin-top: 1.8rem;
}
.content-body ul, .content-body ol {
    margin-left: 1.8em;
    margin-bottom: 1.5em;
}
.content-body li {
    margin-bottom: 0.6em;
}
.content-body hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 2rem 0;
}
.content-body .logo-inline {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 0.3em;
    border-radius: 0;
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
  .header-nav {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }

  .header-main {
    flex-wrap: nowrap;
  }
  .header-nav {
    display: none; /* Hide nav by default on mobile */
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px; /* Adjust based on header height */
    left: 0;
    background: var(--c-bg);
    border-top: 1px solid var(--c-border);
    padding: 1rem 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  .header-nav.open { /* Show nav when open class is applied by JS */
    display: flex;
  }
  .header-link {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--c-border);
    padding: 1rem 0;
  }
  .header-link:last-child {
      border-bottom: none;
  }
  .header-burger {
    display: block; /* Show burger icon */
  }

  .intro h1 {
    font-size: 2.5rem;
  }
  .intro-subtitle {
    font-size: 1.1rem;
  }
  .intro-cta {
      flex-direction: column;
  }
  .intro-pill {
      font-size: 0.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ft-col:nth-child(even) {
    padding-left: 1rem;
  }

  .featured {
    flex-direction: column;
    text-align: center;
  }
  .featured img {
    margin-bottom: 1rem;
  }
  .featured-name {
    justify-content: center;
  }
  .featured-bullets {
    text-align: left;
  }

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

  .gdpr-content {
      flex-direction: column;
      text-align: center;
  }
  .gdpr-btns {
      justify-content: center;
      width: 100%;
  }
  .gdpr-content p {
      width: 100%;
  }

  .qna-q {
      font-size: 1rem;
  }
  .content-body {
    font-size: 1rem;
  }
  .content-body h2 {
      font-size: 1.6rem;
  }
  .content-body h3 {
      font-size: 1.3rem;
  }
  .byline {
      flex-direction: column;
      gap: 0.3rem;
  }
  .bp-hero h1 {
      font-size: 2.5rem;
  }
  .brand-hero {
      flex-direction: column;
      text-align: center;
  }
  .alt-cards {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-wrap {
    padding: 0 15px;
  }
  h1 { font-size: 1.8rem; }
  .intro h1 { font-size: 2rem; }
  .intro-subtitle { font-size: 1rem; }
  .intro-cta .button {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .ft-col {
    padding-left: 0 !important;
  }
  .tbl-cmp th, .tbl-cmp td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  .featured-name {
    font-size: 1.5rem;
  }
  .gdpr-btns .button {
    width: 100%;
    text-align: center;
  }
  .byline {
      font-size: 0.85rem;
  }
  .bp-hero h1 {
      font-size: 2rem;
  }
}
