:root {
    --primary: #1a6b3c;
    --primary-dark: #134d2b;
    --primary-light: #e8f5ee;
    --accent: #f5a623;
    --accent-dark: #d4881a;
    --text: #1a1a2e;
    --text-secondary: #5a6475;
    --bg: #f8f9fa;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 2px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
    --radius: 12px;
    --radius-sm: 6px;
    --star-color: #f5a623;
    --badge-new: #3b82f6;
    --badge-verified: #1a6b3c;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-wrap: break-word; /* Ð”Ð¾Ð±Ð°Ð²ÑŒ Ð²Ð¾Ñ‚ ÑÑ‚Ð¾ */
    word-wrap: break-word;     /* Ð˜ ÑÑ‚Ð¾ Ð´Ð»Ñ Ð½Ð°Ð´ÐµÐ¶Ð½Ð¾ÑÑ‚Ð¸ */
}

/* === COOKIE BANNER === */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 9999;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
#cookie-banner a { color: var(--accent); text-decoration: underline; }
#cookie-accept {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s;
}
#cookie-accept:hover { background: var(--primary-dark); }

/* === AFFILIATE NOTICE === */
.affiliate-notice {
    background: #fff8e1;
    border-left: 4px solid var(--accent);
    padding: 10px 20px;
    font-size: 0.82rem;
    color: #7a6200;
    text-align: center;
}

/* === HEADER === */
header {
    background: var(--white);
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}
.header-top {
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.78rem;
    padding: 5px 0;
    text-align: center;
    letter-spacing: 0.02em;
}
.header-top a { color: var(--accent); font-weight: 700; text-decoration: none; }
.header-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 800;
}
.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}


.logo-sub {
    font-size: 0.65rem;
    color: var(--text-secondary);
    display: block;
    margin-top: -4px;
    font-weight: 400;
}
nav { display: flex; align-items: center; gap: 6px; }
nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}
nav a:hover { background: var(--primary-light); color: var(--primary); }
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.78rem;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}
.lang-btn.active, .lang-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.burger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* === HERO === */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2d9d5f 100%);
    color: #fff;
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.hero-desc {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 28px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hero-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}
.hero-stat span { font-size: 0.85rem; opacity: 0.85; }
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(245,166,35,0.45);
    transition: all 0.2s;
    animation: pulse-cta 2.5s infinite;
}
.hero-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245,166,35,0.55);
}
@keyframes pulse-cta {
    0%,100% { box-shadow: 0 4px 24px rgba(245,166,35,0.45); }
    50% { box-shadow: 0 4px 36px rgba(245,166,35,0.7); }
}
.hero-bonus-note {
    margin-top: 14px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* === MAIN LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.main-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    padding: 36px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* === BREADCRUMB === */
.breadcrumb {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 10px 0;
    margin-bottom: 4px;
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb span { margin: 0 6px; }

/* === SUMMARY CARD === */
.summary-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    margin-bottom: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.summary-logo-wrap { flex-shrink: 0; text-align: center; width: 90px; }
.summary-logo-wrap img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: contain;
    background: #fff;
    padding: 4px;
}
.summary-brand { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.summary-tagline { font-size: 0.85rem; color: var(--text-secondary); margin-top: 2px; }
.summary-score-wrap { display: flex; align-items: flex-start; gap: 16px; flex: 1; min-width: 240px; }
.score-big {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    flex-shrink: 0;
}
.score-stars { font-size: 1.4rem; color: var(--star-color); display: block; }
.score-count { font-size: 0.8rem; color: var(--text-secondary); }
.score-bars { flex: 1; }
.score-bar-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    margin-bottom: 4px;
}
.score-bar-label { width: 32px; color: var(--text-secondary); flex-shrink: 0; }
.score-bar-track {
    flex: 1;
    height: 7px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}
.score-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    transition: width 1s ease;
}
.score-bar-num { width: 24px; text-align: right; font-weight: 700; color: var(--text-secondary); flex-shrink: 0; font-size: 0.75rem; }
.summary-cta-wrap { width: 100%; text-align: center; margin-top: 4px; }
.btn-cta {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(245,166,35,0.35);
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}
.btn-cta-note { font-size: 0.78rem; color: var(--text-secondary); margin-top: 8px; }
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f5ee;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 8px;
}

/* === SECTION TITLES === */
.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}
.section-subtitle {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* === FILTER BAR === */
.filter-bar {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px 20px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.filter-label { font-size: 0.85rem; font-weight: 700; color: var(--text-secondary); margin-right: 4px; }
.filter-chip {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.filter-chip:hover { border-color: var(--primary); color: var(--primary); }
.filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.filter-sort {
    margin-left: auto;
    font-size: 0.82rem;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    background: var(--white);
    cursor: pointer;
    outline: none;
}

/* === REVIEW CARDS === */
#reviews-list { display: flex; flex-direction: column; gap: 16px; }

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
    transition: box-shadow 0.2s;
    border: 1px solid var(--border);
    animation: fadeIn 0.4s ease;
}
.review-card:hover { box-shadow: var(--shadow-lg); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--primary-light);
}
.review-meta { flex: 1; }
.review-author { font-weight: 700; font-size: 1rem; color: var(--text); }
.review-date-location { font-size: 0.78rem; color: var(--text-secondary); margin-top: 2px; }
.review-score {
    font-size: 1rem;
    color: var(--star-color);
    font-weight: 700;
    white-space: nowrap;
}
.review-score-num { font-size: 0.85rem; color: var(--text-secondary); font-weight: 600; }
.review-title { font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.review-body { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }
.review-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.review-tag {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.73rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
}
.review-helpful {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.helpful-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.78rem;
    padding: 3px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
}
.helpful-btn:hover { border-color: var(--primary); color: var(--primary); }
.verified-purchase {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
}

/* === LOAD MORE === */
#load-more-btn {
    display: block;
    width: 100%;
    margin: 20px 0;
    padding: 14px;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}
#load-more-btn:hover { background: var(--primary); color: #fff; }
#load-more-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* === WRITE REVIEW FORM === */
.write-review-section {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    margin-top: 32px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); background: #fff; }
.form-group textarea { min-height: 110px; resize: vertical; }
.star-rating-input { display: flex; gap: 6px; font-size: 1.8rem; cursor: pointer; }
.star-rating-input span { color: #ccc; transition: color 0.15s; }
.star-rating-input span.active { color: var(--star-color); }
.form-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 13px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}
.form-submit:hover { background: var(--primary-dark); }
.form-msg { margin-top: 12px; font-size: 0.9rem; font-weight: 600; display: none; }
.form-msg.success { color: var(--primary); }
.form-msg.error { color: #e53e3e; }

/* === INFO SECTIONS === */
.info-section {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    margin-bottom: 24px;
}
.info-section h2 { font-size: 1.25rem; font-weight: 800; margin-bottom: 14px; color: var(--text); }
.info-section p { font-size: 0.93rem; color: var(--text-secondary); margin-bottom: 10px; line-height: 1.7; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px; }
.pros, .cons {
    background: var(--bg);
    border-radius: 8px;
    padding: 14px;
}
.pros h4 { color: var(--primary); font-size: 0.9rem; margin-bottom: 8px; }
.cons h4 { color: #e53e3e; font-size: 0.9rem; margin-bottom: 8px; }
.pros ul, .cons ul { list-style: none; }
.pros ul li, .cons ul li { font-size: 0.85rem; padding: 3px 0; color: var(--text-secondary); }
.pros ul li::before { content: 'âœ“ '; color: var(--primary); font-weight: 700; }
.cons ul li::before { content: 'âœ— '; color: #e53e3e; font-weight: 700; }

/* === COMPARISON TABLE === */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.compare-table th {
    background: var(--primary);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
}
.compare-table th:first-child { background: var(--primary-dark); }
.compare-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--bg); }
.compare-winner { color: var(--primary); font-weight: 700; }
.check { color: var(--primary); font-weight: 700; }
.cross { color: #e53e3e; }

/* === SIDEBAR === */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
}
.sidebar-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 14px; color: var(--text); }
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #2d9d5f 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
}
.sidebar-cta h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.sidebar-cta p { font-size: 0.85rem; opacity: 0.9; margin-bottom: 16px; }
.sidebar-cta .bonus-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 12px;
}
.sidebar-btn {
    display: block;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    padding: 13px 20px;
    border-radius: 50px;
    text-align: center;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(245,166,35,0.4);
}
.sidebar-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.sidebar-btn-note { font-size: 0.75rem; opacity: 0.75; margin-top: 8px; }
.sidebar-links { list-style: none; }
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
    display: block;
    padding: 9px 0;
    color: var(--text);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.sidebar-links a:hover { color: var(--primary); }
.banner-img {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    text-decoration: none;
}
.banner-inner {
    background: linear-gradient(135deg, #1a6b3c, #2d9d5f);
    color: #fff;
    padding: 22px 18px;
    text-align: center;
    border-radius: var(--radius);
}
.banner-inner strong { font-size: 1.2rem; display: block; margin-bottom: 6px; }
.banner-inner span { font-size: 0.85rem; opacity: 0.85; display: block; margin-bottom: 14px; }
.banner-inner .banner-btn {
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

/* === FOOTER === */
footer {
    background: #111827;
    color: #9ca3af;
    padding: 40px 0 20px;
    font-size: 0.88rem;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
.footer-brand { }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.footer-logo-icon {
    width: 32px; height: 32px;
    background: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    font-weight: 800;
}
.footer-logo-text { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-desc { font-size: 0.85rem; line-height: 1.6; max-width: 260px; }
.footer-disclaimer {
    font-size: 0.78rem;
    color: #6b7280;
    margin-top: 12px;
    line-height: 1.5;
}
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #9ca3af; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #1f2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { color: #9ca3af; text-decoration: none; font-size: 0.82rem; }
.footer-bottom-links a:hover { color: #fff; }

/* === INLINE BANNER === */
.inline-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 24px 0;
    flex-wrap: wrap;
}
.inline-banner-text strong { font-size: 1.15rem; display: block; margin-bottom: 4px; }
.inline-banner-text span { font-size: 0.88rem; opacity: 0.85; }
.inline-banner .btn-cta { flex-shrink: 0; font-size: 0.95rem; padding: 12px 24px; }

/* === FAQ === */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    padding: 14px 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    user-select: none;
}

.faq-item.open .faq-a { display: block; }

/* === LOADING SKELETON === */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-anim 1.5s infinite;
    border-radius: 6px;
}
@keyframes skeleton-anim {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .main-grid { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    nav { display: none; }
    nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); padding: 10px; box-shadow: var(--shadow); z-index: 1001; }
    .burger { display: flex; }
    .header-main { position: relative; flex-wrap: wrap; height: auto; padding: 8px 16px; gap: 6px; }
    .logo { flex: 1 1 auto; }
    .lang-switcher { order: 3; flex: 0 0 auto; }
    #burger-btn { order: 2; }
    .footer-grid { grid-template-columns: 1fr; }
    .pros-cons { grid-template-columns: 1fr; }
    .hero-stats { gap: 16px; }
    .main-grid { padding: 16px 12px; gap: 16px; }
    .inline-banner { flex-direction: column; padding: 16px; gap: 12px; }
    .inline-banner .btn-cta { width: 100%; text-align: center; }
    /* Summary card mobile */
    .summary-card { padding: 16px; gap: 12px; }
    .summary-logo-wrap { width: 60px; }
    .summary-logo-wrap img { width: 56px; height: 56px; }
    .summary-brand { font-size: 1.1rem; }
    .summary-score-wrap { min-width: 0; width: 100%; }
    .score-big { font-size: 2.4rem; }
    .summary-cta-wrap .btn-cta { display: block; width: 100%; }
    /* Filter bar */
    .filter-bar { gap: 6px; padding: 12px; }
    .filter-sort { width: 100%; margin-top: 4px; }
    /* Review cards */
    .review-card { padding: 16px; }
    /* Info sections */
    .info-section { padding: 18px 14px; }
    /* Score bars */
    .score-bars { width: 100%; }
}

/* === PAGE CONTENT === */
.page-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.page-content-inner { padding: 16px; }
.page-content h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; }
.page-content h2 { font-size: 1.2rem; font-weight: 700; margin: 20px 0 10px; color: var(--primary); }
.page-content p { font-size: 0.93rem; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.7; }
.page-content ul { padding-left: 20px; margin-bottom: 12px; }
.page-content ul li { font-size: 0.93rem; color: var(--text-secondary); margin-bottom: 6px; line-height: 1.7; }

/* === STICKY SIDEBAR WRAP === */
.sidebar-sticky-wrap {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* ÐžÐ±Ð¼ÐµÐ¶ÑƒÑ”Ð¼Ð¾ Ð²Ð¸ÑÐ¾Ñ‚Ñƒ Ñ‰Ð¾Ð± Ð½Ðµ Ð¿ÐµÑ€ÐµÐºÑ€Ð¸Ð²Ð°Ð² Ð½Ð¸Ð¶Ð½Ñ–Ð¹ ÐºÐ¾Ð½Ñ‚ÐµÐ½Ñ‚ */
    max-height: calc(100vh - 100px);
    overflow: visible;
}
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 900px) {
    /* sticky Ð²Ð¶Ðµ Ð²Ð¸Ð¼ÐºÐ½ÐµÐ½Ð¾ Ñƒ Ð²ÐµÑ€Ñ…Ð½ÑŒÐ¾Ð¼Ñƒ media block */
}

/* end */

/* How it works steps grid */
.how-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}
@media (max-width: 600px) {
    .how-steps-grid { grid-template-columns: 1fr; }
}

.step-card { background:#f8f9fa; border-radius:8px; padding:16px; text-align:center; }

/* ====================== СТИЛІ ДЛЯ ВІДГУКІВ ====================== */
#reviews-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Головна картка відгуку - повна ширина */
.review-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 10px 30px -10px rgb(16 185 129 / 0.15);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgb(16 185 129 / 0.25);
    border-color: #10b981;
}

/* Верхня частина: аватар + ім'я + verified */
.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #10b981;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.review-date {
    font-size: 0.9rem;
    color: #64748b;
}

.verified-badge {
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Зірки */
.review-stars {
    font-size: 1.75rem;
    color: #fbbf24;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* Заголовок */
.review-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 16px;
}

/* Текст відгуку */
.review-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 24px;
}

/* Сума інвестицій */
.review-invest {
    display: inline-flex;
    align-items: center;
    background: #f8fafc;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 1rem;
    color: #0f172a;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

/* Додаємо маленький індикатор "Inzhur" внизу картки */
.review-card::after {
    content: "Inzhur REIT • 2026";
    position: absolute;
    bottom: 20px;
    right: 28px;
    font-size: 0.7rem;
    color: #10b981;
    font-weight: 500;
    opacity: 0.6;
}

/* ====================== БЛОК БОНУСУ (який вставляється кожні 3 відгуки) ====================== */
.bonus-cta-block {
    background: linear-gradient(90deg, #10b981, #0ea5e9);
    border-radius: 28px;
    padding: 40px 32px;
    color: white;
    margin: 32px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    box-shadow: 0 15px 35px -10px rgb(16 185 129 / 0.4);
}

.bonus-cta-block h3 {
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 700;
}

/* Анімація появи карток */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: fadeInUp 0.7s backwards;
}

:root {
    --green: #16a34a;
    --green-dark: #14532d;
    --green-light: #dcfce7;
    --gold: #f59e0b;
    --text: #0f172a;
    --text-muted: #64748b;
    --bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --radius: 16px;
    --radius-lg: 24px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}
h1,h2,h3,h4 { font-family: 'Unbounded', sans-serif; line-height: 1.2; }

/* ===== ТОП БАРНЕР ===== */
.top-banner {
    background: linear-gradient(90deg, #14532d, #16a34a);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.top-banner a {
    color: #fde68a;
    text-decoration: underline;
}

/* ===== HEADER ===== */
header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 12px rgba(0,0,0,0.07);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}
.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-mark img { width: 26px; height: 26px; }
.logo-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-dark);
}
.logo-sub {
    display: block;
    font-size: 0.62rem;
    color: var(--text-muted);
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    margin-top: -2px;
}
nav { display: flex; gap: 4px; }
nav a {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}
nav a:hover { background: var(--green-light); color: var(--green-dark); }
.btn-cta {
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #052e16 0%, #14532d 50%, #166534 100%);
    color: #fff;
    padding: 72px 24px 56px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: center;
    position: relative;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #bbf7d0;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hero h1 {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}
.hero h1 span { color: #86efac; }
.hero-desc {
    font-size: 1.05rem;
    color: #bbf7d0;
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero-stat strong {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #4ade80;
}
.hero-stat span { font-size: 0.82rem; color: #86efac; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f59e0b;
    color: #fff;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(245,158,11,0.5);
    transition: all 0.25s;
    animation: pulse 2.5s infinite;
}
.btn-hero:hover { background: #d97706; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,0.6); }
@keyframes pulse {
    0%,100% { box-shadow: 0 4px 20px rgba(245,158,11,0.5); }
    50% { box-shadow: 0 6px 30px rgba(245,158,11,0.75); }
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

/* Hero Card */
.hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: #fff;
}
.hero-card-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #86efac;
    font-weight: 700;
    margin-bottom: 16px;
}
.hero-card-score {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.hero-card-score-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #4ade80;
    line-height: 1;
}
.stars-row { color: #fbbf24; font-size: 1.3rem; letter-spacing: 2px; }
.hero-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.88rem;
}
.hero-card-row:last-child { border-bottom: none; }
.hero-card-val { font-weight: 700; color: #4ade80; }
.hero-card-btn {
    display: block;
    background: #f59e0b;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.2s;
}
.hero-card-btn:hover { background: #d97706; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ===== MAIN LAYOUT ===== */
.main-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 64px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
}

/* ===== CARDS ===== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}
.card-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-title .icon {
    width: 40px; height: 40px;
    background: var(--green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===== SEO TEXT BLOCK (для Google) ===== */
.seo-intro {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}
.seo-intro h2 {
    font-size: 1.6rem;
    color: var(--green-dark);
    margin-bottom: 16px;
}
.seo-intro p {
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: 0.97rem;
    line-height: 1.75;
}
.seo-intro h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin: 22px 0 10px;
}
.seo-intro ul {
    list-style: none;
    padding: 0;
}
.seo-intro ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.96rem;
    border-bottom: 1px solid #f1f5f9;
}
.seo-intro ul li:last-child { border-bottom: none; }
.seo-intro ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}
.seo-intro ul li strong { color: var(--text); }

/* ===== HOW IT WORKS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
}
.step {
    background: #f8fafc;
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    position: relative;
}
.step-num {
    width: 36px;
    height: 36px;
    background: var(--green);
    color: #fff;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.step h4 { font-size: 0.9rem; margin-bottom: 6px; color: var(--text); }
.step p { font-size: 0.82rem; color: var(--text-muted); }

/* ===== PROS CONS ===== */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}
.pros, .cons {
    border-radius: var(--radius);
    padding: 20px;
}
.pros { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons { background: #fff7ed; border: 1px solid #fed7aa; }
.pros h4 { color: #15803d; font-size: 0.95rem; margin-bottom: 12px; }
.cons h4 { color: #c2410c; font-size: 0.95rem; margin-bottom: 12px; }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros ul li, .cons ul li {
    font-size: 0.88rem;
    padding: 5px 0 5px 20px;
    position: relative;
    color: var(--text-muted);
}
.pros ul li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.cons ul li::before { content: '✗'; position: absolute; left: 0; color: #ea580c; font-weight: 700; }

/* ===== COMPARE TABLE ===== */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-top: 16px;
}
.compare-table thead th {
    background: var(--green-dark);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
}
.compare-table thead th:first-child { border-radius: 10px 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 10px 0 0; }
.compare-table tbody tr { border-bottom: 1px solid #f1f5f9; }
.compare-table tbody tr:hover { background: #f8fafc; }
.compare-table tbody td { padding: 11px 16px; }
.compare-table tbody td:first-child { font-weight: 600; color: var(--text); }
.highlight-row { background: #f0fdf4 !important; }
.highlight-row td:first-child { color: var(--green-dark) !important; }
.tag-green {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}
.tag-red {
    background: #fee2e2;
    color: #b91c1c;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

/* ===== RATING BARS ===== */
.rating-bars { margin-top: 8px; }
.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}
.rating-label { width: 50px; color: var(--text-muted); }
.rating-bar-wrap { flex: 1; background: #f1f5f9; border-radius: 50px; height: 8px; overflow: hidden; }
.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), #4ade80);
    border-radius: 50px;
    transition: width 1s ease;
    width: 0;
}
.rating-count { width: 30px; text-align: right; color: var(--text-muted); }

/* ===== FILTER BAR ===== */
.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}
.filter-btn {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}
.sort-select {
    margin-left: auto;
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
    cursor: pointer;
    color: var(--text-muted);
    outline: none;
}

/* ===== REVIEW CARD ===== */
#reviews-list { display: flex; flex-direction: column; gap: 20px; }
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid transparent;
    transition: all 0.3s;
}
.review-card:hover {
    border-color: #bbf7d0;
    box-shadow: 0 8px 32px rgba(22,163,74,0.12);
}
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #bbf7d0;
    flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-author { font-weight: 700; font-size: 1rem; color: var(--text); }
.review-date-city { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.verified-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}
.review-score { text-align: right; }
.review-stars { color: #fbbf24; font-size: 1.15rem; letter-spacing: 1px; }
.review-score-num { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.review-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.review-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.review-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.review-tag {
    background: #f8fafc;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 50px;
}
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}
.review-invest-badge {
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
}
.like-btn {
    background: none;
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 5px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}
.like-btn:hover, .like-btn.active {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-light);
}

/* Inline promo banner між відгуками */
.inline-promo {
    background: linear-gradient(135deg, #052e16, #14532d);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.inline-promo h3 { font-size: 1.15rem; margin-bottom: 4px; color: #fff; }
.inline-promo p { font-size: 0.85rem; color: #86efac; }
.inline-promo .btn-gold {
    background: #f59e0b;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}
.inline-promo .btn-gold:hover { background: #d97706; }

/* Load more */
.load-more-wrap { text-align: center; margin-top: 28px; }
#load-more-btn {
    background: var(--white);
    border: 2px solid var(--green);
    color: var(--green);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 36px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}
#load-more-btn:hover { background: var(--green); color: #fff; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    padding: 16px 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.96rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
    color: var(--text);
}
.faq-q:hover { color: var(--green); }
.faq-q-icon {
    width: 26px; height: 26px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--green);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.75;
    padding-bottom: 16px;
    display: none;
}
.faq-item.open .faq-a { display: block; }

/* ===== SIDEBAR ===== */
.sidebar-sticky { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-bonus {
    background: linear-gradient(135deg, #052e16, #166534);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: #fff;
    text-align: center;
}
.sidebar-bonus-icon { font-size: 2.5rem; margin-bottom: 12px; }
.sidebar-bonus h3 { font-size: 1.2rem; margin-bottom: 10px; color: #fff; }
.sidebar-bonus p { font-size: 0.87rem; color: #86efac; margin-bottom: 20px; line-height: 1.6; }
.sidebar-bonus-btn {
    display: block;
    background: #f59e0b;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}
.sidebar-bonus-btn:hover { background: #d97706; }
.sidebar-stats {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.sidebar-stats h4 {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 16px;
}
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.87rem;
}
.stat-row:last-child { border-bottom: none; }
.stat-row-label { color: var(--text-muted); }
.stat-row-val { font-weight: 700; color: var(--green-dark); }
.sidebar-articles {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.sidebar-articles h4 { font-size: 0.9rem; color: var(--text); margin-bottom: 14px; }
.sidebar-articles ul { list-style: none; padding: 0; }
.sidebar-articles ul li { margin-bottom: 10px; }
.sidebar-articles ul li a {
    font-size: 0.87rem;
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
}
.sidebar-articles ul li a:hover { text-decoration: underline; }
.sidebar-articles ul li span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===== WRITE REVIEW FORM ===== */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.87rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.93rem;
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 110px; }
.star-rating-input { display: flex; gap: 6px; cursor: pointer; }
.star-rating-input span { font-size: 2rem; color: #cbd5e1; transition: color 0.15s; }
.star-rating-input span.active, .star-rating-input span:hover { color: #fbbf24; }
.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--green), #059669);
    color: #fff;
    border: none;
    font-family: 'Unbounded', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.form-submit:hover { opacity: 0.92; transform: translateY(-1px); }
.form-msg { text-align: center; font-size: 0.9rem; font-weight: 600; margin-top: 12px; display: none; }
.form-msg.success { color: #15803d; }
.form-msg.error { color: #b91c1c; }

/* ===== FOOTER ===== */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 56px 24px 32px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}
.footer-brand-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.footer-brand-desc {
    font-size: 0.87rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.footer-disclaimer {
    font-size: 0.78rem;
    color: #475569;
    line-height: 1.6;
}
.footer-col h5 {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.87rem;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: #64748b; text-decoration: none; }
.footer-bottom-links a:hover { color: #fff; }

/* ===== COOKIE ===== */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #0f172a;
    color: #fff;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 9999;
    font-size: 0.87rem;
    flex-wrap: wrap;
}
#cookie-banner a { color: #4ade80; }
#cookie-accept {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 9px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.87rem;
    white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .main-layout { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    nav { display: none; }
    nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        border-top: 1px solid var(--border);
        padding: 12px;
        z-index: 200;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .burger { display: flex; }
    .header-inner { position: relative; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .pros-cons { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}