:root {
    --accent: #e8917c;
    --accent-dark: #c66f5a;
    --dark: #2a1a1a;
    --bg: #fdf8f5;
    --bg-soft: #f5ebe3;
    --border: #e8d9cb;
    --text: #2a1a1a;
    --muted: rgba(0,0,0,.55);
    --rhythm: 88px;
    --radius: 18px;
    --shadow: 0 6px 28px rgba(0,0,0,.05);
    --font-head: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --hue-shift: -48deg;
}
*, *:before, *:after { box-sizing: border-box; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    margin: 0 0 0.5em 0;
    line-height: 1.2;
    color: var(--text);
}
h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1em 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 20px; }
img { max-width: 100%; height: auto; }

.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    border: 1px solid transparent;
    transition: all .3s ease;
    cursor: pointer;
    font-size: 1rem;
}
.button-acc {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.button-acc:hover { background-color: var(--accent-dark); border-color: var(--accent-dark); text-decoration: none; }
.button-out {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.button-out:hover { background-color: var(--accent); color: #fff; text-decoration: none; }

.page-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}
.section { 
    padding: var(--rhythm) 0;
    background-color: var(--bg);
}
.section:nth-of-type(even) { background-color: var(--bg-soft); }
.section.bg-dark { background-color: var(--dark); color: #fff; }
.section.bg-dark h1, .section.bg-dark h2 { color: #fff; }
.section-h2 { text-align: center; margin-bottom: 40px; }

.intro { text-align: center; }
.intro h1 { margin-bottom: 20px; }
.intro-sub { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; color: var(--muted); }
.intro-cta { display: flex; gap: 15px; justify-content: center; margin-bottom: 30px; }
.intro-chips { display: flex; gap: 15px; justify-content: center; }
.intro-pill { background: var(--bg-soft); padding: 5px 15px; border-radius: 99px; font-size: 0.9rem; font-weight: 500; }
.intro-pill i { color: var(--accent); margin-right: 5px; }

.header { background: var(--bg); border-bottom: 1px solid var(--border); padding: 20px 0; }
.header-inner { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 15px; }
.header-logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--text); }
.header-logo:hover { text-decoration: none; }
.header-nav { display: flex; gap: 25px; }
.header-link { color: var(--text); font-weight: 500; }
.header-burger { display: none; }

.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tbl-cmp { width: 100%; border-collapse: collapse; background-color: var(--bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.tbl-cmp th, .tbl-cmp td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.tbl-cmp th { background-color: var(--bg-soft); font-weight: 600; }
.tbl-cmp tr:last-child td { border-bottom: none; }
.tbl-name { display: flex; align-items: center; gap: 15px; }
.tbl-logo { width: 40px; height: 40px; border-radius: 8px; object-fit: contain; }
.tbl-badge { display: block; font-size: 0.8rem; background: var(--accent); color: white; padding: 2px 8px; border-radius: 99px; margin-top: 5px; text-align: center; }
.rating-stars { display: flex; align-items: center; font-size: 1.1em; }
.rating-stars .star { color: var(--border); }
.rating-stars .star.filled { color: gold; }
.rating-stars .rating-num { margin-left: 8px; font-weight: 600; font-size: 0.9em; color: var(--text); }

.metrics { display: flex; justify-content: space-around; text-align: center; background: var(--bg-soft); padding: 30px; border-radius: var(--radius); }
.metric-n { font-size: 2.5rem; font-weight: 700; color: var(--accent); line-height: 1; }
.metric-l { font-size: 1rem; color: var(--muted); margin-top: 5px; }

.featured { background: var(--bg); border: none; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; padding: 40px; }
.section.bg-dark .featured { background: var(--bg); }
.featured-badge { background: var(--accent); color: #fff; padding: 5px 12px; border-radius: 99px; font-size: 0.9rem; font-weight: 600; display: inline-block; margin-bottom: 15px; }
.featured-content h2 { margin-bottom: 10px; }
.featured-content .rating-stars { margin-bottom: 20px; }
.featured-content ul { list-style: none; padding: 0; margin: 0 0 20px 0; }
.featured-content ul li { padding-left: 25px; position: relative; margin-bottom: 10px; }
.featured-content ul li i { position: absolute; left: 0; top: 4px; color: var(--accent); }

.steps-grid.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.steps-grid .split-col h3 { border-bottom: 2px solid var(--accent); padding-bottom: 10px; margin-bottom: 20px; }
.steps-grid ul { list-style: none; padding: 0; }
.steps-grid ul li { padding-left: 25px; position: relative; margin-bottom: 15px; }
.steps-grid ul li i { position: absolute; left: 0; top: 4px; color: var(--accent); }
.steps-grid .cons i { color: #aaa; }

.glossary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.glossary-item { background: var(--bg); padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); }
.glossary-item h3 { margin-bottom: 10px; }

.qna-wrap { max-width: 800px; margin: 0 auto; }
.qna { margin-bottom: 15px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.qna-q { padding: 15px 20px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; background: var(--bg); }
.qna-q i { transition: transform 0.3s ease; }
.qna.is-open .qna-q i { transform: rotate(180deg); }
.qna-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: var(--bg-soft); }
.qna-a p { padding: 20px; margin: 0; }

.cta-section { text-align: center; }
.cta-section h2 { margin-bottom: 15px; }
.cta-section p { max-width: 600px; margin: 0 auto 30px; }

.risk-band { background: var(--bg-soft); padding: 15px 0; font-size: 0.9rem; text-align: center; color: var(--muted); }
.risk-band p { margin: 0; }
.risk-band i { margin-right: 8px; }

.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: var(--rhythm) 0 0; font-size: 0.9rem; }
.footer .page-wrap { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.ft-brand { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: #fff; margin: 0 0 10px; }
.ft-h { font-weight: 600; color: #fff; margin-bottom: 15px; }
.ft-link { display: block; margin-bottom: 10px; color: rgba(255,255,255,0.7); }
.ft-link:hover { color: #fff; }
.ft-bottom { display: flex; justify-content: space-between; padding: 20px 0; font-size: 0.8rem; }
.ft-contact-info { line-height: 1.5; }

.gdpr { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); color: #fff; padding: 20px 0; z-index: 1000; }
.gdpr-wrap { display: flex; justify-content: space-between; align-items: center; }
.gdpr-text p { margin: 0; }
.gdpr-text a { color: var(--accent); }
.gdpr-btns { display: flex; gap: 10px; }

.review-page h1 { margin-bottom: 10px; }
.breadcrumbs { margin-bottom: 20px; font-size: 0.9rem; }
.breadcrumbs a { color: var(--muted); }
.byline { color: var(--muted); font-size: 0.9rem; margin-bottom: 30px; }
.byline i { margin-right: 5px; }
.brand-hero { text-align: center; padding: 30px; background: var(--bg-soft); border-radius: var(--radius); margin-bottom: 40px; }
.brand-hero-logo { width: 64px; height: 64px; margin: 0 auto 15px; }
.brand-hero-cap { margin-bottom: 10px; color: var(--muted); }
.brand-hero-rating { margin-bottom: 20px; justify-content: center; }
.review-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
.pros-cons h3 { font-size: 1.2rem; }
.pros-cons ul { list-style: none; padding: 0; margin: 0; }
.pros-cons ul li { padding-left: 25px; position: relative; margin-bottom: 10px; }
.pros-cons .pros i { color: green; position: absolute; left: 0; top: 4px; }
.pros-cons .cons i { color: #cc6060; position: absolute; left: 0; top: 4px; }
.review-cta-bar { background: var(--bg-soft); padding: 20px; border-radius: var(--radius); text-align: center; margin-top: 30px; }
.review-sidebar h3 { margin-bottom: 15px; }
.facts-table { width: 100%; font-size: 0.9rem; }
.facts-table td { padding: 8px 0; border-bottom: 1px solid var(--border); }
.facts-table tr:last-child td { border: none; }
.facts-table td:first-child { font-weight: 600; }
.scoring-section { margin-top: 40px; }
.scoring-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.score-item { display: flex; justify-content: space-between; align-items: center; background: var(--bg-soft); padding: 10px 15px; border-radius: 8px; }
.score-value { font-weight: 700; font-size: 1.2rem; background: var(--accent); color: #fff; padding: 5px 10px; border-radius: 6px; }
.alternatives-section { margin-top: 50px; }
.alternatives-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.alt-card { background: var(--bg-soft); padding: 20px; border-radius: var(--radius); text-align: center; }
.alt-logo { width: 40px; height: 40px; margin: 0 auto 10px; }
.alt-content h3 { font-size: 1.2rem; }
.alt-content .rating-stars { justify-content: center; }
.alt-content p { font-size: 0.9rem; color: var(--muted); margin: 10px 0; min-height: 50px; }

.guides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; }
.guide-card { display: block; background: var(--bg); border: none; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; padding: 25px; color: var(--text); }
.guide-card:hover { text-decoration: none; transform: translateY(-5px); transition: all .3s ease; }
.guide-card h3 { margin-bottom: 10px; }
.guide-card p { color: var(--muted); }
.guide-card-date { font-size: 0.8rem; color: var(--muted); }

.article-page { max-width: 800px; }
.article-page h1 { line-height: 1.1; }
.article-body { margin-top: 30px; line-height: 1.7; }
.article-body p, .article-body ul, .article-body ol { margin-bottom: 1.5em; }
.article-body strong { font-weight: 700; }
.related-guides { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border); }
.related-guides h3 { margin-bottom: 15px; }

.editor-block { display: flex; gap: 20px; align-items: center; background: var(--bg-soft); padding: 20px; border-radius: var(--radius); margin: 20px 0; }
.editor-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.5rem; flex-shrink: 0; }
.editor-details h3 { margin: 0 0 5px; }
.editor-details p { margin: 0; }

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

@media (max-width: 1024px) {
    .review-layout { grid-template-columns: 1fr; }
    .review-sidebar { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .header-inner { flex-direction: row; justify-content: space-between; }
    .header-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 20px; border-top: 1px solid var(--border); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
    .header-nav.open { display: flex; }
    .header-burger { display: flex; flex-direction: column; justify-content: space-around; width: 24px; height: 24px; background: transparent; border: none; cursor: pointer; padding: 0; }
    .header-burger span { width: 24px; height: 2px; background: var(--text); border-radius: 10px; transition: all 0.3s ease; }
    .tbl-cmp thead { display: none; }
    .tbl-cmp, .tbl-cmp tbody, .tbl-cmp tr, .tbl-cmp td { display: block; width: 100%; }
    .tbl-cmp tr { margin-bottom: 15px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
    .tbl-cmp td { text-align: right; padding-left: 50%; position: relative; border-bottom: 1px solid var(--border); }
    .tbl-cmp td:before { content: attr(data-label); position: absolute; left: 15px; font-weight: 600; text-align: left; }
    .tbl-cmp td:last-child { border-bottom: 0; }
    .metrics { flex-direction: column; gap: 20px; }
    .steps-grid.split { grid-template-columns: 1fr; }
    .alternatives-grid { grid-template-columns: 1fr; }
    .scoring-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .pros-cons { grid-template-columns: 1fr; }
    .ft-bottom { flex-direction: column; text-align: center; gap: 10px; }
    .gdpr-wrap { flex-direction: column; gap: 15px; text-align: center; }
}
