:root {
  --c-acc:      #6b8e5a;
  --c-acc-dark: #4f6e41;
  --c-dark:     #1c2018;
  --c-bg:       #fbfaf5;
  --c-bg-soft:  #f0eee3;
  --c-border:   #d8d4c0;
  --c-text:     #1c1f17;
  --c-muted:    rgba(0,0,0,.55);
  --rhythm:     88px;
  --radius:     16px;
  --shadow:     0 4px 24px rgba(28,32,24,.08);
  --ff-h:       'Manrope', system-ui, -apple-system, sans-serif;
  --ff-b:       'Manrope', system-ui, -apple-system, sans-serif;
  --hue-shift:                24deg;
}

.button-acc, .intro-pill, .tbl-badge { filter: hue-rotate(var(--hue-shift)); }

.tbl-cmp, .featured, .step-card, .qna, .brand-hero, .guide-card, .alt-card { background: var(--c-bg); border: 1px solid var(--c-border); box-shadow: none; }

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--ff-b);
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 1rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-acc); text-decoration: none; }
a:hover { text-decoration: underline; }
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: 3em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.6em; }
h4 { font-size: 1.2em; }
p, ul, ol { margin-bottom: 1em; }
ul, ol { list-style-position: inside; }
.page-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    padding: var(--rhythm) 0;
}

.section:nth-child(odd) { background-color: var(--c-dark); color: var(--c-bg); } .section:nth-child(odd) h2 { color: var(--c-bg); }

/* Typography */
.stars-glyph { color: var(--c-acc); font-size: 1.1em; }
.byline {
    font-size: 0.9em;
    color: var(--c-muted);
    margin-bottom: 1.5em;
    display: flex;
    align-items: center;
    gap: 0.75em;
}
.byline .fa-regular { color: var(--c-acc); }

/* Header & Nav */
.header {
    background: var(--c-bg);
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header .page-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo {
    font-family: var(--ff-h);
    font-size: 1.8em;
    color: var(--c-dark);
    text-decoration: none;
    font-weight: 800;
}
.header-nav {
    display: flex;
    gap: 1.5rem;
}
.header-link {
    color: var(--c-text);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s;
}
.header-link:hover {
    color: var(--c-acc);
    text-decoration: none;
}
.header-burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--c-dark);
}

/* Hero */
.hero {
    text-align: center;
    padding-top: var(--rhythm);
    padding-bottom: var(--rhythm);
    background-color: var(--c-dark);
    color: var(--c-bg);
}
.hero h1, .hero p { color: var(--c-bg); }
.hero-h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
}
.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 2em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.intro-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2em;
}
.intro-pill {
    display: inline-block;
    background: var(--c-acc);
    color: #fff;
    padding: 0.5em 1em;
    border-radius: var(--radius);
    font-size: 0.9em;
    margin: 0.5em;
}

.hero-inner {
    text-align: left;
    padding-bottom: 3rem;
}
.hero-inner h1 {
    font-size: 2.8em;
    margin-bottom: 0.3em;
}
.hero-inner .button {
    margin-top: 1.5rem;
}
.breadcrumb {
    font-size: 0.9em;
    color: var(--c-muted);
    margin-bottom: 1.5em;
}
.breadcrumb a {
    color: var(--c-muted);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb span {
    font-weight: 500;
    color: var(--c-bg);
}
.brand-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--c-bg);
}
.brand-hero-logo {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    transition: transform 0.3s ease;
}
.brand-hero-cap a { color: var(--c-bg); }
.rating-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1em;
}
.rating-block .stars-glyph {
    color: var(--c-bg);
}
.rating-block .tbl-badge {
    background: var(--c-acc);
    color: #fff;
    padding: 0.3em 0.8em;
    border-radius: var(--radius);
    font-size: 0.8em;
}
.content-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.content-section h2, .content-section h3 {
    margin-top: 1.5em;
    margin-bottom: 1em;
}

.logo-inline {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-right: 0.3em;
    border-radius: 4px;
}

/* Featured Pick */
.featured {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    border-radius: var(--radius);
}
.featured-content {
    flex: 1;
}
.featured-content .tbl-badge {
    display: inline-block;
    background: var(--c-acc);
    color: #fff;
    padding: 0.4em 1em;
    border-radius: var(--radius);
    font-size: 0.9em;
    margin-bottom: 1em;
}
.featured-content h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: var(--c-dark);
}
.featured-one-liner {
    font-size: 1.1em;
    color: var(--c-muted);
    margin-bottom: 1em;
}
.featured-content ul {
    list-style: none;
    margin-bottom: 1.5em;
}
.featured-content ul li {
    margin-bottom: 0.5em;
    color: var(--c-text);
}
.featured-content ul li i {
    color: var(--c-acc);
    margin-right: 0.5em;
}
.featured-logo {
    text-align: center;
}
.featured-logo img {
    width: 120px;
    height: 120px;
    margin: 0 auto 1em;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
}
.featured-logo .stars-glyph {
    font-size: 1.3em;
}

/* Compare2 Block */
.top2-compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2em;
}
.top2-card {
    padding: 2rem;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background-color: var(--c-bg);
    color: var(--c-text);
}
.top2-card h3 {
    color: var(--c-dark);
    margin-bottom: 0.5em;
}
.top2-card ul {
    list-style: none;
    margin-bottom: 1.5em;
}
.top2-card ul li {
    margin-bottom: 0.5em;
    color: var(--c-text);
}
.top2-card ul li i {
    color: var(--c-acc);
    margin-right: 0.5em;
}

/* Besti (Best For) Block */
.top-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2em;
}
.top-for-card {
    padding: 1.5rem;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background-color: var(--c-bg);
    color: var(--c-text);
}
.top-for-card h3 {
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 0.5em;
}
.top-for-card p {
    color: var(--c-text);
    font-size: 0.95em;
}
.top-for-card strong {
    color: var(--c-acc);
}

/* Comparison Table */
.tbl-wrap {
    overflow-x: auto;
    margin-bottom: 2em;
}
.tbl-cmp {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-bg);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2em;
    min-width: 700px;
}
.tbl-cmp th, .tbl-cmp td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}
.tbl-cmp th {
    background: var(--c-bg-soft);
    font-weight: 600;
    color: var(--c-dark);
}
.tbl-cmp td {
    color: var(--c-text);
}
.tbl-cmp tbody tr:last-child td {
    border-bottom: none;
}
.tbl-logo {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 0.5em;
    border-radius: 6px;
    border: 1px solid var(--c-border);
}
.tbl-cmp a {
    color: var(--c-dark);
    font-weight: 600;
}
.tbl-cmp a:hover {
    color: var(--c-acc);
}
.tbl-badge {
    display: inline-block;
    background: var(--c-acc);
    color: #fff;
    padding: 0.2em 0.6em;
    border-radius: var(--radius);
    font-size: 0.75em;
    margin-left: 0.5em;
    vertical-align: middle;
}

/* Pros/Cons Grid */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2em;
    margin-bottom: 2em;
}
.pros-column, .cons-column {
    background-color: var(--c-bg-soft);
    padding: 1.5rem;
    border-radius: var(--radius);
}
.pros-column h3, .cons-column h3 {
    color: var(--c-dark);
    margin-bottom: 1em;
}
.pros-column ul, .cons-column ul {
    list-style: none;
}
.pros-column li, .cons-column li {
    margin-bottom: 0.5em;
}
.pros-column i {
    color: var(--c-acc);
    margin-right: 0.5em;
}
.cons-column i {
    color: #e57373;
    margin-right: 0.5em;
}

/* Legal text */
.legal-content h2 { margin-top: 2em; }
.legal-content h3 { margin-top: 1.5em; }

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2em;
}
.guide-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    box-shadow: none;
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
    color: var(--c-text);
}
.guide-card:hover {
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}
.guide-card h3 {
    color: var(--c-dark);
    margin-bottom: 0.5em;
}
.guide-card p {
    font-size: 0.95em;
    color: var(--c-muted);
}
.guide-card .read-more {
    display: inline-flex;
    align-items: center;
    color: var(--c-acc);
    font-weight: 600;
    margin-top: 1em;
}
.guide-card .read-more i {
    margin-left: 0.5em;
}

.guide-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-top: 2em;
    margin-bottom: 2em;
}

.suggestion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2em;
}
.suggestion-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    box-shadow: none;
    border-radius: var(--radius);
    padding: 2rem;
    color: var(--c-text);
    transition: transform 0.2s, box-shadow 0.2s;
}
.suggestion-card:hover {
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}
.suggestion-card h3 {
    color: var(--c-dark);
    margin-bottom: 0.5em;
}
.suggestion-card p {
    color: var(--c-muted);
}

/* FAQ */
.qna { border-bottom: 1px solid var(--c-border); padding: 1rem 0; }
.qna-q { font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.qna-q::after { content: '+'; font-size: 1.5em; transition: transform .2s; }
.qna[open] > .qna-q::after { transform: rotate(45deg); }
.qna-a { margin-top: 1rem; color: var(--c-muted); }

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5em;
}
.newsletter-form input[type="email"] {
    padding: 0.8em 1.2em;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    font-size: 1em;
    flex-grow: 1;
    max-width: 400px;
    background-color: var(--c-bg);
    color: var(--c-text);
}
.newsletter-form button {
    white-space: nowrap;
}

/* Call to Action (CTA) Section */
.cta-section {
    text-align: center;
    background-color: var(--c-bg-soft);
    padding-top: var(--rhythm);
    padding-bottom: var(--rhythm);
}
.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}
.cta-section p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
    color: var(--c-muted);
}
.cta-section .button {
    font-size: 1.1em;
    padding: 0.8em 1.8em;
}

/* Risk Strip */
.risk-band {
    background: var(--c-dark);
    color: var(--c-bg);
    padding: 1rem 0;
    font-size: 0.85em;
    text-align: center;
}
.risk-band .page-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8em;
}
.risk-band i {
    color: #e57373;
    font-size: 1.2em;
}

/* Footer */
.footer {
    background: var(--c-dark);
    color: var(--c-bg);
    padding: var(--rhythm) 0;
    font-size: 0.9em;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 2rem;
}
.footer .header-logo {
    color: var(--c-bg);
    margin-bottom: 1em;
    display: block;
}
.footer h6 {
    color: var(--c-bg);
    font-size: 1.1em;
    margin-bottom: 1em;
}
.footer ul {
    list-style: none;
}
.footer ul li {
    margin-bottom: 0.5em;
}
.footer ul li a {
    color: var(--c-bg);
    text-decoration: none;
}
.footer ul li a:hover {
    text-decoration: underline;
}
.footer p {
    color: var(--c-bg);
}
.footer address {
    font-style: normal;
    margin-top: 1em;
}
.footer address a {
    color: var(--c-bg);
}

/* Cookie Banner */
.consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--c-dark);
    color: var(--c-bg);
    padding: 1.5rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1001;
    display: none;
}
.consent-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.consent-content p {
    flex: 1;
    margin: 0;
    line-height: 1.4;
}
.consent-content p a {
    color: var(--c-acc);
}
.consent-btns {
    display: flex;
    gap: 1rem;
}
.consent-prefs {
    display: none;
    width: 100%;
    background-color: var(--c-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
    color: var(--c-text);
}
.consent-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    cursor: pointer;
}
.consent-row input {
    margin-right: 0.8rem;
    /* Basic checkbox styling, could be enhanced */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--c-border);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
    top: 2px;
    background-color: var(--c-bg-soft);
}
.consent-row input:checked {
    background-color: var(--c-acc);
    border-color: var(--c-acc);
}
.consent-row input:checked::after {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #fff;
    font-size: 11px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.consent-prefs .button-acc {
    margin-top: 1rem;
    width: auto;
}

.consent-reopen {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--c-dark);
    color: var(--c-bg);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    border: none;
    z-index: 1000;
}
.consent-reopen i {
    color: var(--c-bg);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.75em 1.5em;
    border-radius: var(--radius);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    border: 1px solid transparent;
}
.button-acc {
    background: var(--c-acc);
    color: #fff;
}
.button-acc:hover {
    background: var(--c-acc-dark);
    color: #fff;
    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;
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 500;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1.5em;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background-color: var(--c-bg-soft);
    color: var(--c-text);
}
.contact-form textarea {
    resize: vertical;
}
.contact-info p {
    margin-bottom: 1em;
}
.contact-info address {
    margin-top: 2em;
}

/* Editor Profile */
.editor-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--c-bg-soft);
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 3rem;
}
.editor-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-color: var(--c-acc-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 1rem;
}
.editor-profile h3 {
    margin-bottom: 0.2em;
    color: var(--c-dark);
}
.editor-profile .editor-role {
    color: var(--c-muted);
    font-weight: 500;
    margin-bottom: 1.5em;
}
.editor-profile p {
    max-width: 600px;
    color: var(--c-text);
    margin: 0 auto;
}

/* Alternatives Grid */
.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2em;
}
.alt-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    box-shadow: none;
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.alt-card h3 {
    color: var(--c-dark);
    margin-bottom: 0.5em;
}
.alt-card p {
    color: var(--c-muted);
    flex-grow: 1;
}
.alt-card .button {
    margin-top: 1em;
    align-self: flex-start;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-h1 { font-size: 2.8em; }
    .hero-subtitle { font-size: 1.1em; }
    .featured { flex-direction: column; text-align: center; }
    .featured-logo { margin-bottom: 2rem; }
    .ft-grid { grid-template-columns: 1fr 1fr; }
    .footer .col-brand { grid-column: span 2; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--c-bg);
        border-bottom: 1px solid var(--c-border);
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    }
    .header-nav.open {
        display: flex;
    }
    .header-link {
        text-align: center;
        padding: 0.8rem 0;
    }
    .header-burger {
        display: block;
    }
    .hero-h1 { font-size: 2.2em; }
    .hero-subtitle { font-size: 1em; }
    .intro-cta { flex-direction: column; align-items: center; }
    .ft-grid { grid-template-columns: 1fr; }
    .footer .col-brand { grid-column: span 1; text-align: center; }
    .footer h6 { text-align: center; margin-top: 1.5em; }
    .footer ul { text-align: center; }
    .newsletter-form { flex-direction: column; align-items: center; }
    .newsletter-form input { max-width: 100%; }
    .consent-content { flex-direction: column; text-align: center; }
    .consent-btns { margin-top: 1rem; justify-content: center; width: 100%; }
    .pros-cons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-h1 { font-size: 1.8em; }
    .tbl-cmp { min-width: 100%; } /* Ensure table scrolls horizontally rather than squishes too much */
}
