:root {
    --brand: #e8917c;
    --brand-dark: #c66f5a;
    --shade: #2a1a1a;
    --paper: #fdf8f5;
    --paper-soft: #f5ebe3;
    --rule: #e8d9cb;
    --ink: #2a1a1a;
    --ink-soft: rgba(0,0,0,.55);
    --space: 88px;
    --corner: 18px;
    --glow: 0 6px 28px rgba(0,0,0,.05);
    --type-head: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
    --type-body: 'Inter', system-ui, -apple-system, sans-serif;
    --hue-shift: -40deg;
}

body {
    margin: 0;
    font-family: var(--type-body);
    background-color: var(--paper-soft);
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}

.page-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-wrap-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--space) 0;
    background-color: var(--paper-soft);
}

.section.intro,
.section.qna-section,
.section.call-to-action-section {
    background-color: var(--paper);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--type-head);
    color: var(--shade);
    margin-top: 0;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h1 { font-size: 3em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.5em; }
h4 { font-size: 1.25em; }

p {
    margin-top: 0;
    margin-bottom: 1em;
}

a {
    color: var(--brand);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--brand-dark);
}

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

.header {
    background: var(--paper);
    padding: 20px 0;
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-family: var(--type-head);
    font-size: 1.5em;
    font-weight: 700;
    color: var(--ink);
}

.header-nav {
    display: flex;
    gap: 32px;
}

.header-link {
    font-weight: 500;
    color: var(--ink);
}

.header-cta {
    display: block;
}

.header-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.header-burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--ink);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.footer {
    background: var(--shade);
    color: rgba(255,255,255,0.7);
    padding: 60px 0;
}

.footer h4 {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.ft-logo {
    font-family: var(--type-head);
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    display: block;
}

.ft-desc, .ft-copy {
    font-size: 0.9em;
}

.ft-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-col li {
    margin-bottom: 10px;
}

.ft-col a {
    color: rgba(255,255,255,0.7);
}

.ft-col a:hover {
    color: #fff;
}

.intro {
    text-align: center;
    padding-top: calc(var(--space) * 1.5);
}

.intro h1 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro .subtitle {
    font-size: 1.25em;
    color: var(--ink-soft);
    max-width: 700px;
    margin: 0 auto 1.5em;
}

.intro-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.intro-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.intro-pill {
    background: var(--paper-soft);
    border: 1px solid var(--rule);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.9em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.intro-pill .icon { color: var(--brand); filter: hue-rotate(-40deg); }

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.metric-n {
    font-family: var(--type-head);
    font-size: 3em;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: var(--brand);
    filter: hue-rotate(-40deg);
}

.metric-l {
    font-size: 0.95em;
    color: var(--ink-soft);
}

.featured {
    background: var(--paper);
    border-radius: var(--corner);
    box-shadow: var(--glow);
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.featured-content {
    flex: 1 1 500px;
}

.featured-content ul {
    list-style: none;
    padding-left: 0;
}
.featured-content li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.5em;
}
.featured-content li .icon {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--brand);
    filter: hue-rotate(-40deg);
}

.featured-action {
    flex-shrink: 0;
}

.tbl-wrap {
    overflow-x: auto;
}

.tbl-cmp {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.tbl-cmp th, .tbl-cmp td {
    padding: 16px;
    vertical-align: middle;
    border-bottom: 1px solid var(--rule);
}

.tbl-cmp th {
    font-family: var(--type-head);
    font-weight: 600;
    color: var(--ink-soft);
}

.tbl-cmp .tbl-name {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
}

.tbl-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.tbl-badge {
    background: var(--brand);
    filter: hue-rotate(-40deg);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: 700;
    display: inline-block;
    margin-top: 4px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--paper);
    border-radius: var(--corner);
    box-shadow: var(--glow);
    padding: 30px;
    position: relative;
}

.step-num {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--brand);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--type-head);
    font-weight: 700;
    font-size: 1.25em;
    filter: hue-rotate(-40deg);
}

.step-card h3 {
    margin-top: 20px;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.guide-card {
    background: var(--paper);
    padding: 24px;
    border-radius: var(--corner);
    box-shadow: var(--glow);
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.guide-card h3 {
    color: var(--ink);
}

.guide-card p {
    color: var(--ink-soft);
}

.guide-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.qna {
    background: var(--paper);
    border-radius: var(--corner);
    box-shadow: var(--glow);
    margin-bottom: 16px;
    overflow: hidden;
}

.qna-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.qna-q h3 {
    margin: 0;
    font-size: 1.15em;
    color: var(--ink);
}

.qna-q .icon {
    transition: transform 0.3s ease;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
}

.qna.is-open .qna-q .icon {
    transform: rotate(180deg);
}

.qna-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    padding: 0 20px;
}

.qna-a p {
    padding-bottom: 20px;
    margin: 0;
    line-height: 1.6;
    color: var(--ink-soft);
}

.qna.is-open .qna-a {
    max-height: 500px;
    opacity: 1;
}

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

.cta-content p {
    font-size: 1.15em;
    color: var(--ink-soft);
}

.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 99px;
    font-family: var(--type-body);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.button-acc {
    background-color: var(--brand);
    filter: hue-rotate(-40deg);
    color: #fff;
    border-color: var(--brand);
}

.button-acc:hover {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

.button-out {
    background-color: transparent;
    color: var(--brand);
    border-color: var(--brand);
}

.button-out:hover {
    background-color: var(--brand);
    color: #fff;
}

.risk-band {
    background: var(--shade);
    color: rgba(255,255,255,0.8);
    border-radius: var(--corner);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9em;
}

.risk-band p {
    margin: 0;
}

.risk-band .icon {
    color: #ffc107;
    flex-shrink: 0;
}

.section-risk {
    padding-bottom: var(--space);
}

.gdpr {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--shade);
    color: #fff;
    padding: 20px 0;
    z-index: 1000;
}

.gdpr .page-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.gdpr p {
    margin: 0;
}

.gdpr a {
    color: #fff;
    text-decoration: underline;
}

.gdpr-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.gdpr-reopen {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: var(--shade);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--glow);
    z-index: 999;
}

.review-page .intro {
    text-align: left;
    padding-top: var(--space);
}

.breadcrumbs {
    font-size: 0.9em;
    color: var(--ink-soft);
    margin-bottom: 24px;
}

.breadcrumbs a {
    color: var(--ink-soft);
}
.breadcrumbs .sep {
    margin: 0 8px;
}

.byline {
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}
.byline .icon {
    font-size: 1.25em;
}

.brand-hero {
    background-color: var(--paper-soft);
    padding: 24px;
    border-radius: var(--corner);
    display: flex;
    align-items: center;
    gap: 24px;
}
.brand-hero-logo {
    width: 64px;
    height: 64px;
}
.brand-hero-content {
    flex-grow: 1;
}
.brand-hero-cap {
    margin: 0;
    color: var(--ink-soft);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pros li, .cons li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
}
.pros li .icon, .cons li .icon {
    position: absolute;
    left: 0;
    top: 2px;
}
.pros .icon {
    color: #28a745;
}
.cons .icon {
    color: #dc3545;
}


.review-body { max-width: 800px; }
.facts-table {
    background: var(--paper-soft);
    border-radius: var(--corner);
    padding: 24px;
    margin-bottom: 40px;
}
.facts-table h3 { margin-top:0; }
.facts-table ul {
    list-style: none; padding: 0; margin: 0;
}
.facts-table li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--rule);
}
.facts-table li:last-child { border-bottom: none; }
.facts-table li span:first-child { font-weight: 600; }
.facts-table li span:last-child { text-align: right; color: var(--ink-soft); }

.logo-inline {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin: 0 4px;
}

.scoring-section { margin: 60px 0; }
.scoring-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.score-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.score-item span:first-child {
    flex-basis: 250px;
    flex-shrink: 0;
    font-weight: 500;
}
.score-bar {
    flex-grow: 1;
    height: 24px;
    background: var(--paper-soft);
    border-radius: 4px;
    position: relative;
    background-color: var(--brand);
    color: #fff;
    text-align: right;
    padding-right: 8px;
    line-height:24px;
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.alt-card {
    background: var(--paper);
    padding: 24px;
    border-radius: var(--corner);
    box-shadow: var(--glow);
    text-align: center;
}
.alt-card-header {
    margin-bottom: 16px;
}
.alt-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}
.alt-card p {
    color: var(--ink-soft);
    font-size: 0.9em;
    min-height: 40px;
}
.alt-card .button {
    width: 100%;
}

.stars {
    display: flex;
    align-items: center;
    font-size: 1.25em;
    color: #ffc107;
}
.stars span { margin-right: 2px; }
.stars .empty { color: #ccc; }
.stars .rating-num {
    font-family: var(--type-body);
    font-size: 0.9em;
    font-weight: 500;
    margin-left: 8px;
    color: var(--ink);
}
.stars .half {
    position: relative;
    display: inline-block;
}
.stars .half::before {
    content: '\2605';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
}


.guides-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.editor-bio {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--paper-soft);
    padding: 24px;
    border-radius: var(--corner);
    margin: 40px 0;
}
.editor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--brand);
    filter: hue-rotate(-40deg);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-family: var(--type-head);
    font-weight: 700;
    flex-shrink: 0;
}
.editor-text h3 { margin: 0 0 4px; }
.editor-text h4 { margin: 0 0 12px; color: var(--ink-soft); font-weight: 500; font-size: 1em; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--rule);
    border-radius: 8px;
    background: #fff;
    font-family: var(--type-body);
}

.cta-grid-404 {
    display: flex; 
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
}


@media (max-width: 1024px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    .page-wrap { padding: 0 20px; }
    .page-wrap-small { padding: 0 20px; }
}

@media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.75em; }
    .header-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
    }
    .header-nav.is-open {
        left: 0;
    }
    .header-link {
        font-size: 1.5em;
    }
    .header-cta {
        display: none;
    }

    .header-burger {
        display: block;
    }
    
    .header-burger.is-open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .header-burger.is-open span:nth-child(2) {
        opacity: 0;
    }
    .header-burger.is-open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .intro-cta {
        flex-direction: column;
    }

    .pros-cons-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .gdpr .page-wrap {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8em; }
    .featured { padding: 24px; }
    .brand-hero { flex-direction: column; text-align: center; }
}
