
/* ========== Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --bg-1:#07150f;
    --bg-2:#0b1d15;
    --bg-3:#10281d;
    --panel:#10241b;
    --panel-2:#153225;
    --line:rgba(212,175,55,.18);
    --text:#f5f7f3;
    --muted:#b7c6bb;
    --gold:#d4af37;
    --gold-2:#f0c96a;
    --green:#00c27a;
    --green-2:#0f8f5d;
    --shadow:0 12px 35px rgba(0,0,0,.28);
    --radius:18px;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    background:
        radial-gradient(circle at 18% 18%, rgba(212,175,55,.08), transparent 28%),
        radial-gradient(circle at 82% 28%, rgba(0,194,122,.12), transparent 30%),
        radial-gradient(circle at 52% 78%, rgba(212,175,55,.06), transparent 34%),
        linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 32%, var(--bg-3) 65%, #08150f 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }

.header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: linear-gradient(135deg, rgba(7,21,15,.96), rgba(12,29,22,.96));
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px); box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 14px; }
.logo-circle {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 22px rgba(212,175,55,.24); overflow: hidden;
}
.logo-circle img { width: 40px; height: 40px; border-radius: 50%; }
.logo-text { font-size: 1.28rem; font-weight: 800; color: var(--gold-2); letter-spacing: .4px; }
.nav-links-extended { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.nav-links-extended a {
    padding: 9px 12px; border-radius: 10px; font-size: .92rem;
    color: #eef3ef; transition: .25s ease; white-space: nowrap;
}
.nav-links-extended a:hover,
.nav-links-extended a.current {
    background: rgba(212,175,55,.12); color: var(--gold-2);
    box-shadow: inset 0 0 0 1px rgba(212,175,55,.16);
}
.mobile-menu-toggle { display: none; background: transparent; border: 0; color: #fff; font-size: 1.55rem; cursor: pointer; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 24px; border-radius: 999px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .35px; font-size: .88rem;
    transition: .25s ease; border: 0; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary-top { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #132117; box-shadow: 0 8px 22px rgba(212,175,55,.24); }
.btn-green { background: linear-gradient(135deg, var(--green), var(--green-2)); color: #fff; box-shadow: 0 8px 22px rgba(0,194,122,.2); }

.main { margin-top: 84px; position: relative; z-index: 1; }
.hero { text-align: center; padding: 38px 0 54px; }
.hero h1 { font-size: 3.2rem; line-height: 1.16; font-weight: 900; margin-bottom: 24px; color: var(--gold-2); text-shadow: 0 0 22px rgba(212,175,55,.22); }
.hero-description {
    max-width: 1050px; margin: 0 auto 28px; padding: 22px 24px; border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(16,36,27,.88), rgba(11,24,18,.92));
    border: 1px solid var(--line); box-shadow: var(--shadow);
}
.hero-description p { font-size: 1.05rem; color: var(--muted); line-height: 1.88; }
.hero-description strong { color: #f6f0d0; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.btn-hero {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 220px; padding: 14px 22px; border-radius: 16px;
    font-weight: 800; font-size: .95rem; transition: .25s ease; box-shadow: var(--shadow); border: 1px solid transparent;
}
.btn-hero:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #152319; }
.btn-secondary { background: linear-gradient(135deg, #18432f, #0f2a1e); color: #f6f7f3; border-color: rgba(212,175,55,.18); }
.btn-warning { background: linear-gradient(135deg, #167a51, #0d5b3d); color: #fff; }
.hero-banner {
    margin: 0 auto 34px; max-width: 1080px; background: linear-gradient(180deg, rgba(17,45,31,.75), rgba(8,22,16,.92));
    border-radius: 24px; padding: 16px; border: 1px solid rgba(212,175,55,.16); box-shadow: var(--shadow);
}
.banner-image { width: 100%; border-radius: 18px; object-fit: cover; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 10px; }
.stat-box {
    background: linear-gradient(180deg, rgba(16,40,29,.92), rgba(8,20,15,.95));
    border: 1px solid rgba(212,175,55,.14); border-radius: 18px; padding: 22px 18px; box-shadow: var(--shadow);
}
.stat-value { display: block; font-size: 1.8rem; font-weight: 900; color: var(--gold-2); margin-bottom: 8px; }
.stat-label { color: var(--muted); font-size: .96rem; }
.section { padding: 18px 0 34px; }
.section-title { text-align: center; font-size: 2.2rem; line-height: 1.22; color: var(--gold-2); margin-bottom: 14px; font-weight: 900; }
.section-lead { max-width: 920px; margin: 0 auto 34px; text-align: center; color: var(--muted); font-size: 1.02rem; }
.advantage-grid, .review-grid, .blog-grid, .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.advantage-card, .review-card, .blog-card, .feature-card, .kpi-card, .info-card {
    background: linear-gradient(180deg, rgba(16,36,27,.92), rgba(10,22,17,.95));
    border: 1px solid rgba(212,175,55,.12); border-radius: 18px; padding: 22px; box-shadow: var(--shadow);
}
.advantage-icon {
    width: 52px; height: 52px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(0,194,122,.14));
    display: flex; align-items: center; justify-content: center; font-size: 1.45rem; margin-bottom: 14px;
    border: 1px solid rgba(212,175,55,.18);
}
.advantage-card h3, .review-card h3, .feature-card h3, .blog-card h2 {
    font-size: 1.16rem; color: #f7f7f1; margin-bottom: 12px; line-height: 1.35;
}
.advantage-card p, .review-card p, .feature-card p, .blog-card p { color: var(--muted); font-size: .98rem; line-height: 1.8; }
.advantage-list { margin-top: 14px; padding-left: 18px; color: #dbe3dd; }
.advantage-list li { margin: 8px 0; }
.rtp-table { overflow: hidden; border-radius: 18px; border: 1px solid rgba(212,175,55,.14); box-shadow: var(--shadow); }
.rtp-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr 1fr; gap: 0; background: rgba(10,22,17,.94); }
.rtp-row:nth-child(even) { background: rgba(14,31,23,.94); }
.rtp-header { background: linear-gradient(135deg, #164832, #0f2f22); }
.rtp-col { padding: 16px 14px; border-right: 1px solid rgba(212,175,55,.08); color: var(--muted); font-size: .95rem; }
.rtp-header .rtp-col { color: var(--gold-2); font-weight: 800; }
.rtp-high { color: #79efbc; font-weight: 800; }
.split-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items: center; }
.figure-card, .text-card, .steps-card, .kpi-grid, .cta-card, .article-shell, .blog-shell {
    background: linear-gradient(180deg, rgba(16,36,27,.92), rgba(10,22,17,.95));
    border: 1px solid rgba(212,175,55,.12); border-radius: 20px; box-shadow: var(--shadow);
}
.figure-card { padding: 16px; }
.figure-card img { width: 100%; border-radius: 16px; }
.text-card, .steps-card, .cta-card { padding: 24px; }
.text-card h3, .steps-card h3, .cta-card h3 { color: #f7f7f1; font-size: 1.3rem; margin-bottom: 14px; }
.text-card p, .steps-card p, .cta-card p { color: var(--muted); margin-bottom: 14px; }
.step-list { list-style: none; }
.step-list li { position: relative; padding-left: 34px; margin: 14px 0; color: #e5ece6; }
.step-list li::before {
    content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #0d1a13;
    display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .82rem;
}
.kpi-grid { padding: 22px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.kpi-card { text-align: center; padding: 18px; background: rgba(8,20,15,.45); }
.kpi-card .kpi-value { display: block; font-size: 1.7rem; font-weight: 900; color: var(--gold-2); margin-bottom: 8px; }
.kpi-card .kpi-label { color: var(--muted); font-size: .92rem; }
.faq-list { display: grid; gap: 16px; }
.faq-item {
    background: linear-gradient(180deg, rgba(16,36,27,.92), rgba(10,22,17,.95));
    border: 1px solid rgba(212,175,55,.12); border-radius: 18px; padding: 20px 22px; box-shadow: var(--shadow);
}
.faq-item h3 { color: #f7f7f1; font-size: 1.08rem; margin-bottom: 10px; }
.faq-item p { color: var(--muted); line-height: 1.8; }
.cta-section { padding: 20px 0 54px; }
.cta-card { text-align: center; padding: 34px 26px; }
.cta-card h2 { color: var(--gold-2); font-size: 2.2rem; line-height: 1.22; margin-bottom: 16px; }
.cta-card p { max-width: 860px; margin: 0 auto 24px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.page-hero { padding: 36px 0 26px; text-align: center; }
.page-hero h1 { font-size: 2.8rem; color: var(--gold-2); margin-bottom: 14px; font-weight: 900; }
.page-hero p { max-width: 900px; margin: 0 auto; color: var(--muted); }
.blog-shell { padding: 28px; }
.blog-grid { margin-top: 8px; }
.blog-card { padding: 0; overflow: hidden; }
.blog-thumb-wrap { display: block; overflow: hidden; background: #0d1d16; }
.blog-thumb { width: 100%; height: 210px; object-fit: cover; transition: transform .35s ease; }
.blog-card:hover .blog-thumb { transform: scale(1.04); }
.blog-body { padding: 20px; }
.blog-meta { color: #aab9ae; font-size: .86rem; margin-bottom: 10px; }
.blog-card h2 { font-size: 1.18rem; }
.blog-card h2 a:hover { color: var(--gold-2); }
.pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pagination a, .pagination span {
    min-width: 42px; height: 42px; padding: 0 14px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(16,36,27,.94); border: 1px solid rgba(212,175,55,.12); color: #f5f7f3;
}
.pagination span, .pagination a:hover { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #132117; font-weight: 800; }
.article-shell { padding: 30px; }
.article-meta { color: #aab9ae; font-size: .92rem; margin-bottom: 12px; }
.article-title { font-size: 2.8rem; line-height: 1.2; color: var(--gold-2); margin-bottom: 18px; font-weight: 900; }
.article-cover { width: 100%; max-height: 470px; object-fit: cover; border-radius: 18px; margin: 0 0 26px; }
.article-content { color: #e4ebe5; font-size: 1.02rem; line-height: 1.9; }
.article-content h2, .article-content h3 { color: #f6f7f3; line-height: 1.3; margin-top: 28px; margin-bottom: 12px; }
.article-content p, .article-content ul, .article-content ol { margin: 14px 0; }
.article-content a { color: var(--gold-2); }
.article-content ul, .article-content ol { padding-left: 22px; }
.footer {
    margin-top: 24px; padding: 36px 0 44px; border-top: 1px solid rgba(212,175,55,.12);
    background: linear-gradient(180deg, rgba(7,21,15,.2), rgba(7,21,15,.58));
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; }
.footer h3 { color: var(--gold-2); margin-bottom: 14px; font-size: 1.1rem; }
.footer p, .footer li, .footer a { color: var(--muted); font-size: .95rem; line-height: 1.8; }
.footer ul { list-style: none; }
.footer-note { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(212,175,55,.08); text-align: center; color: #96a89b; font-size: .9rem; }
@media (max-width: 1100px) {
    .nav-links-extended { display: none; }
    .mobile-menu-toggle { display: inline-block; }
    .hero h1, .article-title { font-size: 2.55rem; }
    .advantage-grid, .review-grid, .blog-grid, .feature-grid, .hero-stats, .kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .split-grid, .footer-grid { grid-template-columns: 1fr; }
    .rtp-row { grid-template-columns: 1fr; }
    .rtp-col { border-right: 0; border-bottom: 1px solid rgba(212,175,55,.08); }
}
@media (max-width: 768px) {
    .main { margin-top: 78px; }
    .nav { flex-wrap: wrap; }
    .nav-actions { width: 100%; justify-content: center; }
    .hero { padding: 28px 0 40px; }
    .hero h1, .page-hero h1, .article-title { font-size: 2rem; }
    .hero-description { padding: 18px; }
    .btn-hero { width: 100%; min-width: 0; }
    .advantage-grid, .review-grid, .blog-grid, .feature-grid, .hero-stats, .kpi-grid { grid-template-columns: 1fr; }
    .article-shell, .blog-shell, .cta-card, .text-card, .steps-card { padding: 20px; }
}

/* reviews start */
.review-distribution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.distribution-card {
    background: linear-gradient(180deg, rgba(16,36,27,.92), rgba(10,22,17,.95));
    border: 1px solid rgba(212,175,55,.12);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: var(--shadow);
}

.distribution-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: #f3f6f2;
    font-weight: 700;
}

.distribution-bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    overflow: hidden;
}

.distribution-bar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.user-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.user-review-card {
    background: linear-gradient(180deg, rgba(16,36,27,.92), rgba(10,22,17,.95));
    border: 1px solid rgba(212,175,55,.12);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.user-review-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.user-review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212,175,55,.2);
    background: #0f1d16;
}

.user-review-head {
    flex: 1;
}

.user-review-name {
    font-weight: 800;
    color: #f5f7f3;
    margin-bottom: 4px;
}

.user-review-meta {
    color: var(--muted);
    font-size: .86rem;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.user-review-rating {
    font-weight: 800;
    color: var(--gold-2);
    white-space: nowrap;
}

.user-review-card h3 {
    font-size: 1.08rem;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #f7f7f1;
}

.user-review-card p {
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.8;
}

.review-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-topic-card {
    background: linear-gradient(180deg, rgba(16,36,27,.92), rgba(10,22,17,.95));
    border: 1px solid rgba(212,175,55,.12);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.review-topic-card h3 {
    color: #f7f7f1;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.review-topic-score {
    color: var(--gold-2);
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.review-topic-card p {
    color: var(--muted);
    line-height: 1.8;
}

.featured-reviews-list {
    display: grid;
    gap: 18px;
}

.featured-review-card {
    background: linear-gradient(180deg, rgba(16,36,27,.92), rgba(10,22,17,.95));
    border: 1px solid rgba(212,175,55,.12);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.featured-review-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: .9rem;
}

.featured-review-card h3 {
    color: #f7f7f1;
    margin-bottom: 12px;
    font-size: 1.16rem;
}

.featured-review-card p {
    color: var(--muted);
    line-height: 1.9;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.review-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(16,36,27,.92);
    border: 1px solid rgba(212,175,55,.12);
    color: #eef4ef;
    font-size: .92rem;
    box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
    .user-reviews-grid,
    .review-topic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .user-reviews-grid,
    .review-topic-grid {
        grid-template-columns: 1fr;
    }
}
/* reviews end */