/* ============================================
   HanelReview - Main Stylesheet
   SEO-Friendly, Fast-Loading, Responsive
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --accent: #10b981;
    --danger: #ef4444;
    --dark: #1e293b;
    --dark-2: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #e2e8f0;
    --gray-bg: #f6f7fb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,.1), 0 10px 10px rgba(0,0,0,.04);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all .3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1220px;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100vw; touch-action: pan-y; }
body {
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.7;
    color: #111827;
    background: #f6f7fb;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
    touch-action: pan-y;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); text-decoration: underline; }
ul, ol { list-style: none; }
h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* Skip Link */
.skip-link {
    position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
    z-index: 9999; padding: 12px 24px; background: var(--primary); color: white;
}
.skip-link:focus { position: fixed; left: 10px; top: 10px; width: auto; height: auto; }

/* === Container === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* === Header === */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-lighter);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 70px; gap: 20px;
}
.site-logo a {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.5rem; font-weight: 800; color: var(--dark);
}
.site-logo a:hover { color: var(--primary); }
.logo-icon {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white; font-size: 1.1rem;
}

/* Navigation */
.main-nav { display: flex; }
.nav-menu { display: flex; gap: 5px; }
.nav-link {
    display: block; padding: 8px 16px; border-radius: var(--radius-sm);
    font-weight: 500; color: var(--dark-2); font-size: .95rem;
    transition: var(--transition);
}
.nav-link:hover { color: var(--primary); background: var(--primary-light); }

/* Dropdown Menu */
.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--white); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: 8px 0; z-index: 100; opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: all .2s ease;
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
    display: block; padding: 9px 18px; color: var(--dark-2); font-size: .9rem;
    font-weight: 500; transition: var(--transition);
}
.dropdown-menu a:hover { color: var(--primary); background: var(--primary-light); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.search-toggle, .mobile-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: var(--radius-sm);
    color: var(--dark-2); font-size: 1.1rem;
    transition: var(--transition);
}
.search-toggle:hover, .mobile-toggle:hover { background: var(--gray-lighter); color: var(--primary); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; }
.mobile-toggle span {
    display: block; width: 22px; height: 2px; background: var(--dark);
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Search Overlay */
.search-overlay {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.search-overlay.active { transform: translateY(0); opacity: 1; visibility: visible; }
.search-form {
    display: flex; align-items: center; gap: 10px; padding: 16px 0;
}
.search-form input {
    flex: 1; padding: 12px 20px; border: 2px solid var(--gray-lighter);
    border-radius: var(--radius); font-size: 1rem; outline: none;
    transition: var(--transition);
}
.search-form input:focus { border-color: var(--primary); }
.search-form button { padding: 12px 20px; border-radius: var(--radius); color: var(--gray); }
.search-form button[type="submit"] {
    background: var(--primary); color: white; font-weight: 600;
}
.search-close { font-size: 1.2rem; }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white); z-index: 1001;
    transform: translateX(-100%); transition: var(--transition);
    overflow-y: auto;
    box-shadow: 2px 0 12px rgba(0,0,0,.08);
    display: flex; flex-direction: column;
}
.mobile-menu.active { transform: translateX(0); }
/* Mobile Menu Header */
.mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-lighter);
    background: var(--gray-lightest);
    flex-shrink: 0;
}
.mmh-title {
    font-weight: 700; color: var(--dark);
    font-size: .95rem;
}
.mmh-close {
    width: 36px; height: 36px;
    border: none; background: transparent;
    color: var(--dark-2); font-size: 1.2rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    border-radius: 8px;
}
.mmh-close:active { background: rgba(0,0,0,.05); color: var(--primary); }
/* Mobile Menu Search */
.mobile-menu-search {
    padding: 12px 18px;
    border-bottom: 1px solid var(--gray-lighter);
    flex-shrink: 0;
}
.mobile-menu-search form {
    display: flex; align-items: center;
    background: var(--gray-lightest);
    border-radius: 22px; overflow: hidden;
    border: 1px solid var(--gray-lighter);
}
.mobile-menu-search input {
    flex: 1; padding: 10px 16px; border: none;
    background: transparent; outline: none;
    font-size: .9rem; color: var(--dark);
}
.mobile-menu-search input::placeholder { color: rgba(0,0,0,.35); }
.mobile-menu-search button {
    padding: 0 14px; height: 40px;
    background: transparent; border: none;
    color: var(--primary); font-size: .9rem;
    cursor: pointer; transition: color .2s ease;
}
.mobile-menu-search button:active { color: var(--primary-dark); }
/* Mobile Menu Inner Nav */
.mobile-menu-inner { flex: 1; overflow-y: auto; padding: 8px 0; }
.mobile-nav { list-style: none; padding: 0; margin: 0; }
.mobile-nav li {
    border-bottom: 1px solid var(--gray-lighter);
    transition: background .15s ease;
}
.mobile-nav li:active,
.mobile-nav li:hover { background: var(--gray-lightest); }
.mobile-nav a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px; color: var(--dark-2);
    font-weight: 500; font-size: 1.02rem;
    transition: color .15s ease;
}
.mobile-nav li:hover a { color: var(--primary); }
.mobile-nav a::after {
    content: '';
    width: 5px; height: 5px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: .5;
    transition: opacity .15s ease;
}
.mobile-nav li:hover a::after { opacity: 1; }
.mobile-sub-nav {
    list-style: none; padding: 0; margin: 0;
    background: var(--gray-lightest);
}
.mobile-sub-nav li { border-bottom: 1px solid var(--gray-lighter); }
.mobile-sub-nav a {
    display: block; padding: 12px 18px 12px 36px;
    color: var(--gray); font-size: .95rem; font-weight: 400;
    transition: color .15s ease, background .15s ease;
}
.mobile-sub-nav a:hover {
    color: var(--primary);
    background: var(--primary-light);
}
}

/* === Hero Section === */
.hero-section {
    background: linear-gradient(135deg, #0a0f1e 0%, #0c1740 40%, #1a2d6b 75%, #0a0f1e 100%);
    color: white; padding: 90px 0 80px;
    position: relative; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .15; }
.hero-shape-1 { width: 500px; height: 500px; background: #3b82f6; top: -150px; right: -100px; }
.hero-shape-2 { width: 350px; height: 350px; background: #8b5cf6; bottom: -80px; left: 10%; }
.hero-shape-3 { width: 250px; height: 250px; background: #06b6d4; top: 40%; right: 30%; }
.hero-split {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 60px;
    position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(99,102,241,.15); border: 1px solid rgba(99,102,241,.35);
    border-radius: 50px; padding: 6px 18px; font-size: .82rem;
    font-weight: 600; margin-bottom: 24px; letter-spacing: .5px;
    color: #a5b4fc;
}
.hero-badge i { color: #fbbf24; }
.hero-left { color: #ffffff; }
.hero-title {
    font-size: 3.2rem; font-weight: 900; line-height: 1.15; margin-bottom: 20px;
    letter-spacing: -.5px; color: #ffffff;
}
.hero-title .highlight {
    background: linear-gradient(90deg, #fbbf24, #f97316);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 36px; line-height: 1.7;
    font-weight: 300; max-width: 480px;
}
.hero-search { margin-bottom: 40px; }
.hero-search form {
    display: flex; align-items: center;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px; overflow: hidden;
    transition: var(--transition);
}
.hero-search form:focus-within {
    border-color: rgba(99,102,241,.6);
    background: rgba(255,255,255,.1);
    box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.hero-search-icon { padding: 0 4px 0 18px; color: rgba(255,255,255,.4); font-size: .95rem; }
.hero-search input {
    flex: 1; padding: 16px 14px; border: none; outline: none;
    font-size: .97rem; color: white; background: transparent;
}
.hero-search input::placeholder { color: rgba(255,255,255,.35); }
.hero-search button {
    padding: 12px 24px; margin: 5px; border-radius: 10px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white; font-weight: 700; font-size: .9rem;
    white-space: nowrap; transition: var(--transition);
    display: flex; align-items: center; gap: 8px;
}
.hero-search button:hover {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    transform: translateY(-1px);
}
/* Stats */
.hero-stats { display: flex; align-items: center; }
.stat-item { text-align: left; padding-right: 28px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); margin-right: 28px; flex-shrink: 0; }
.stat-number {
    display: block; font-size: 2rem; font-weight: 900;
    letter-spacing: -1px; margin-bottom: 3px; color: #fff;
}
.stat-label { font-size: .75rem; opacity: .6; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
/* Hero visual right */
.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-visual { position: relative; width: 100%; max-width: 400px; height: 420px; }
.hero-card {
    position: absolute;
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px; padding: 16px 20px;
    width: 320px;
    animation: heroCardFloat 4s ease-in-out infinite;
}
.hero-card-1 { top: 10px; left: 0; animation-delay: 0s; }
.hero-card-2 { top: 160px; left: 40px; animation-delay: 1.3s; }
.hero-card-3 { top: 310px; left: 10px; animation-delay: 2.6s; }
@keyframes heroCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hcard-icon {
    width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: white;
}
.hcard-info { flex: 1; min-width: 0; }
.hcard-info strong { display: block; font-size: .92rem; font-weight: 700; margin-bottom: 2px; }
.hcard-info span { font-size: .78rem; opacity: .65; }
.hcard-badge {
    background: #22c55e; color: white; font-size: .68rem;
    font-weight: 700; padding: 3px 9px; border-radius: 50px;
    letter-spacing: .5px; text-transform: uppercase; flex-shrink: 0;
}
.hcard-stars { color: #fbbf24; font-size: .7rem; flex-shrink: 0; letter-spacing: 1px; }


/* === Sections === */
.section { padding: 60px 0; }
.section-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 32px; flex-wrap: wrap; gap: 12px;
}
.section-header.center { flex-direction: column; text-align: center; }
.section-title { font-size: 1.6rem; font-weight: 700; color: var(--dark); }
.section-title i { color: var(--primary); margin-right: 8px; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 600px; }
.section-link { color: var(--primary); font-weight: 600; font-size: .95rem; }
.section-link:hover { text-decoration: underline; }

/* === Featured Grid === */
/* === Featured Grid (1 big + 4 side) === */
.featured-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.featured-main {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow); transition: var(--transition);
}
.featured-main:hover { box-shadow: var(--shadow-lg); }
.featured-main-img {
    display: block; position: relative; overflow: hidden; aspect-ratio: 16/10;
}
.featured-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.featured-main:hover .featured-main-img img { transform: scale(1.03); }
.featured-main-body { padding: 20px 24px 24px; }
.featured-main-body h3 { font-size: 1.35rem; font-weight: 700; line-height: 1.4; margin: 8px 0; }
.featured-main-body h3 a { color: var(--dark); }
.featured-main-body h3 a:hover { color: var(--primary); }
.fm-cat {
    display: inline-flex; align-items: center; gap: 4px;
    background: #f0f9ff; color: var(--primary); font-size: .75rem; font-weight: 700;
    padding: 3px 10px; border-radius: 4px; text-transform: uppercase; text-decoration: none;
}
.fm-cat:hover { background: var(--primary); color: #fff; }
.fm-author { font-size: .82rem; color: #94a3b8; }
.fm-author i { margin-right: 4px; }

/* Side cards */
.featured-side { display: flex; flex-direction: column; gap: 16px; }
.featured-side-card {
    display: flex; gap: 14px; background: var(--white); border-radius: var(--radius-lg);
    padding: 12px; box-shadow: var(--shadow); transition: var(--transition);
}
.featured-side-card:hover { box-shadow: var(--shadow-lg); }
.fsc-img {
    width: 110px; height: 90px; flex-shrink: 0; border-radius: 10px; overflow: hidden; display: block;
}
.fsc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.featured-side-card:hover .fsc-img img { transform: scale(1.05); }
.fsc-body { flex: 1; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.fsc-body h4 { font-size: .95rem; font-weight: 700; line-height: 1.4; margin: 4px 0; }
.fsc-body h4 a { color: var(--dark); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fsc-body h4 a:hover { color: var(--primary); }

/* === Categories Grid === */
.categories-section { background: var(--white); }
.categories-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.category-card {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 32px 20px; border-radius: var(--radius-lg);
    background: var(--gray-bg); border: 2px solid transparent;
    transition: var(--transition);
}
.category-card:hover {
    border-color: var(--primary); background: var(--primary-light);
    transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.category-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 16px;
}
.category-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.category-card p { font-size: .85rem; color: var(--gray); margin-bottom: 12px; }
.category-count { font-size: .8rem; color: var(--primary); font-weight: 600; }

/* === Posts Grid === */
.posts-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.post-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.post-thumbnail {
    display: block; position: relative; overflow: hidden;
    aspect-ratio: 16/10;
}
.post-thumbnail img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.post-card:hover .post-thumbnail img { transform: scale(1.05); }
.placeholder-img {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gray-lighter), var(--gray-bg));
    color: var(--gray-light); font-size: 2.5rem;
}
.rating-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--secondary); color: white; padding: 4px 10px;
    border-radius: 20px; font-size: .8rem; font-weight: 700;
    display: flex; align-items: center; gap: 4px;
}
.post-content { padding: 20px; }
.post-meta {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    margin-bottom: 10px; font-size: .82rem;
}
.category-tag {
    background: var(--primary-light); color: var(--primary);
    padding: 3px 10px; border-radius: 20px; font-weight: 600;
    font-size: .78rem;
}
.post-meta time { color: var(--gray-light); }
.post-content h2, .post-content h3 {
    font-size: 1.05rem; font-weight: 700; line-height: 1.4;
    margin-bottom: 8px;
}
.post-content h2 a, .post-content h3 a { color: var(--dark); }
.post-content h2 a:hover, .post-content h3 a:hover { color: var(--primary); }
.post-content > p { color: var(--gray); font-size: .9rem; line-height: 1.6; }
.post-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--gray-lighter);
}
.views { color: var(--gray-light); font-size: .82rem; }
.read-more {
    color: var(--primary); font-weight: 600; font-size: .85rem;
    display: flex; align-items: center; gap: 4px;
}
.read-more:hover { gap: 8px; }

/* Load More Button */
.btn-load-more {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 32px; border-radius: 50px;
    background: var(--primary); color: #fff;
    font-weight: 600; font-size: .95rem;
    text-decoration: none; transition: all .2s;
    box-shadow: 0 2px 8px rgba(59,130,246,.3);
}
.btn-load-more:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(59,130,246,.4); }

/* === Trust Section === */
.trust-section { background: linear-gradient(135deg, #f0f9ff, #e0f2fe); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-card {
    text-align: center; padding: 32px 24px; background: var(--white);
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
    transition: var(--transition);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.trust-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin: 0 auto 16px;
}
.trust-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.trust-card p { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* === Content with Sidebar === */
.content-with-sidebar {
    display: grid; grid-template-columns: 1fr 310px; gap: 40px;
    align-items: start;
}

/* === Sidebar === */
.widget {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 24px; margin-bottom: 24px; box-shadow: var(--shadow);
}
.widget-title {
    font-size: 1.1rem; font-weight: 700; margin-bottom: 16px;
    padding-bottom: 12px; border-bottom: 2px solid var(--primary-light);
}
.search-input-wrap {
    display: flex; border: 2px solid var(--gray-lighter); border-radius: var(--radius);
    overflow: hidden;
}
.search-input-wrap input {
    flex: 1; min-width: 0; padding: 10px 12px; border: none; outline: none; font-size: .9rem;
}
.search-input-wrap input[type=search]::-webkit-search-cancel-button,
.search-input-wrap input[type=search]::-webkit-search-decoration { display: none; }
.search-input-wrap button {
    padding: 10px 14px; color: #fff; transition: var(--transition);
    background: var(--primary); border: none; cursor: pointer; flex-shrink: 0;
}
.search-input-wrap button:hover { background: var(--primary-dark, #1d4ed8); }

.popular-post-item {
    display: flex; gap: 14px; padding: 12px 0;
    border-bottom: 1px solid var(--gray-lighter);
}
.popular-post-item:last-child { border-bottom: none; }
.popular-number {
    min-width: 32px; height: 32px; border-radius: 50%;
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .85rem; flex-shrink: 0;
}
.popular-content h4 { font-size: .88rem; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.popular-content h4 a { color: var(--dark); }
.popular-content h4 a:hover { color: var(--primary); }
.popular-meta { display: flex; gap: 10px; font-size: .78rem; color: var(--gray-light); }
.popular-meta .rating-badge { position: static; font-size: .75rem; padding: 2px 6px; }

.category-list li a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; color: var(--dark-2); border-bottom: 1px solid var(--gray-lighter);
    font-size: .92rem;
}
.category-list li:last-child a { border-bottom: none; }
.category-sub-list { padding-left: 14px; }
.category-sub-list li a {
    font-size: .85rem; padding: 7px 0; color: var(--gray);
}
.category-sub-list li a:hover { color: var(--primary); }
.category-list .count {
    background: var(--gray-lighter); padding: 2px 8px; border-radius: 12px;
    font-size: .78rem; font-weight: 600;
}

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item {
    display: inline-block; padding: 5px 12px; background: var(--gray-bg);
    border: 1px solid var(--gray-lighter); border-radius: 20px;
    font-size: .82rem; color: var(--dark-2); transition: var(--transition);
}
.tag-item:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }

/* === Breadcrumb === */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--gray-lighter); }
.breadcrumb ol {
    display: flex; align-items: center; gap: 8px; padding: 14px 0;
    font-size: .88rem; flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li::after { content: '/'; color: var(--gray-light); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb li[aria-current] { color: var(--dark); font-weight: 500; }

/* === Page Header === */
.page-header {
    padding: 40px 0; background: var(--white);
    border-bottom: 1px solid var(--gray-lighter);
    text-align: center;
}
.page-title { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.page-desc { color: var(--gray); font-size: 1.05rem; }
.result-count { color: var(--primary); font-weight: 600; font-size: .92rem; margin-top: 8px; }

/* === Single Post === */
.single-post { padding: 32px 0 60px; }

/* === Post Hero === */
.post-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
    min-height: 420px;
    display: flex; align-items: flex-end;
    overflow: hidden;
    padding: 0;
}
.post-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--hero-img, none) center/cover no-repeat;
    opacity: .22;
    transition: opacity .3s;
}
.post-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,15,30,.95) 0%, rgba(10,15,30,.7) 50%, rgba(10,15,30,.35) 100%);
}
.post-hero > .container { position: relative; z-index: 1; width: 100%; padding-top: 60px; padding-bottom: 48px; }
.post-hero-inner { max-width: 820px; }

/* Breadcrumb in hero */
.post-hero-breadcrumb {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: 20px;
}
.post-hero-breadcrumb a { color: rgba(255,255,255,.6); font-weight: 500; }
.post-hero-breadcrumb a:hover { color: white; text-decoration: none; }
.post-hero-breadcrumb i.fa-chevron-right { font-size: .6rem; opacity: .5; }
.post-hero-breadcrumb span { color: rgba(255,255,255,.8); }

/* Meta row */
.post-hero-meta {
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.post-hero-cat {
    display: inline-flex; align-items: center;
    background: var(--primary); color: white;
    padding: 4px 14px; border-radius: 6px;
    font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
    text-decoration: none;
}
.post-hero-cat:hover { background: var(--primary-dark); color: white; text-decoration: none; }
.post-hero-rating {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(245,158,11,.2); border: 1px solid rgba(245,158,11,.4);
    color: #fcd34d; padding: 4px 12px; border-radius: 6px;
    font-size: .8rem; font-weight: 700;
}
.post-hero-rating i { color: #fbbf24; }

/* Title */
.post-hero-title {
    font-size: 2.3rem; font-weight: 900; line-height: 1.25;
    color: white; letter-spacing: -.5px; margin-bottom: 16px;
}
.post-hero-excerpt {
    font-size: 1.05rem; color: rgba(255,255,255,.72); line-height: 1.7;
    margin-bottom: 28px; max-width: 680px; font-weight: 400;
}

/* Info row */
.post-hero-info {
    display: flex; align-items: center; gap: 0; flex-wrap: wrap;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px; padding: 10px 20px; width: fit-content;
    backdrop-filter: blur(8px); gap: 10px;
}
.phi-author { display: flex; align-items: center; gap: 8px; }
.phi-avatar {
    width: 30px; height: 30px; border-radius: 50%; object-fit: cover;
    border: 2px solid rgba(255,255,255,.3);
}
.phi-avatar-init {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white; font-size: .8rem; font-weight: 700; flex-shrink: 0;
}
.phi-name { font-size: .85rem; color: rgba(255,255,255,.85); font-weight: 600; text-decoration: none; }
.phi-name:hover { color: white; text-decoration: underline; }
.phi-date, .phi-views, .phi-updated { font-size: .82rem; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 5px; }
.phi-date i, .phi-views i, .phi-updated i { font-size: .75rem; }
.phi-divider { width: 1px; height: 16px; background: rgba(255,255,255,.2); flex-shrink: 0; }
.phi-updated { color: #6ee7b7; }

/* === Article Card === */
.article-card {
    background: var(--white); border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md); border: 1px solid var(--gray-lighter);
    padding: 48px 40px; margin-bottom: 24px;
}

/* === Review Summary Box (redesigned) === */
.review-summary-box {
    display: flex; gap: 28px; align-items: stretch;
    background: white; border: 2px solid var(--secondary);
    border-radius: var(--radius-xl); padding: 28px;
    margin-bottom: 32px; box-shadow: 0 4px 20px rgba(245,158,11,.1);
}
.rsb-rating-col {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-width: 130px; padding-right: 28px;
    border-right: 2px solid #fef3c7;
}
.rsb-score-ring {
    width: 96px; height: 96px; border-radius: 50%;
    background: linear-gradient(135deg, #fef3c7, #fef08a);
    border: 4px solid var(--secondary);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px; box-shadow: 0 4px 16px rgba(245,158,11,.25);
}
.rsb-score { font-size: 2rem; font-weight: 900; color: var(--secondary-dark); line-height: 1; text-align: center; }
.rsb-score small { font-size: .85rem; font-weight: 600; color: var(--gray); }
.rsb-stars { display: flex; gap: 3px; font-size: 1rem; margin-bottom: 8px; }
.rsb-stars i { color: var(--gray-lighter); }
.rsb-stars i.active { color: var(--secondary); }
.rsb-product { font-size: .8rem; color: var(--gray); text-align: center; font-weight: 500; }
.rsb-pros-cons { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.rsb-pros, .rsb-cons { border-radius: var(--radius); padding: 16px; }
.rsb-pros { background: #f0fdf4; border: 1px solid #bbf7d0; }
.rsb-cons { background: #fff1f2; border: 1px solid #fecdd3; }
.rsb-pros h3 { color: #16a34a; font-size: .9rem; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.rsb-cons h3 { color: #dc2626; font-size: .9rem; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.rsb-pros ul, .rsb-cons ul { display: flex; flex-direction: column; gap: 6px; list-style: none; padding: 0; margin: 0; }
.rsb-pros li, .rsb-cons li { display: flex; align-items: flex-start; gap: 7px; font-size: .88rem; line-height: 1.5; }
.rsb-pros li i { color: #16a34a; margin-top: 3px; flex-shrink: 0; font-size: .75rem; }
.rsb-cons li i { color: #dc2626; margin-top: 3px; flex-shrink: 0; font-size: .75rem; }

/* === TOC === */
.toc-wrapper {
    background: #f8fafc; border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg); margin-bottom: 32px; overflow: hidden;
    border-left: 4px solid var(--primary);
}
.toc-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; background: var(--white);
    border-bottom: 1px solid var(--gray-lighter);
}
.toc-header h3 { font-size: .95rem; display: flex; align-items: center; gap: 8px; color: var(--dark); margin: 0; }
.toc-header h3 i { color: var(--primary); }
.toc-toggle { color: var(--gray); padding: 4px 8px; border-radius: 6px; font-size: .85rem; }
.toc-toggle:hover { background: var(--gray-lighter); }
.toc-content { padding: 14px 20px; }
.toc-content ol { list-style: decimal; padding-left: 20px; }
.toc-content li { padding: 3px 0; }
.toc-content a { color: var(--dark-2); font-size: .9rem; }
.toc-content a:hover { color: var(--primary); text-decoration: none; }

/* === Article Content === */
.article-content {
    font-size: 1.05rem; line-height: 1.85; margin-bottom: 32px; color: #1e293b;
}
.article-content h2 {
    font-size: 1.5rem; font-weight: 800; margin: 44px 0 16px;
    padding-bottom: 12px; border-bottom: 2px solid var(--primary-light); color: var(--dark);
}
.article-content h3 { font-size: 1.22rem; font-weight: 700; margin: 32px 0 12px; color: var(--dark); }
.article-content h4 { font-size: 1.08rem; font-weight: 600; margin: 24px 0 10px; }
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol { margin: 16px 0; padding-left: 24px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 8px; }
.article-content img {
    border-radius: var(--radius-lg); margin: 28px 0;
    box-shadow: var(--shadow-md); max-width: 100%;
}
.article-content blockquote {
    border-left: 4px solid var(--primary); padding: 16px 24px;
    background: var(--primary-light); margin: 28px 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-style: italic; color: var(--dark-2); font-size: 1.05rem;
}
.article-content table {
    width: 100%; border-collapse: collapse; margin: 28px 0;
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.article-content th, .article-content td {
    padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--gray-lighter);
}
.article-content th { background: var(--primary); color: white; font-weight: 600; }
.article-content tr:hover { background: var(--gray-bg); }
.article-content a { color: var(--primary); text-decoration: underline; }
.article-content strong { font-weight: 700; }

/* === Verdict Box === */
.verdict-box {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid var(--accent); border-radius: var(--radius-xl);
    padding: 28px; margin-bottom: 32px;
}
.verdict-box h3 {
    font-size: 1.2rem; margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px; color: #059669;
}
.verdict-box p { font-size: 1rem; line-height: 1.75; color: #065f46; }
.verdict-rating { margin-top: 16px; font-size: .95rem; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; color: #065f46; }

/* === Product CTA === */
.product-cta {
    text-align: center; padding: 32px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 2px solid #fed7aa; border-radius: var(--radius-xl);
    margin-bottom: 32px;
}
.btn-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 40px; background: linear-gradient(135deg, #f97316, #ea580c);
    color: white; border-radius: 50px; font-weight: 700;
    font-size: 1.05rem; box-shadow: 0 6px 20px rgba(249,115,22,.35);
    transition: var(--transition);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(249,115,22,.45); color: white; text-decoration: none; }
.product-price { margin-top: 12px; color: var(--gray); font-size: .92rem; }

/* === Tags + Share row === */
.article-footer-row {
    display: flex; flex-direction: column; gap: 16px;
    padding-top: 24px; border-top: 1px solid var(--gray-lighter);
    margin-top: 12px;
}
.article-tags {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.article-tags > span { color: var(--gray); font-weight: 600; font-size: .88rem; }
.share-buttons {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.share-buttons > span { font-weight: 600; color: var(--dark); font-size: .88rem; }
.share-btn {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: .88rem; transition: var(--transition);
}
.share-btn:hover { transform: translateY(-2px); color: white; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.pinterest { background: #bd081c; }
.share-btn.copy-link { background: var(--gray); }

/* === Author Box === */
.author-box {
    display: flex; gap: 20px; align-items: center;
    padding: 24px 28px; background: var(--white);
    border-radius: var(--radius-xl); margin-bottom: 32px;
    box-shadow: var(--shadow); border: 1px solid var(--gray-lighter);
    border-left: 4px solid var(--primary);
}
.author-avatar img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-avatar-initial { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 700; flex-shrink: 0; }
.author-role-badge { display: inline-block; padding: 2px 10px; background: var(--primary-light); color: var(--primary); border-radius: 20px; font-size: .72rem; font-weight: 700; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .5px; }
.author-info h4 { font-size: 1.05rem; margin-bottom: 5px; }
.author-info h4 a { color: var(--dark); }
.author-info h4 a:hover { color: var(--primary); }
.author-info p { color: var(--gray); font-size: .88rem; line-height: 1.65; margin: 0; }

/* === Related Posts === */
.related-posts { margin-bottom: 0; }
.related-posts-header { margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--gray-lighter); }
.related-posts-header h2 { font-size: 1.15rem; font-weight: 800; color: var(--dark); display: flex; align-items: center; gap: 8px; margin: 0; }
.related-posts-header h2 i { color: var(--primary); }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.related-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-lighter);
    transition: var(--transition);
}
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.related-thumbnail {
    display: block; aspect-ratio: 16/9; overflow: hidden; position: relative;
}
.related-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.related-card:hover .related-thumbnail img { transform: scale(1.04); }
.related-rating {
    position: absolute; top: 8px; right: 8px;
    background: var(--secondary); color: white;
    padding: 2px 8px; border-radius: 12px; font-size: .72rem; font-weight: 700;
    display: flex; align-items: center; gap: 3px;
}
.related-body { padding: 12px 14px 14px; }
.related-body h3 { font-size: .92rem; font-weight: 700; margin-bottom: 6px; line-height: 1.45; }
.related-body h3 a { color: var(--dark); }
.related-body h3 a:hover { color: var(--primary); text-decoration: none; }
.related-body time { font-size: .78rem; color: var(--gray-light); }

/* === Responsive === */
@media (max-width: 1024px) {
    .article-card { padding: 28px 28px; }
}
@media (max-width: 768px) {
    .post-hero { min-height: 320px; }
    .post-hero-title { font-size: 1.7rem; }
    .post-hero-excerpt { font-size: .95rem; }
    .post-hero-info { width: 100%; border-radius: var(--radius); padding: 10px 14px; flex-wrap: wrap; gap: 8px; }
    .article-card { padding: 20px 18px; border-radius: var(--radius-lg); }
    .review-summary-box { flex-direction: column; }
    .rsb-rating-col { flex-direction: row; gap: 20px; padding-right: 0; padding-bottom: 20px; border-right: none; border-bottom: 2px solid #fef3c7; }
    .rsb-pros-cons { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .author-box { flex-direction: column; text-align: center; }
    .article-footer-row { flex-direction: column; }
}
@media (max-width: 480px) {
    .post-hero { min-height: 280px; }
    .post-hero > .container { padding-top: 40px; padding-bottom: 32px; }
    .post-hero-title { font-size: 1.35rem; }
    .post-hero-breadcrumb { display: none; }
    .article-card { padding: 16px 14px; }
    .rsb-rating-col { flex-direction: column; align-items: center; }
}

/* Related Posts */
.related-posts { margin-top: 48px; }
.related-posts h2 {
    font-size: 1.3rem; margin-bottom: 24px;
    display: flex; align-items: center; gap: 8px;
}
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.related-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); transition: var(--transition);
}
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.related-thumbnail { display: block; aspect-ratio: 16/10; overflow: hidden; }
.related-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.related-card h3 { padding: 12px 16px 4px; font-size: .92rem; line-height: 1.4; }
.related-card h3 a { color: var(--dark); }
.related-card h3 a:hover { color: var(--primary); }
.related-card time { padding: 0 16px 12px; display: block; font-size: .78rem; color: var(--gray-light); }

/* === Pagination === */
.pagination {
    display: flex; justify-content: center; align-items: center; gap: 8px;
    margin-top: 40px; padding-top: 32px;
}
.page-link {
    display: flex; align-items: center; justify-content: center;
    min-width: 42px; height: 42px; padding: 0 14px;
    border: 1px solid var(--gray-lighter); border-radius: var(--radius-sm);
    color: var(--dark-2); font-weight: 500; font-size: .92rem;
    background: var(--white); transition: var(--transition);
}
.page-link:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.page-link.active { background: var(--primary); color: white; border-color: var(--primary); }

/* === No Results === */
.no-results {
    text-align: center; padding: 60px 20px; color: var(--gray);
}
.no-results i { font-size: 3rem; margin-bottom: 16px; color: var(--gray-light); }
.no-results h2 { font-size: 1.4rem; color: var(--dark); margin-bottom: 8px; }
.btn { display: inline-block; padding: 12px 28px; border-radius: var(--radius); font-weight: 600; transition: var(--transition); }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); color: white; }

/* === Search Page === */
.search-page-form {
    max-width: 560px; margin: 20px auto 0;
    display: flex; gap: 10px;
}
.search-page-form input {
    flex: 1; padding: 12px 20px; border: 2px solid var(--gray-lighter);
    border-radius: var(--radius); outline: none; font-size: 1rem;
}
.search-page-form input:focus { border-color: var(--primary); }
.search-page-form button {
    padding: 12px 24px; background: var(--primary); color: white;
    border-radius: var(--radius); font-weight: 600;
    display: flex; align-items: center; gap: 8px;
}

/* === Footer === */
.site-footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo {
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
    font-size: 1.3rem; font-weight: 800; color: white;
}
.footer-about { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.1); color: white;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); }
.footer-heading { color: white; font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-links a:hover { color: white; }
.footer-contact li { display: flex; align-items: center; gap: 8px; }
.footer-contact i { width: 16px; color: var(--primary); }

.footer-bottom {
    margin-top: 40px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1);
    text-align: center; font-size: .85rem;
}
.footer-disclaimer { color: rgba(255,255,255,.5); font-size: .78rem; margin-top: 8px; }

/* === Back to Top === */
.back-to-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary); color: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg); z-index: 100;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* === Responsive === */
@media (max-width: 1024px) {
    .content-with-sidebar { grid-template-columns: 1fr; }
    .sidebar { order: 2; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    
    .hero-split { grid-template-columns: 1fr; gap: 32px; }
    .hero-right { display: none; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; max-width: 100%; }
    .hero-stats { gap: 0; flex-wrap: wrap; }
    .stat-number { font-size: 1.6rem; }
    .stat-item { padding-right: 20px; }
    .stat-divider { margin-right: 20px; }
    
    .featured-grid { grid-template-columns: 1fr; gap: 16px; }
    .featured-main-img { aspect-ratio: 16/9; }
    .featured-main-body { padding: 14px 16px 16px; }
    .featured-main-body h3 { font-size: 1.1rem; }
    .featured-side { gap: 12px; }
    .featured-side-card { padding: 10px; gap: 10px; }
    .fsc-img { width: 90px; height: 72px; }
    .fsc-body h4 { font-size: .85rem; }
    
    .posts-grid { grid-template-columns: 1fr; }
    
    .article-header h1 { font-size: 1.6rem; }
    .pros-cons { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    
    .section { padding: 40px 0; }
    .section-title { font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .header-inner { height: 60px; }
    .hero-section { padding: 50px 0 40px; }
    .hero-title { font-size: 1.6rem; }
    .hero-badge { font-size: .75rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .category-card { padding: 20px 12px; }
    .category-icon { width: 48px; height: 48px; font-size: 1.2rem; }
    .rating-number { font-size: 2.5rem; }
}

/* === Highlight Box (coupon / CTA / pros) === */
.box {
    background: #f1f5f9;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* === Dark Mode === */
@media (prefers-color-scheme: dark) {
    body { background: #0f172a; color: #e2e8f0; }
    .site-header { background: #1e293b; border-bottom-color: #334155; }
    .widget, .post-card, .featured-main, .featured-side-card, .related-card,
    .trust-card, .category-card { background: #1e293b; }
    .article-content blockquote { background: #1e3a5f; color: #cbd5e1; }
    .toc-wrapper { background: #1e293b; border-color: #334155; }
    .toc-header { background: #0f172a; border-color: #334155; }
    .breadcrumb, .page-header { background: #1e293b; border-color: #334155; }
    .page-title, .section-title, .widget-title { color: #f1f5f9; }
    .article-content h2, .article-content h3, .article-content h4 { color: #f1f5f9; }
    a:not(.btn):not(.btn-cta):not(.btn-primary) { color: #93c5fd; }
    .footer-grid .footer-links a:hover { color: #f1f5f9; }
}

/* === Print Styles === */
@media print {
    .site-header, .site-footer, .sidebar, .share-buttons, .back-to-top,
    .related-posts, .product-cta, .search-overlay, .mobile-menu { display: none !important; }
    body { font-size: 12pt; color: #000; background: #fff; }
    .content-with-sidebar { grid-template-columns: 1fr; }
    a { color: #000; text-decoration: underline; }
    .article-content { font-size: 11pt; }
}

/* === Author Profile Page === */
.author-profile-section { padding: 40px 0 20px; }
.author-profile-card {
    display: flex; gap: 30px; align-items: center;
    padding: 32px; background: var(--white);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.author-avatar-large img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.avatar-placeholder-lg {
    width: 120px; height: 120px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: white;
}
.author-info h1 { font-size: 1.6rem; margin-bottom: 4px; }
.author-role { display: inline-block; padding: 2px 10px; background: var(--primary-bg); color: var(--primary); border-radius: 20px; font-size: .8rem; font-weight: 600; margin-bottom: 8px; }
.author-bio { color: var(--gray); font-size: .95rem; line-height: 1.7; margin-bottom: 12px; max-width: 600px; }
.author-stats-bar { display: flex; gap: 20px; margin-bottom: 12px; }
.author-stats-bar .stat-item { font-size: .9rem; color: var(--gray); }
.author-stats-bar .stat-item strong { color: var(--dark); font-size: 1.1rem; }
.author-social { display: flex; gap: 10px; }
.author-social a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--gray-bg); color: var(--gray); transition: var(--transition); }
.author-social a:hover { background: var(--primary); color: white; }
.section-title-sm { font-size: 1.2rem; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-bg); }

/* Auto-link styling */
a.auto-link { color: var(--primary); text-decoration: none; border-bottom: 1px dotted var(--primary); }
a.auto-link:hover { border-bottom-style: solid; }

@media (max-width: 768px) {
    .author-profile-card { flex-direction: column; text-align: center; padding: 24px; }
    .author-info { display: flex; flex-direction: column; align-items: center; }
    .author-stats-bar { justify-content: center; }
    .author-social { justify-content: center; }
}

/* ============================================
   LOAN TEMPLATE - Vay Tiền Page
   Premium Professional Design
   ============================================ */

/* Hero Section */
.loan-hero {
    position: relative;
    background: var(--lh-grad, linear-gradient(135deg, #0f172a 0%, #0d2d5e 40%, #1a40a0 80%, #0f172a 100%));
    color: #fff;
    padding: 70px 0 60px;
    text-align: center;
    overflow: hidden;
}
.loan-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, var(--lh-r1, rgba(59,130,246,0.15)) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--lh-r2, rgba(16,185,129,0.1)) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(255,255,255,0.04) 0%, transparent 40%);
    pointer-events: none;
}
.loan-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.loan-hero-inner {
    position: relative;
    z-index: 1;
}

/* Loan Hero Breadcrumb */
.lf-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 28px;
}
.lf-breadcrumb a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.lf-breadcrumb a:hover { color: #fff; }
.lf-sep { color: rgba(255,255,255,0.3); }

/* Icon Box (glassmorphism) */
.lf-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--lh-icon-bg, rgba(59,130,246,0.15));
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.lf-icon-box i {
    font-size: 1.8rem;
    color: var(--lh-icon-color, #60a5fa);
}

.loan-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--lh-accent, #6ee7b7);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}
.loan-hero-badge i { font-size: 0.9rem; }
.loan-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}
.loan-hero-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    font-weight: 400;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Hero Stats */
.loan-hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #cbd5e1;
    background: rgba(255,255,255,0.06);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}
.hero-stat i {
    color: var(--lh-accent, #60a5fa);
    font-size: 0.85rem;
}
.hero-stat strong { color: #fff; }

/* Top Picks Section */
.loan-top-picks {
    max-width: 920px;
    margin: 0 auto;
}
.loan-top-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.loan-top-title i {
    font-size: 1.1rem;
}
.loan-top-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.top-pick-card {
    position: relative;
    background: rgba(255,255,255,0.97);
    border-radius: 16px;
    padding: 28px 20px 20px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}
.top-pick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, #3b82f6, #10b981, #8b5cf6);
}
.top-pick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.pick-rank {
    position: absolute;
    top: 12px;
    left: 14px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 3px 8px rgba(37,99,235,0.3);
}
.pick-logo-wrap {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
}
.pick-logo-wrap img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}
.pick-logo-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}
.pick-name {
    font-weight: 800;
    color: #1e293b;
    font-size: 1.05rem;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.pick-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
}
.pick-stars {
    color: #f59e0b;
    font-size: 0.75rem;
}
.pick-stars i { margin-right: 1px; }
.pick-score {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1e293b;
    background: #fef3c7;
    padding: 2px 7px;
    border-radius: 4px;
}
.pick-amount {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 14px;
    font-weight: 500;
}
.btn-pick {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff !important;
    padding: 11px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}
.btn-pick:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 6px 20px rgba(16,185,129,0.4);
    transform: translateY(-1px);
}
.btn-pick i { font-size: 0.82rem; }
.pick-info {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.pick-info:hover { color: #3b82f6; }

/* Loan Page Content */
.loan-page-content {
    padding: 40px 0 50px;
    background: #f8fafc;
}
.loan-intro {
    max-width: 900px;
    margin: 0 auto 30px;
}
.loan-body-content {
    max-width: 900px;
    margin: 30px auto 0;
}

/* Loan Cards Section */
.loan-cards-section {
    max-width: 960px;
    margin: 0 auto;
}
.loan-cards-header {
    text-align: center;
    margin-bottom: 30px;
}
.loan-cards-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.loan-cards-header h2 i {
    color: var(--lh-accent, #3b82f6);
    font-size: 1.3rem;
}
.loan-cards-header p {
    color: #64748b;
    font-size: 0.92rem;
}

/* Individual Loan Card */
.loan-card {
    position: relative;
    display: grid;
    grid-template-columns: 48px 180px 1fr 220px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: visible;
    margin-bottom: 14px;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.loan-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: #cbd5e1;
}
.loan-card-top {
    border-color: #fbbf24;
    border-width: 2px;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 6%);
}

/* Rank Column */
.loan-card-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-right: 1px solid #f1f5f9;
    border-radius: 16px 0 0 16px;
}
.rank-num {
    font-size: 1.1rem;
    font-weight: 900;
    color: #94a3b8;
}
.loan-card-top .rank-num {
    color: #f59e0b;
}
.loan-card:nth-child(-n+3) .rank-num {
    color: #3b82f6;
    font-size: 1.2rem;
}

/* Top Badge */
.loan-card-badge {
    position: absolute;
    top: 0;
    left: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 4px 14px 5px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(245,158,11,0.35);
    display: flex;
    align-items: center;
    gap: 5px;
}
.loan-card-badge i { font-size: 0.65rem; }

/* Logo Area */
.loan-card-logo {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-right: 1px solid #f1f5f9;
    background: #fafbfc;
}
.loan-card-logo img {
    max-width: 100px;
    max-height: 50px;
    object-fit: contain;
}
.loan-logo-initial {
    width: 70px;
    height: 50px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 900;
    color: #3b82f6;
    border: 1px solid #bfdbfe;
}
.loan-card-provider {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    letter-spacing: -0.2px;
}
.loan-card-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}
.loan-card-stars .loan-stars {
    color: #f59e0b;
    font-size: 0.7rem;
}
.loan-card-stars .loan-stars i { margin-right: 0; }
.loan-card-stars .loan-score {
    font-weight: 800;
    color: #1e293b;
    font-size: 0.78rem;
    background: #fef3c7;
    padding: 1px 6px;
    border-radius: 4px;
}

/* Info Area */
.loan-card-info {
    padding: 18px 20px;
}
.loan-info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.loan-info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.info-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-icon i {
    font-size: 0.75rem;
    color: #3b82f6;
}
.loan-info-item .info-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.info-value {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
}

/* Features Grid */
.loan-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.loan-feature {
    font-size: 0.78rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f0fdf4;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid #dcfce7;
}
.loan-feature i {
    color: #10b981;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Action Area */
.loan-card-action {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 1px solid #f1f5f9;
    overflow: visible;
    border-radius: 0 16px 16px 0;
}

/* Apply Button */
.btn-loan-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--lh-apply-grad, linear-gradient(135deg, #10b981, #059669));
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    border: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 12px var(--lh-apply-shadow, rgba(16,185,129,0.25));
}
.btn-loan-apply:hover {
    opacity: 0.88;
    box-shadow: 0 6px 20px var(--lh-apply-shadow, rgba(16,185,129,0.4));
    transform: translateY(-1px);
}
.btn-loan-apply i { font-size: 0.82rem; }

.loan-detail-link {
    font-size: 0.8rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}
.loan-detail-link:hover { color: #2563eb; text-decoration: underline; }
.loan-detail-link i { font-size: 0.72rem; }

.loan-info-link {
    font-size: 0.72rem;
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}
.loan-info-link:hover { color: #64748b; }

/* Info link under info row */
.loan-info-under {
    margin-top: -4px;
    margin-bottom: 8px;
}
.loan-info-under .loan-tooltip {
    bottom: auto;
    top: calc(100% + 8px);
    left: 0;
    transform: translateX(0);
}
.loan-info-under .loan-tooltip::after {
    top: auto;
    bottom: 100%;
    left: 20px;
    transform: none;
    border-top-color: transparent;
    border-bottom-color: #334155;
}
.loan-info-under:hover .loan-tooltip {
    transform: translateY(4px);
}

/* Tooltip for *Thông tin */
.loan-tooltip-wrap {
    position: relative;
    display: inline-block;
}
.loan-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #334155, #1e293b);
    color: #e2e8f0;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.65;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    z-index: 100;
    pointer-events: none;
    text-align: left;
    backdrop-filter: blur(8px);
}
.loan-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #1e293b;
}
.loan-tooltip-wrap:hover .loan-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}
.top-pick-card .loan-tooltip {
    bottom: calc(100% + 8px);
    width: 280px;
}
.loan-card-action .loan-tooltip-wrap {
    width: 100%;
    text-align: center;
}

/* Show More Button */
.loan-show-more {
    text-align: center;
    margin: 28px 0;
}
.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 40px;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.btn-show-more:hover {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 6px 20px rgba(59,130,246,0.3);
    transform: translateY(-2px);
}
.btn-show-more i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}
.btn-show-more.expanded i {
    transform: rotate(180deg);
}

/* TOC for Loan Page */
.loan-page-content .toc-wrapper {
    max-width: 900px;
    margin: 0 auto 30px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
}
.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.toc-header h3 {
    font-size: 1rem;
    color: #1e293b;
    margin: 0;
}
.toc-toggle {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
}
.toc-content { margin-top: 12px; }
.toc-content ol {
    list-style: decimal;
    padding-left: 20px;
    margin: 0;
}
.toc-content ol li {
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.toc-content ol li a {
    color: #2563eb;
    text-decoration: none;
}
.toc-content ol li a:hover {
    text-decoration: underline;
}

/* === Loan Template Responsive === */
@media (max-width: 1024px) {
    .loan-card {
        grid-template-columns: 44px 160px 1fr 180px;
    }
    .loan-info-row { gap: 14px; }
}

@media (max-width: 768px) {
    .loan-hero { padding: 50px 0 40px; }
    .loan-hero h1 { font-size: 1.8rem; }
    .loan-hero-subtitle { font-size: 0.95rem; }
    .loan-hero-stats { gap: 10px; }
    .hero-stat { font-size: 0.8rem; padding: 6px 12px; }
    .loan-top-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .pick-rank { top: 10px; left: 10px; }

    .loan-card {
        grid-template-columns: 1fr;
    }
    .loan-card-rank {
        display: none;
    }
    .loan-card-logo {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        padding: 14px 16px;
        justify-content: flex-start;
        gap: 12px;
    }
    .loan-card-info { padding: 14px 16px; }
    .loan-info-row { flex-direction: column; gap: 10px; }
    .loan-features-grid { flex-direction: column; }
    .loan-card-action {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 14px 16px;
        border-top: 1px solid #f1f5f9;
        border-left: none;
        background: #fafbfc;
    }
    .btn-loan-apply {
        width: auto;
        padding: 11px 30px;
    }
    .loan-cards-header h2 { font-size: 1.3rem; }
}
    .loan-card-action {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
        border-top: 1px solid #f1f5f9;
    }
    .btn-loan-apply {
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .loan-hero h1 { font-size: 1.4rem; }
    .loan-hero-stats { flex-direction: column; align-items: center; }
    .loan-card-action {
        flex-direction: column;
        align-items: center;
    }
    .btn-loan-apply { width: 100%; }
    .loan-cards-header h2 { font-size: 1.1rem; }
    .loan-cards-header h2 i { display: none; }
}

/* ============================================
   LOAN SINGLE TEMPLATE - Trang đánh giá chi tiết
   Premium Professional Design
   ============================================ */

/* Header Bar */
.ls-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.ls-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ls-header-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ls-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.5px;
}
.ls-header-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ls-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ecfdf5;
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #a7f3d0;
}
.ls-header-badge i {
    font-size: 0.7rem;
}
.ls-header-score {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #f59e0b;
}
.btn-ls-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff !important;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(16,185,129,0.3);
    letter-spacing: 0.3px;
}
.btn-ls-cta:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 6px 20px rgba(16,185,129,0.45);
    transform: translateY(-2px);
}
.btn-ls-cta i {
    font-size: 0.85rem;
}

/* Hero Section - Logo + Rating + Amount */
.ls-hero {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 48px 0 40px;
    border-bottom: 1px solid #e2e8f0;
}
.ls-hero-card {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px 40px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}
.ls-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6, #8b5cf6);
}
.ls-hero-logo-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
    padding: 12px;
}
.ls-hero-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.ls-rating-block {
    margin-bottom: 4px;
}
.ls-rating-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.ls-stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}
.ls-stars-big {
    color: #f59e0b;
    font-size: 2rem;
    display: flex;
    gap: 4px;
    filter: drop-shadow(0 1px 2px rgba(245,158,11,0.3));
}
.ls-stars-big i {
    margin: 0;
}
.ls-score-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: 0 2px 8px rgba(30,41,59,0.3);
}
.ls-hero-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
    margin: 0 auto 20px;
}
.ls-amount-block {
    margin-bottom: 8px;
}
.ls-info-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.ls-amount-big {
    font-size: 2rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.3;
    letter-spacing: -0.5px;
}
.ls-info-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #64748b;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}
.ls-info-link:hover {
    color: #2563eb;
}
.ls-info-link i {
    font-size: 0.7rem;
}

/* Info Table: Thông tin | Ưu điểm | Nhược điểm */
.ls-info-table {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}
.ls-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ls-info-col {
    padding: 24px;
}
.ls-info-col h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ls-info-col h3 i {
    font-size: 0.85rem;
    opacity: 0.7;
}
.ls-info-col + .ls-info-col {
    border-left: 1px solid #e2e8f0;
}
.ls-detail-table {
    width: 100%;
}
.ls-detail-table tr td {
    padding: 8px 0;
    font-size: 0.85rem;
    color: #475569;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
}
.ls-detail-table tr:last-child td {
    border-bottom: none;
}
.ls-detail-table tr td:first-child {
    white-space: nowrap;
    padding-right: 16px;
    color: #64748b;
}
.ls-detail-table tr td:first-child i {
    width: 20px;
    margin-right: 8px;
    color: #94a3b8;
    text-align: center;
}
.ls-detail-table tr td:last-child {
    font-weight: 600;
    color: #1e293b;
}
.ls-detail-table tr td:last-child a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}
.ls-detail-table tr td:last-child a:hover {
    text-decoration: underline;
}

/* Ưu điểm */
.ls-pros {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
}
.ls-pros h3 { color: #059669; }
.ls-pros h3 i { color: #10b981; opacity: 1; }
.ls-pros ul { list-style: none; padding: 0; margin: 0; }
.ls-pros li {
    font-size: 0.85rem;
    color: #15803d;
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.ls-pros li i {
    color: #10b981;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.75rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dcfce7;
    border-radius: 50%;
}

/* Nhược điểm */
.ls-cons {
    background: linear-gradient(180deg, #fef2f2 0%, #fff1f2 100%);
}
.ls-cons h3 { color: #dc2626; }
.ls-cons h3 i { color: #ef4444; opacity: 1; }
.ls-cons ul { list-style: none; padding: 0; margin: 0; }
.ls-cons li {
    font-size: 0.85rem;
    color: #991b1b;
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.ls-cons li i {
    color: #ef4444;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fecaca;
    border-radius: 50%;
}

/* Content Area */
.ls-content-area {
    padding: 40px 0 60px;
    background: #fafbfc;
}
.ls-main {
    max-width: 800px;
    margin: 0 auto;
}

/* TOC */
.ls-toc {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0;
    margin-bottom: 36px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.ls-toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    color: #1e293b;
    padding: 18px 24px;
    background: linear-gradient(135deg, #f8fafc, #fff);
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.2s;
}
.ls-toc-header:hover {
    background: #f1f5f9;
}
.toc-toggle {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
}
.toc-toggle:hover {
    background: #e2e8f0;
}
.ls-toc-content {
    padding: 16px 24px;
}
.ls-toc-content ol {
    list-style: decimal;
    padding-left: 20px;
    margin: 0;
}
.ls-toc-content ol li {
    margin-bottom: 6px;
    font-size: 0.9rem;
    padding: 2px 0;
}
.ls-toc-content ol li a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}
.ls-toc-content ol li a:hover {
    color: #2563eb;
}
.ls-toc-content.collapsed { display: none; }

/* Article Body */
.ls-article-body {
    background: #fff;
    border-radius: 16px;
    padding: 36px 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    margin-bottom: 36px;
}
.ls-article-body h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 36px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}
.ls-article-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 28px;
    margin-bottom: 10px;
}
.ls-article-body p {
    line-height: 1.8;
    color: #475569;
}

/* Provider Card Inline (compact) */
.ls-provider-card-inline {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    margin: 36px 0;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ls-provider-card-inline:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.ls-pci-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-right: 1px solid #f1f5f9;
    background: linear-gradient(180deg, #fafbfc, #f8fafc);
    gap: 8px;
}
.ls-pci-left img {
    max-width: 80px;
    max-height: 50px;
    object-fit: contain;
}
.ls-pci-info strong {
    display: block;
    font-size: 0.9rem;
    text-align: center;
    color: #0f172a;
}
.ls-pci-stars {
    color: #f59e0b;
    font-size: 0.75rem;
    text-align: center;
}
.ls-pci-stars span {
    color: #1e293b;
    font-weight: 800;
    margin-left: 4px;
    font-size: 0.8rem;
}
.ls-pci-mid {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.ls-pci-feat {
    font-size: 0.84rem;
    color: #334155;
    line-height: 1.4;
}
.ls-pci-feat i {
    color: #10b981;
    margin-right: 6px;
    font-size: 0.75rem;
}
.ls-pci-right {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    border-left: 1px solid #f1f5f9;
    background: linear-gradient(180deg, #f0fdf4, #ecfdf5);
}
.ls-pci-amount {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}
.btn-ls-apply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(16,185,129,0.25);
}
.btn-ls-apply:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 14px rgba(16,185,129,0.4);
    transform: translateY(-1px);
}

/* Featured Banner Card */
.ls-featured-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    border-radius: 20px;
    padding: 36px 40px;
    margin: 36px 0;
    color: #fff;
    box-shadow: 0 8px 32px rgba(15,23,42,0.25);
    position: relative;
    overflow: hidden;
}
.ls-featured-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.ls-fb-left {
    position: relative;
    z-index: 1;
}
.ls-fb-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #10b981;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ls-fb-label i {
    font-size: 0.8rem;
}
.ls-fb-name {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.ls-fb-bonus-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 4px;
}
.ls-fb-amount {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #e2e8f0;
}
.ls-fb-btns {
    display: flex;
    gap: 12px;
}
.btn-ls-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff !important;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(16,185,129,0.3);
}
.btn-ls-green:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 6px 20px rgba(16,185,129,0.45);
    transform: translateY(-2px);
}
.btn-ls-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    color: #fff !important;
    padding: 14px 30px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}
.btn-ls-outline:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}
.ls-fb-right {
    position: relative;
    z-index: 1;
}
.ls-fb-logo-wrap {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
}
.ls-fb-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* FAQ Accordion */
.ls-faq {
    margin: 40px 0;
}
.ls-faq > h2 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: #0f172a;
}
.ls-faq > h2 i {
    color: #3b82f6;
    font-size: 1.3rem;
}
.ls-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ls-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.02);
}
.ls-faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.ls-faq-item.open {
    border-color: #bfdbfe;
    box-shadow: 0 4px 16px rgba(59,130,246,0.08);
}
.ls-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
    gap: 16px;
}
.ls-faq-question span strong {
    color: #3b82f6;
    margin-right: 6px;
}
.ls-faq-question:hover {
    background: #f8fafc;
}
.ls-faq-question i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #94a3b8;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    font-size: 0.75rem;
}
.ls-faq-item.open .ls-faq-question {
    background: #f0f9ff;
}
.ls-faq-item.open .ls-faq-question i {
    transform: rotate(180deg);
    background: #dbeafe;
    color: #3b82f6;
}
.ls-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}
.ls-faq-item.open .ls-faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}
.ls-faq-answer p {
    color: #475569;
    line-height: 1.8;
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid #e2e8f0;
}

/* Reviews Section */
.ls-reviews {
    margin: 40px 0;
}
.ls-reviews > h2 {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: #0f172a;
}
.ls-reviews > h2 i {
    color: #f59e0b;
    font-size: 1.3rem;
}

/* No Reviews */
.ls-no-reviews {
    text-align: center;
    padding: 48px 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 2px dashed #e2e8f0;
}
.ls-no-reviews i {
    font-size: 2.5rem;
    color: #cbd5e1;
    margin-bottom: 12px;
    display: block;
}
.ls-no-reviews p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Review Summary */
.ls-review-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    margin-bottom: 32px;
    padding: 28px;
    background: #fff;
    border-radius: 16px;
    align-items: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ls-review-avg {
    text-align: center;
}
.ls-avg-score {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -1px;
}
.ls-avg-stars {
    margin: 8px 0 6px;
    color: #f59e0b;
    font-size: 1rem;
}
.ls-avg-text {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
}
.ls-avg-count {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 2px;
}

/* Rating Bars */
.ls-rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ls-bar-row {
    display: grid;
    grid-template-columns: 80px 1fr 42px;
    align-items: center;
    gap: 12px;
}
.ls-bar-label {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 600;
}
.ls-bar-track {
    height: 12px;
    background: #f1f5f9;
    border-radius: 6px;
    overflow: hidden;
}
.ls-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.ls-bar-pct {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 700;
    text-align: right;
}

/* Individual Reviews */
.ls-review-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ls-review-item {
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}
.ls-review-item:last-child {
    border-bottom: none;
}
.ls-rev-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.ls-rev-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.ls-rev-meta {
    flex: 1;
    min-width: 0;
}
.ls-rev-author {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.9rem;
}
.ls-rev-date {
    color: #94a3b8;
    font-size: 0.78rem;
    margin-top: 1px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ls-rev-date i {
    font-size: 0.7rem;
}
.ls-rev-stars-wrap {
    color: #f59e0b;
    font-size: 0.85rem;
    white-space: nowrap;
    display: flex;
    gap: 1px;
}
.ls-rev-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    font-size: 0.95rem;
}
.ls-rev-content {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Review Form */
.ls-review-form {
    margin: 48px 0;
    padding: 32px 36px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.ls-review-form h2 {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    color: #0f172a;
}
.ls-review-form h2 i {
    color: #3b82f6;
}
.ls-form-group {
    margin-bottom: 20px;
}
.ls-form-group label {
    display: block;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.ls-required {
    color: #ef4444;
}

/* Star Picker */
.ls-star-picker {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    width: fit-content;
    transition: border-color 0.2s;
}
.ls-star-picker:hover {
    border-color: #f59e0b;
}
.ls-star-picker i {
    font-size: 1.6rem;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.15s;
}
.ls-star-picker i.fas {
    color: #f59e0b;
    filter: drop-shadow(0 1px 2px rgba(245,158,11,0.3));
}
.ls-star-picker i:hover {
    transform: scale(1.2);
}
.ls-star-text {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    margin-left: 8px;
    min-width: 90px;
}

.ls-input, .ls-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #1e293b;
    transition: all 0.2s;
    background: #fff;
    box-sizing: border-box;
}
.ls-input:focus, .ls-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59,130,246,0.08);
}
.ls-textarea {
    resize: vertical;
    min-height: 100px;
}
.btn-ls-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(30,41,59,0.2);
}
.btn-ls-submit:hover {
    background: linear-gradient(135deg, #334155, #475569);
    box-shadow: 0 4px 14px rgba(30,41,59,0.3);
    transform: translateY(-1px);
}
.btn-ls-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Alert Messages */
.ls-alert {
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ls-alert i {
    font-size: 1rem;
    flex-shrink: 0;
}
.ls-alert-success {
    background: linear-gradient(135deg, #ecfdf5, #dcfce7);
    color: #166534;
    border: 1px solid #a7f3d0;
}
.ls-alert-error {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #991b1b;
    border: 1px solid #fecaca;
}
.ls-alert-warning {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    color: #92400e;
    border: 1px solid #fde68a;
}

/* === Loan Single Responsive === */
@media (max-width: 768px) {
    .ls-header { position: static; }
    .ls-header-inner { flex-direction: column; gap: 14px; text-align: center; }
    .ls-header-meta { justify-content: center; }
    .ls-title { font-size: 1.4rem; }
    .ls-hero { padding: 32px 0 24px; }
    .ls-hero-card { padding: 28px 24px 24px; border-radius: 16px; }
    .ls-amount-big { font-size: 1.4rem; }
    .ls-stars-big { font-size: 1.6rem; }
    .ls-stars-row { gap: 8px; }
    .ls-score-badge { width: 40px; height: 40px; font-size: 0.95rem; }
    .ls-info-grid { grid-template-columns: 1fr; border-radius: 12px; }
    .ls-info-col + .ls-info-col {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }
    .ls-article-body { padding: 24px 20px; border-radius: 12px; }
    .ls-provider-card-inline {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }
    .ls-pci-left {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    .ls-pci-right {
        border-left: none;
        border-top: 1px solid #f1f5f9;
    }
    .ls-featured-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        border-radius: 16px;
    }
    .ls-fb-name { font-size: 1.5rem; }
    .ls-fb-btns { justify-content: center; flex-wrap: wrap; }
    .ls-fb-right { margin-top: 20px; }
    .ls-fb-logo-wrap { width: 80px; height: 80px; }
    .ls-review-summary {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 20px;
    }
    .ls-review-form {
        padding: 24px 20px;
        border-radius: 16px;
    }
    .ls-faq-question { padding: 14px 18px; font-size: 0.9rem; }
    .ls-rev-header { flex-wrap: wrap; }
    .ls-rev-stars-wrap { width: 100%; margin-top: 4px; }
}

@media (max-width: 480px) {
    .ls-title { font-size: 1.2rem; }
    .ls-amount-big { font-size: 1.2rem; }
    .ls-fb-name { font-size: 1.3rem; }
    .ls-fb-amount { font-size: 1.1rem; }
    .ls-fb-btns { flex-direction: column; gap: 8px; }
    .btn-ls-cta { padding: 12px 28px; }
    .ls-hero-card { padding: 24px 16px 20px; }
    .ls-star-picker i { font-size: 1.3rem; }
}

/* ============================================
   AI Summary Box & FAQ Block - SEO 2026
   ============================================ */

/* AI Summary */
.ai-summary-box{background:linear-gradient(135deg,#eff6ff 0%,#dbeafe 100%);border:1.5px solid #93c5fd;border-radius:12px;margin:20px 0 24px;overflow:hidden}
.ai-summary-header{background:#2563eb;color:#fff;padding:10px 18px;font-size:.9rem;display:flex;align-items:center;gap:8px}
.ai-summary-body{padding:14px 18px;font-size:.95rem;color:#1e293b;line-height:1.7}
.ai-summary-body ul{list-style:none;padding:0;margin:0}
.ai-summary-body ul li{padding:4px 0 4px 22px;position:relative}
.ai-summary-body ul li::before{content:'✓';position:absolute;left:0;color:#2563eb;font-weight:700}

/* FAQ Block */
.faq-block{margin:32px 0 24px}
.faq-block>h2{font-size:1.25rem;font-weight:700;margin-bottom:14px;color:#1e293b;display:flex;align-items:center;gap:8px}
.faq-block>h2 i{color:#2563eb}
.faq-list{display:flex;flex-direction:column;gap:8px}
.faq-item{border:1px solid #e2e8f0;border-radius:8px;overflow:hidden}
.faq-item[open]{border-color:#93c5fd}
.faq-question{padding:14px 18px;font-weight:600;font-size:.95rem;cursor:pointer;list-style:none;display:flex;align-items:center;justify-content:space-between;background:#f8fafc;color:#1e293b;user-select:none}
.faq-question::-webkit-details-marker{display:none}
.faq-question::after{content:'+';font-size:1.2rem;color:#2563eb;font-weight:400;flex-shrink:0;margin-left:12px}
.faq-item[open] .faq-question::after{content:'−'}
.faq-item[open] .faq-question{background:#eff6ff;color:#1d4ed8}
.faq-answer{padding:14px 18px;font-size:.93rem;line-height:1.7;color:#374151;border-top:1px solid #e2e8f0;background:#fff}
/* ============================================
   UI UPGRADE v2.0 - Modern Redesign
   Scroll Animations, New Sections, Enhanced UX
   ============================================ */

/* === Reveal / Scroll Animations === */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
    opacity: 0; transform: translateX(-28px);
    transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0; transform: translateX(28px);
    transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* === Enhanced Sticky Header === */
.site-header { transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease; }
.site-header.scrolled {
    background: rgba(255,255,255,.96) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 32px rgba(0,0,0,.09) !important;
}

/* === Enhanced Hero Section === */
.hero-section {
    background: linear-gradient(135deg, #0a0f1e 0%, #0c1740 40%, #1a2d6b 75%, #0a0f1e 100%);
    padding: 90px 0 80px;
}
.hero-title { font-size: 3.2rem; letter-spacing: -.5px; }
.hero-stats { gap: 0; }
.stat-number { font-size: 2rem; }

/* === Trending Bar === */
.trending-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-lighter);
    padding: 12px 0;
}
.trending-inner {
    display: flex; align-items: center; gap: 14px;
    overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
    flex-wrap: nowrap;
}
.trending-inner::-webkit-scrollbar { display: none; }
.trending-label {
    display: flex; align-items: center; gap: 6px;
    color: var(--danger); font-weight: 700; font-size: .82rem;
    white-space: nowrap; flex-shrink: 0;
    background: #fff5f5; padding: 6px 12px; border-radius: 20px;
    border: 1px solid #fecaca;
}
.trending-label i { font-size: .85rem; }
.trending-tags { display: flex; gap: 8px; flex-wrap: nowrap; flex: 1; }
.trending-tag {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 14px; border-radius: 20px;
    background: var(--gray-bg); border: 1px solid var(--gray-lighter);
    color: var(--dark-2); font-size: .82rem; font-weight: 500;
    white-space: nowrap; transition: var(--transition); text-decoration: none;
}
.trending-tag:hover {
    background: var(--primary-light); color: var(--primary);
    border-color: var(--primary); transform: translateY(-1px);
    text-decoration: none;
}
.trending-tag .tag-num {
    background: var(--primary); color: white;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 700; flex-shrink: 0;
}
/* Tablet & Mobile Responsive */
@media (max-width: 900px) {
    .trending-bar { padding: 10px 0; }
    .trending-inner { gap: 12px; }
    .trending-label { padding: 5px 10px; font-size: .78rem; gap: 5px; }
    .trending-tags { gap: 6px; }
    .trending-tag { padding: 5px 12px; font-size: .78rem; }
}
@media (max-width: 640px) {
    .trending-bar { padding: 8px 0; }
    .trending-inner {
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .trending-label {
        padding: 4px 8px;
        font-size: .75rem;
        gap: 4px;
        flex-shrink: 0;
    }
    .trending-tags {
        gap: 5px;
        flex-wrap: nowrap;
    }
    .trending-tag {
        padding: 4px 10px;
        font-size: .75rem;
    }
    .trending-tag .tag-num { width: 16px; height: 16px; font-size: .65rem; }
}
@media (max-width: 480px) {
    .trending-bar { padding: 6px 0; }
    .trending-inner { gap: 6px; }
    .trending-label { padding: 3px 6px; font-size: .7rem; }
    .trending-tags { gap: 4px; }
    .trending-tag { padding: 3px 8px; font-size: .7rem; }
}

/* === Coupon Spotlight Section === */
.coupon-spotlight-section {
    background: #f8fafc;
    padding: 64px 0;
}
.spotlight-header { margin-bottom: 28px; }
.spotlight-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 14px; background: #2563eb;
    color: white; border-radius: 6px; font-size: .73rem; font-weight: 700;
    margin-bottom: 10px; text-transform: uppercase; letter-spacing: .6px;
}
.spotlight-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.spotlight-card {
    background: white; border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    padding: 18px 18px; display: flex; align-items: flex-start; gap: 12px;
    transition: var(--transition); position: relative; overflow: hidden;
}
.spotlight-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 16px rgba(37,99,235,.1);
    transform: translateY(-2px);
}
.spotlight-card-accent {
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%; background: #2563eb;
}
.spotlight-store-logo {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: var(--radius-sm); overflow: hidden;
    background: #f1f5f9;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #e2e8f0;
}
.spotlight-store-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.spotlight-body { flex: 1; min-width: 0; }
.spotlight-store { font-size: .72rem; color: #64748b; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 3px; }
.spotlight-discount { font-size: 1.2rem; font-weight: 800; color: #1e293b; line-height: 1.2; margin-bottom: 4px; }
.spotlight-desc { font-size: .78rem; color: #94a3b8; line-height: 1.5; }
.spotlight-code {
    display: flex; align-items: center; gap: 6px; margin-top: 10px; flex-wrap: wrap;
}
.spotlight-code-text {
    font-family: 'Courier New', monospace; font-size: .78rem; font-weight: 700;
    background: #f1f5f9; color: #1e293b;
    padding: 3px 10px; border-radius: 4px; border: 1px dashed #cbd5e1;
    letter-spacing: .8px;
}
.spotlight-copy-btn {
    padding: 3px 10px; background: #2563eb; color: white;
    border-radius: 4px; font-size: .74rem; font-weight: 700;
    transition: var(--transition); cursor: pointer; border: none;
    font-family: inherit;
}
.spotlight-copy-btn:hover { background: #0891b2; }
.spotlight-link {
    display: inline-flex; align-items: center; gap: 4px;
    margin-top: 8px; padding: 4px 12px;
    background: #f1f5f9; color: #2563eb; border-radius: 6px;
    font-size: .76rem; font-weight: 600; text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}
.spotlight-link:hover { background: #2563eb; color: white; border-color: #2563eb; }
.spotlight-footer { text-align: center; margin-top: 32px; }
.spotlight-all-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 32px; background: #1e293b; color: white;
    border-radius: var(--radius); font-weight: 700; font-size: .95rem;
    transition: var(--transition); text-decoration: none;
}
.spotlight-all-link:hover {
    background: #0891b2; color: white;
    transform: translateY(-2px);
}

/* === Coupon Cards (shared: ma-giam-gia + homepage spotlight) === */
.coupons-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 14px;
}
.coupon-card {
    display: flex; background: #fff; border: none;
    border-radius: 10px; overflow: hidden; transition: all .3s;
    box-shadow: 0 1px 3px rgba(0,0,0,.08); min-height: auto;
}
.coupon-card:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,0,0,.12); }
.coupon-left {
    width: 95px; min-height: 120px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 8px 6px;
    position: relative; flex-shrink: 0; font-weight: 700; background: transparent;
}
.coupon-left::after { display: none; }
.coupon-store-icon {
    font-size: 1.3rem; color: #fff; margin-bottom: 4px;
    display: flex; align-items: center; justify-content: center;
    width: 45px; height: 45px; border-radius: 50%;
}
.coupon-store-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.coupon-store-label {
    font-size: .6rem; color: #333; font-weight: 700;
    text-align: center; line-height: 1; text-transform: uppercase;
    letter-spacing: .1px; max-width: 85px;
}
.coupon-right {
    flex: 1; padding: 8px 10px;
    display: flex; flex-direction: column; justify-content: space-between;
    min-width: 0; gap: 2px;
}
.coupon-discount { display: flex; align-items: baseline; gap: 3px; margin-bottom: 2px; }
.coupon-discount-label { font-size: .6rem; color: #999; font-weight: 600; text-transform: uppercase; }
.coupon-discount-value { font-size: 1.3rem; font-weight: 900; color: #2563eb; line-height: 1; }
.coupon-min { font-size: .65rem; color: #64748b; margin-bottom: 2px; font-weight: 500; }
.coupon-desc {
    font-size: .65rem; color: #64748b; line-height: 1; margin-bottom: 4px;
    font-weight: 500; font-style: italic;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
    overflow: hidden; cursor: pointer; transition: all .2s; word-wrap: break-word;
}
.coupon-desc:hover { color: #1e293b; text-decoration: underline; }
.coupon-card.expanded .coupon-desc { -webkit-line-clamp: unset; overflow: visible; }
.coupon-detail-toggle {
    font-size: .6rem; color: #2563eb; font-weight: 600;
    text-decoration: none; white-space: nowrap; cursor: pointer;
    transition: all .2s; display: inline-block;
}
.coupon-detail-toggle:hover { text-decoration: underline; color: #0891b2; }
.coupon-detail {
    display: none; font-size: .75rem; line-height: 1.6;
    color: #475569; padding: 8px 0; border-top: 1px dashed #e2e8f0; margin-bottom: 6px;
}
.coupon-card.expanded .coupon-detail { display: block; }
.coupon-detail-row { margin-bottom: 4px; }
.coupon-detail-lbl { color: #94a3b8; font-weight: 600; }
.coupon-detail-block { margin-top: 8px; }
.coupon-detail-block a { word-break: break-all; }
.coupon-detail-note { background: #f1f5f9; border-radius: 6px; padding: 8px 10px; margin-top: 8px; border-left: 3px solid #2563eb; }
.coupon-footer { display: flex; align-items: center; justify-content: space-between; gap: 3px; margin-top: auto; flex-wrap: wrap; }
.coupon-expire { font-size: .55rem; color: #ef4444; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.coupon-expire i { margin-right: 2px; }
.coupon-actions { display: flex; gap: 3px; align-items: center; margin-left: auto; flex-shrink: 0; }
.coupon-btn {
    padding: 4px 8px; border-radius: 4px; font-size: .55rem; font-weight: 700;
    text-decoration: none; cursor: pointer; border: none; transition: all .2s;
    white-space: nowrap; text-transform: uppercase; letter-spacing: .1px;
}
.coupon-btn:hover { transform: scale(1.05); }
.coupon-btn-primary { background: #2563eb; color: #fff; box-shadow: 0 2px 4px rgba(37,99,235,.2); }
.coupon-btn-primary:hover { background: #0891b2; box-shadow: 0 4px 8px rgba(8,145,178,.3); }
.coupon-btn-outline { background: #f1f5f9; color: #2563eb; border: 1px solid #cbd5e1; }
.coupon-btn-outline:hover { background: #e2e8f0; }
.coupon-btn-copy { background: #2563eb; color: #fff; box-shadow: 0 2px 4px rgba(37,99,235,.2); }
.coupon-btn-copy:hover { background: #0891b2; box-shadow: 0 4px 8px rgba(8,145,178,.3); }
.coupon-link-text { font-size: .6rem; color: #2563eb; text-decoration: none; font-weight: 600; font-style: italic; white-space: nowrap; display: block; }
.coupon-link-text:hover { text-decoration: underline; }
.coupon-code-display {
    font-family: monospace; background: #f1f5f9; color: #1e293b;
    padding: 2px 6px; border-radius: 2px; font-weight: 700;
    font-size: .55rem; border: 1px dashed #94a3b8; display: none;
}
.coupon-remaining { font-size: .72rem; color: #ef4444; font-weight: 600; }
.coupon-hidden { display: none !important; }

/* === Newsletter Section === */
.newsletter-section {
    background: linear-gradient(135deg, #1d4ed8, #2563eb, #3b82f6);
    padding: 64px 0; position: relative; overflow: hidden; color: white;
}
.newsletter-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.newsletter-section::after {
    content: '';
    position: absolute; top: -50%; right: -10%;
    width: 500px; height: 500px; border-radius: 50%;
    background: rgba(255,255,255,.04); pointer-events: none;
}
.newsletter-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: 56px; flex-wrap: wrap;
}
.newsletter-text { flex: 1; min-width: 250px; }
.newsletter-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.15); padding: 4px 14px; border-radius: 20px;
    font-size: .75rem; font-weight: 700; margin-bottom: 12px;
    letter-spacing: .5px; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.2);
}
.newsletter-text h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 8px; line-height: 1.2; }
.newsletter-text p { opacity: .85; font-size: .95rem; line-height: 1.6; }
.newsletter-form-wrap { flex: 1.2; min-width: 280px; }
.newsletter-form {
    display: flex; gap: 0;
    background: rgba(255,255,255,.14); border-radius: 50px;
    padding: 6px; border: 1px solid rgba(255,255,255,.25);
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.newsletter-form input {
    flex: 1; padding: 12px 22px; background: transparent;
    border: none; outline: none; color: white; font-size: .95rem; min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-form button {
    padding: 12px 30px; background: white; color: var(--primary);
    border-radius: 40px; font-weight: 700; font-size: .9rem;
    transition: var(--transition); white-space: nowrap; flex-shrink: 0; border: none;
    cursor: pointer; font-family: inherit;
}
.newsletter-form button:hover { background: #0891b2; color: white; }
.newsletter-privacy { margin-top: 10px; font-size: .76rem; opacity: .65; text-align: center; }
.newsletter-success {
    display: none; padding: 12px 20px;
    background: rgba(16,185,129,.2); border: 1px solid rgba(16,185,129,.4);
    border-radius: var(--radius); color: #ecfdf5; font-weight: 600; text-align: center;
    margin-top: 10px;
}

/* === Enhanced Category Cards === */
.category-card { position: relative; overflow: hidden; }
.category-card .cat-bg-icon {
    position: absolute; right: -8px; bottom: -8px;
    font-size: 4rem; opacity: .05; color: var(--primary);
    transition: var(--transition); pointer-events: none;
}
.category-card:hover .cat-bg-icon { transform: scale(1.2) rotate(-8deg); opacity: .1; }

/* === Enhanced Post Card === */
.post-card { border: 1px solid transparent; }
.post-card:hover { border-color: var(--primary-light); }

/* === Pulse for HOT items === */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,.4); }
    50% { box-shadow: 0 0 0 6px rgba(245,158,11,0); }
}
.badge-hot { animation: pulse-glow 2.5s ease-in-out infinite; }

/* === Counter Animation === */
@keyframes count-bounce {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}
.stat-number.animating { animation: count-bounce .3s ease forwards; }

/* === Section dividers === */
.section-wave {
    line-height: 0; overflow: hidden;
}
.section-wave svg { display: block; width: 100%; }

/* Responsive - new sections */
@media (max-width: 1024px) {
    .spotlight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.1rem; }
    .stat-item:not(:last-child)::after { display: none; }
    .hero-stats { gap: 28px; }
    .spotlight-grid { grid-template-columns: 1fr; }
    .newsletter-inner { gap: 32px; }
    .newsletter-text h2 { font-size: 1.5rem; }
    .newsletter-form { flex-direction: column; border-radius: var(--radius-lg); }
    .newsletter-form input { padding: 12px 18px; }
    .newsletter-form button { border-radius: var(--radius); padding: 12px; }
}
}
@media (max-width: 480px) {
    .spotlight-grid { grid-template-columns: 1fr; }
}

/* === Trust Card v2 === */
.trust-section { background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%); }
.trust-card-v2 {
    position: relative;
    padding: 36px 28px 28px;
    overflow: hidden;
    border: 1px solid transparent;
}
.trust-card-v2:hover { border-color: var(--gray-lighter); }
.trust-card-top {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--tc, var(--primary));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.trust-icon-v2 {
    width: 68px; height: 68px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin: 0 auto 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transition: transform .3s ease;
}
.trust-card-v2:hover .trust-icon-v2 { transform: scale(1.1) rotate(-4deg); }
.trust-num {
    font-size: .7rem; font-weight: 800; letter-spacing: 2px;
    color: var(--gray-light); text-transform: uppercase;
    margin-bottom: 8px;
}
.trust-card-v2 h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.trust-card-v2 p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* === Trust Card v2 === */
.trust-section { background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%); }
.trust-card-v2 {
    position: relative;
    padding: 36px 28px 28px;
    overflow: hidden;
    border: 1px solid transparent;
}
.trust-card-v2:hover { border-color: var(--gray-lighter); }
.trust-card-top {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--tc, var(--primary));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.trust-icon-v2 {
    width: 68px; height: 68px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin: 0 auto 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transition: transform .3s ease;
}
.trust-card-v2:hover .trust-icon-v2 { transform: scale(1.1) rotate(-4deg); }
.trust-num {
    font-size: .7rem; font-weight: 800; letter-spacing: 2px;
    color: var(--gray-light); text-transform: uppercase;
    margin-bottom: 8px;
}
.trust-card-v2 h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.trust-card-v2 p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* === Trust Card v2 === */
.trust-section { background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%); }
.trust-card-v2 { position: relative; padding: 36px 28px 28px; overflow: hidden; border: 1px solid transparent; }
.trust-card-v2:hover { border-color: var(--gray-lighter); }
.trust-card-top { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--tc, var(--primary)); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.trust-icon-v2 { width: 68px; height: 68px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 12px; box-shadow: 0 4px 16px rgba(0,0,0,.08); transition: transform .3s ease; }
.trust-card-v2:hover .trust-icon-v2 { transform: scale(1.1) rotate(-4deg); }
.trust-num { font-size: .7rem; font-weight: 800; letter-spacing: 2px; color: var(--gray-light); text-transform: uppercase; margin-bottom: 8px; }
.trust-card-v2 h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.trust-card-v2 p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* === Latest Reviews - Editorial Layout === */
.latest-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Main big card */
.latest-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.latest-main-img {
    display: block; position: relative;
    aspect-ratio: 4/3; overflow: hidden;
}
.latest-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.latest-main:hover .latest-main-img img { transform: scale(1.04); }
.latest-main-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,10,20,.88) 0%, rgba(10,10,20,.4) 60%, transparent 100%);
    padding: 28px 24px 24px;
    color: white;
}
.lm-cat {
    display: inline-block; padding: 3px 10px; border-radius: 4px;
    background: var(--secondary); color: white; font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px;
    text-decoration: none;
}
.lm-cat:hover { background: var(--secondary-dark); color: white; }
.latest-main-overlay h2 { font-size: 1.25rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.latest-main-overlay h2 a { color: white; }
.latest-main-overlay h2 a:hover { color: var(--secondary); }
.lm-meta { display: flex; align-items: center; gap: 16px; font-size: .8rem; opacity: .8; }

/* Side cards list */
.latest-side { display: flex; flex-direction: column; gap: 14px; }
.latest-side-card {
    display: flex; gap: 14px; background: var(--white);
    border-radius: var(--radius); padding: 12px;
    box-shadow: var(--shadow); border: 1px solid transparent;
    transition: var(--transition);
}
.latest-side-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); transform: translateX(4px); }
.lsc-img {
    width: 100px; height: 76px; flex-shrink: 0;
    border-radius: var(--radius-sm); overflow: hidden;
    display: block; position: relative;
}
.lsc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.latest-side-card:hover .lsc-img img { transform: scale(1.06); }
.lsc-rating {
    position: absolute; bottom: 4px; right: 4px;
    background: var(--secondary); color: white;
    font-size: .68rem; font-weight: 700;
    padding: 2px 6px; border-radius: 4px;
    display: flex; align-items: center; gap: 3px;
}
.lsc-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.lsc-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.lsc-meta time { font-size: .74rem; color: var(--gray-light); }
.lsc-body h3 { font-size: .9rem; font-weight: 700; line-height: 1.4; margin: 0; }
.lsc-body h3 a { color: var(--dark); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lsc-body h3 a:hover { color: var(--primary); }
.lsc-excerpt { font-size: .78rem; color: var(--gray); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.lsc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 2px; }
.lsc-footer .views { font-size: .75rem; color: var(--gray-light); }
.lsc-footer .read-more { font-size: .78rem; }

@media (max-width: 900px) {
    .latest-layout { grid-template-columns: 1fr; }
    .latest-main-img { aspect-ratio: 16/9; }
    .latest-side { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .latest-side { grid-template-columns: 1fr; }
    .lsc-img { width: 80px; height: 64px; }
}

/* === Latest Reviews - Horizontal Row List (distinct from Featured) === */
.latest-section { background: var(--white); }
.latest-list { display: flex; flex-direction: column; gap: 0; }

.latest-row {
    display: grid;
    grid-template-columns: 44px 200px 1fr;
    gap: 0 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-lighter);
    transition: var(--transition);
}
.latest-row:first-child { padding-top: 0; }
.latest-row:last-child { border-bottom: none; }
.latest-row:hover { background: transparent; }
.latest-row:hover .latest-row-img img { transform: scale(1.05); }

/* Number */
.latest-row-num {
    font-size: 1.8rem; font-weight: 900;
    color: var(--gray-lighter);
    line-height: 1; text-align: center;
    font-variant-numeric: tabular-nums;
    transition: color .3s;
}
.latest-row:hover .latest-row-num { color: var(--primary-light); }
.latest-row:nth-child(1) .latest-row-num { color: #fde68a; }
.latest-row:nth-child(2) .latest-row-num { color: #d1d5db; }
.latest-row:nth-child(3) .latest-row-num { color: #fed7aa; }

/* Thumbnail */
.latest-row-img {
    display: block; border-radius: var(--radius);
    overflow: hidden; aspect-ratio: 4/3; flex-shrink: 0;
}
.latest-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }

/* Body */
.latest-row-body { min-width: 0; }
.latest-row-meta {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 8px; flex-wrap: wrap;
}
.latest-row-meta time { font-size: .78rem; color: var(--gray-light); }
.latest-row-body h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.latest-row-body h3 a { color: var(--dark); }
.latest-row-body h3 a:hover { color: var(--primary); }
.latest-row-excerpt { font-size: .88rem; color: var(--gray); line-height: 1.6; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.latest-row-footer {
    display: flex; align-items: center; gap: 16px;
}
.latest-row-footer .views { font-size: .8rem; color: var(--gray-light); }
.latest-row-rating { font-size: .8rem; color: var(--secondary-dark); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.latest-row-rating i { color: var(--secondary); }
.latest-row-footer .read-more { margin-left: auto; }

@media (max-width: 768px) {
    .latest-row { grid-template-columns: 32px 120px 1fr; gap: 0 14px; }
    .latest-row-num { font-size: 1.3rem; }
    .latest-row-body h3 { font-size: .92rem; }
    .latest-row-excerpt { display: none; }
}
@media (max-width: 480px) {
    .latest-row { grid-template-columns: 28px 90px 1fr; gap: 0 10px; padding: 16px 0; }
    .latest-row-num { font-size: 1.1rem; }
}

/* === Latest Cards Grid (6 cards, 3 cols) === */
.latest-section { background: #f8fafc; }
.latest-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.lc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(37,99,235,.1);
    border-color: var(--primary-light);
}

/* Image */
.lc-img {
    display: block; position: relative;
    aspect-ratio: 16/10; overflow: hidden;
    flex-shrink: 0;
}
.lc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.lc-card:hover .lc-img img { transform: scale(1.06); }

.lc-badges {
    position: absolute; top: 10px; left: 10px;
    display: flex; gap: 6px; flex-wrap: wrap;
}
.lc-badge-new {
    background: var(--accent); color: white;
    font-size: .65rem; font-weight: 800; letter-spacing: .8px;
    padding: 3px 8px; border-radius: 4px;
}
.lc-badge-rating {
    background: var(--secondary); color: white;
    font-size: .72rem; font-weight: 700;
    padding: 3px 8px; border-radius: 4px;
    display: flex; align-items: center; gap: 3px;
}

/* Body */
.lc-body {
    padding: 18px 20px 20px;
    display: flex; flex-direction: column; flex: 1;
}
.lc-top {
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px; margin-bottom: 10px;
}
.lc-top time { font-size: .75rem; color: var(--gray-light); white-space: nowrap; }
.lc-cat {
    display: inline-block; padding: 3px 10px; border-radius: 20px;
    background: var(--primary-light); color: var(--primary);
    font-size: .72rem; font-weight: 700; text-decoration: none;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 110px;
    transition: var(--transition);
}
.lc-cat:hover { background: var(--primary); color: white; }

.lc-body h3 {
    font-size: .98rem; font-weight: 700; line-height: 1.45;
    margin-bottom: 8px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.lc-body h3 a { color: var(--dark); }
.lc-body h3 a:hover { color: var(--primary); }

.lc-excerpt {
    font-size: .83rem; color: var(--gray); line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.lc-footer {
    display: flex; align-items: center; gap: 12px;
    padding-top: 12px; border-top: 1px solid var(--gray-lighter);
    margin-top: auto;
}
.lc-views { font-size: .78rem; color: var(--gray-light); display: flex; align-items: center; gap: 4px; }
.lc-read {
    margin-left: auto; font-size: .8rem; font-weight: 700;
    color: var(--primary); display: flex; align-items: center; gap: 5px;
    transition: gap .2s ease;
}
.lc-read:hover { gap: 9px; color: var(--primary-dark); }

@media (max-width: 1024px) { .latest-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .latest-cards-grid { grid-template-columns: 1fr; gap: 16px; } }

/* === Featured Grid - Redesigned === */
.featured-section { background: var(--white); }
.featured-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; }

/* Main card - full image with overlay */
.featured-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.featured-main-img {
    display: block; position: relative;
    overflow: hidden; aspect-ratio: 3/2;
}
.featured-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.featured-main:hover .featured-main-img img { transform: scale(1.04); }

/* Gradient overlay on main image */
.featured-main-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(8,8,20,.9) 0%, rgba(8,8,20,.55) 55%, transparent 100%);
    padding: 32px 24px 24px;
}
.fm-cat-overlay {
    display: inline-block; padding: 3px 12px; border-radius: 4px;
    background: var(--secondary); color: white;
    font-size: .7rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .6px; margin-bottom: 10px; text-decoration: none;
}
.fm-cat-overlay:hover { background: var(--secondary-dark); color: white; }
.featured-main-overlay h3 { font-size: 1.3rem; font-weight: 800; line-height: 1.4; margin-bottom: 12px; }
.featured-main-overlay h3 a { color: white; }
.featured-main-overlay h3 a:hover { color: var(--secondary); }
.fm-overlay-meta { display: flex; align-items: center; gap: 14px; }
.fm-rating-overlay {
    display: flex; align-items: center; gap: 4px;
    font-size: .78rem; font-weight: 700;
    background: var(--secondary); color: white;
    padding: 2px 8px; border-radius: 4px;
}
.fm-rating-overlay i { font-size: .7rem; }
.fm-author-overlay { font-size: .78rem; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 5px; }

/* Side cards */
.featured-side { display: flex; flex-direction: column; gap: 12px; }
.featured-side-card {
    display: flex; gap: 0;
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; border: 1px solid var(--gray-lighter);
    transition: var(--transition);
}
.featured-side-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateX(4px); }

.fsc-img {
    width: 120px; flex-shrink: 0;
    display: block; position: relative; overflow: hidden;
}
.fsc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.featured-side-card:hover .fsc-img img { transform: scale(1.07); }
.fsc-rating {
    position: absolute; bottom: 5px; left: 5px;
    background: var(--secondary); color: white;
    font-size: .65rem; font-weight: 700;
    padding: 2px 6px; border-radius: 3px;
    display: flex; align-items: center; gap: 3px;
}

.fsc-body {
    flex: 1; padding: 12px 14px;
    display: flex; flex-direction: column; justify-content: space-between; min-width: 0;
}
.fsc-body .fm-cat {
    background: var(--primary-light); color: var(--primary);
    border-radius: 20px; font-size: .68rem; padding: 2px 9px;
    margin-bottom: 6px; display: inline-block; width: fit-content;
}
.fsc-body h4 { font-size: .88rem; font-weight: 700; line-height: 1.4; margin: 0 0 8px; }
.fsc-body h4 a { color: var(--dark); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fsc-body h4 a:hover { color: var(--primary); }
.fsc-footer { display: flex; align-items: center; justify-content: space-between; }
.fsc-footer .fm-author { font-size: .72rem; color: var(--gray-light); display: flex; align-items: center; gap: 4px; }
.fsc-read { font-size: .72rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.fsc-read:hover { gap: 7px; color: var(--primary-dark); }

@media (max-width: 900px) {
    .featured-grid { grid-template-columns: 1fr; }
    .featured-main-overlay h3 { font-size: 1.1rem; }
}
@media (max-width: 600px) {
    .featured-main-img { aspect-ratio: 16/9; }
    .fsc-img { width: 90px; }
}

/* === Header v2 Redesign === */
/* Fix: sticky must not be overridden; use pseudo on inner wrapper */
.site-header {
    border-bottom: none !important;
    box-shadow: 0 1px 0 rgba(0,0,0,.07), 0 3px 12px rgba(0,0,0,.05) !important;
}
.header-inner {
    position: relative;
    transition: height .3s ease;
}
/* Gradient accent top bar (on inner so sticky is not broken) */
.header-inner::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #6366f1 60%, var(--secondary) 100%);
    z-index: 2;
}
/* Divider before actions */
.header-actions {
    gap: 10px;
}
.header-actions::before {
    content: '';
    display: block;
    width: 1px; height: 22px;
    background: var(--gray-lighter);
    margin-right: 2px;
    flex-shrink: 0;
}
/* Nav spacing */
.nav-menu { gap: 2px; }
.nav-link {
    position: relative;
    padding: 7px 13px;
    font-size: .9rem;
    letter-spacing: .01em;
}
/* Nav underline slide animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 13px; right: 13px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}
.nav-link:hover { background: transparent !important; color: var(--primary); }
.nav-link:hover::after,
.nav-link.current::after { transform: scaleX(1); }
.nav-link.current { color: var(--primary); font-weight: 600; background: transparent !important; }
/* CTA pill button */
.header-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px; border-radius: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    color: #fff !important; font-size: .84rem; font-weight: 600;
    box-shadow: 0 2px 12px rgba(37,99,235,.25);
    transition: var(--transition);
    white-space: nowrap; letter-spacing: .02em;
    text-decoration: none;
}
.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(37,99,235,.38);
    color: #fff !important;
}
.header-cta i { font-size: .74rem; }
@media (max-width: 900px) { .header-cta { display: none; } }
/* Search toggle as circle */
.search-toggle {
    border-radius: 50% !important;
    border: 1.5px solid var(--gray-lighter) !important;
    background: transparent !important;
    width: 38px !important; height: 38px !important;
}
.search-toggle:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}
/* Scrolled: compact header */
.site-header.scrolled .header-inner { height: 60px; }
.site-header.scrolled {
    background: rgba(255,255,255,.97) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 2px 20px rgba(0,0,0,.09) !important;
}
/* Logo img subtle hover */
.site-logo a { display: flex; align-items: center; }
.site-logo a img { transition: opacity .2s ease; }
.site-logo a:hover img { opacity: .82; }
/* Logo text gradient (no-image fallback) */
.logo-text {
    background: linear-gradient(135deg, var(--primary), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Trust v3 — Split Layout === */
.trust-v3-section {
    padding: 80px 0;
    background: var(--gray-lightest, #f8fafc);
}
.trust-v3-wrap {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
}
/* Left */
.trust-v3-left { display: flex; flex-direction: column; gap: 24px; }
.trust-v3-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 14px; border-radius: 50px;
    background: #dbeafe; color: #1d4ed8;
    font-size: .8rem; font-weight: 600; letter-spacing: .03em;
    width: fit-content;
}
.trust-v3-title {
    font-size: 2.5rem; line-height: 1.2;
    color: var(--dark); margin: 0;
    font-weight: 700;
}
.trust-v3-title strong {
    background: linear-gradient(135deg, var(--primary), #6366f1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.trust-v3-sub {
    color: var(--gray); font-size: 1rem; line-height: 1.7;
    max-width: 420px; margin: 0;
}
.trust-v3-stats {
    display: flex; gap: 32px; padding-top: 8px;
    border-top: 1px solid var(--gray-lighter);
    margin-top: 4px;
}
.tv3-stat { display: flex; flex-direction: column; gap: 2px; }
.tv3-num {
    font-size: 1.9rem; font-weight: 800; color: var(--primary);
    line-height: 1;
}
.tv3-label { font-size: .78rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: .05em; }
/* Right card */
.trust-v3-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 40px rgba(0,0,0,.08);
    padding: 8px;
    display: flex; flex-direction: column; gap: 0;
    overflow: hidden;
}
.tv3-feature {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px 22px;
    border-radius: 14px;
    transition: background .2s ease;
}
.tv3-feature:hover { background: var(--gray-lightest, #f8fafc); }
.tv3-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
}
.tv3-feature h4 {
    font-size: .95rem; font-weight: 700;
    color: var(--dark); margin: 0 0 4px;
}
.tv3-feature p {
    font-size: .84rem; color: var(--gray);
    line-height: 1.6; margin: 0;
}
/* Responsive */
@media (max-width: 900px) {
    .trust-v3-wrap { grid-template-columns: 1fr; gap: 32px; }
    .trust-v3-title { font-size: 1.9rem; }
    .trust-v3-stats { gap: 20px; }
    .tv3-num { font-size: 1.5rem; }
}
@media (max-width: 600px) {
    .trust-v3-section { padding: 52px 0; }
    .trust-v3-title { font-size: 1.6rem; }
}

/* === Footer v2 - Professional Redesign === */
.site-footer { background: linear-gradient(180deg, #0f172a 0%, #1a2744 100%); color: rgba(255,255,255,.75); padding: 0; }
.footer-accent-bar { height: 3px; background: linear-gradient(90deg, var(--primary) 0%, #6366f1 55%, var(--secondary) 100%); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 48px; padding: 56px 0 48px; }
.footer-col-brand .footer-logo { margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.footer-about { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.fbadge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; border-radius: 50px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.65); font-size: .74rem; font-weight: 600; letter-spacing: .02em; border: 1px solid rgba(255,255,255,.1); }
.fbadge i { color: rgba(255,255,255,.85); font-size: .8rem; margin-right: 2px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; color: rgba(255,255,255,.75); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); transition: var(--transition); }
.footer-social a:hover { transform: translateY(-3px); color: #fff; }
.fsc-fb:hover { background: #1877f2 !important; border-color: #1877f2 !important; }
.fsc-yt:hover { background: #ff0000 !important; border-color: #ff0000 !important; }
.fsc-tk:hover { background: #010101 !important; border-color: #555 !important; }
.footer-heading { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); position: relative; }
.footer-heading::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 32px; height: 2px; background: var(--primary); border-radius: 2px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { display: flex; align-items: flex-start; gap: 7px; color: rgba(255,255,255,.62); font-size: .875rem; line-height: 1.5; transition: color .2s ease, gap .2s ease; }
.footer-links a:hover { color: #fff; gap: 10px; }
.footer-links a i { flex-shrink: 0; margin-top: 2px; font-size: .78rem; color: rgba(255,255,255,.35); transition: color .2s ease; }
.footer-links a:hover i { color: var(--primary); }
.fr-dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.25); margin-top: 7px; transition: background .2s ease; }
.footer-recent a:hover .fr-dot { background: var(--primary); }
.footer-contact a i { width: 16px; text-align: center; }
.footer-bottom { display: block; text-align: center; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: .82rem; }
.fb-left p { color: rgba(255,255,255,.55); margin: 0 0 5px; }
.fb-left strong { color: rgba(255,255,255,.8); }
.footer-disclaimer { color: rgba(255,255,255,.35) !important; font-size: .76rem !important; }
.fb-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.fb-right a { color: rgba(255,255,255,.45); font-size: .8rem; white-space: nowrap; transition: color .2s ease; }
.fb-right a:hover { color: #fff; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 32px; } .footer-bottom { flex-direction: column; gap: 12px; } .fb-right { flex-wrap: wrap; gap: 12px; } }

/* Footer logo brighten on dark bg */
.footer-logo img { filter: brightness(0) invert(1); opacity: .9; height: 48px !important; width: auto !important; }

/* Footer bottom simplified */
.footer-bottom p { color: rgba(255,255,255,.55); margin: 0 0 6px; }
.footer-bottom strong { color: rgba(255,255,255,.8); }

/* ============================================
   CATEGORY PAGE - Professional Redesign
   ============================================ */
.cat-hero { position: relative; background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #1d4ed8 100%); color: white; padding: 48px 0 40px; overflow: hidden; }
.cat-hero-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 15% 60%, rgba(99,102,241,.18) 0%, transparent 50%), radial-gradient(circle at 85% 30%, rgba(59,130,246,.12) 0%, transparent 40%); }
.cat-hero > .container { position: relative; z-index: 1; }
.cat-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; margin-bottom: 28px; opacity: .75; flex-wrap: wrap; }
.cat-breadcrumb a { color: rgba(255,255,255,.8); font-weight: 500; }
.cat-breadcrumb a:hover { color: #fff; text-decoration: none; }
.cat-breadcrumb .sep { font-size: .65rem; opacity: .5; }
.cat-breadcrumb span { color: white; font-weight: 600; }
.cat-hero-body { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.cat-hero-icon { width: 64px; height: 64px; border-radius: 18px; flex-shrink: 0; background: linear-gradient(135deg, rgba(99,102,241,.4), rgba(59,130,246,.3)); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: white; box-shadow: 0 8px 24px rgba(0,0,0,.2); backdrop-filter: blur(8px); }
.cat-hero-text h1 { font-size: 2.2rem; font-weight: 900; line-height: 1.15; letter-spacing: -.5px; margin-bottom: 8px; color: white; }
.cat-hero-desc { font-size: 1rem; color: rgba(255,255,255,.72); line-height: 1.6; max-width: 600px; margin: 0; }
.cat-hero-stats { display: flex; align-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 14px 24px; width: fit-content; backdrop-filter: blur(8px); }
.cat-stat { text-align: center; padding: 0 28px; }
.cat-stat:first-child { padding-left: 0; }
.cat-stat:last-child { padding-right: 0; }
.cat-stat-num { display: block; font-size: 1.6rem; font-weight: 900; color: white; letter-spacing: -.5px; line-height: 1; }
.cat-stat-label { display: block; font-size: .72rem; color: rgba(255,255,255,.6); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
.cat-stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.cat-section { padding: 40px 0 60px; }
.cat-featured-post { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 40px; border: 1px solid var(--gray-lighter); transition: var(--transition); }
.cat-featured-post:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.cat-featured-img { display: block; position: relative; overflow: hidden; aspect-ratio: 4/3; }
.cat-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat-featured-post:hover .cat-featured-img img { transform: scale(1.04); }
.cat-featured-rating { position: absolute; top: 16px; right: 16px; background: var(--secondary); color: white; padding: 6px 14px; border-radius: 20px; font-size: .85rem; font-weight: 700; display: flex; align-items: center; gap: 5px; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.cat-featured-label { position: absolute; top: 16px; left: 16px; background: var(--primary); color: white; padding: 5px 12px; border-radius: 6px; font-size: .72rem; font-weight: 700; display: flex; align-items: center; gap: 5px; letter-spacing: .3px; }
.cat-featured-body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.cat-featured-body .post-meta { margin-bottom: 14px; font-size: .85rem; }
.cat-featured-body .post-meta time { display: flex; align-items: center; gap: 5px; color: var(--gray-light); }
.cat-featured-body h2 { font-size: 1.5rem; font-weight: 800; line-height: 1.35; margin-bottom: 14px; color: var(--dark); }
.cat-featured-body h2 a { color: var(--dark); }
.cat-featured-body h2 a:hover { color: var(--primary); text-decoration: none; }
.cat-featured-body > p { color: var(--gray); font-size: .95rem; line-height: 1.7; margin-bottom: 24px; }
.cat-featured-cta { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; background: var(--primary); color: white; border-radius: 50px; font-weight: 700; font-size: .92rem; width: fit-content; box-shadow: 0 4px 14px rgba(37,99,235,.3); transition: var(--transition); }
.cat-featured-cta:hover { background: var(--primary-dark); color: white; text-decoration: none; transform: translateX(3px); box-shadow: 0 6px 20px rgba(37,99,235,.4); }
.cat-featured-cta i { transition: transform .2s; }
.cat-featured-cta:hover i { transform: translateX(3px); }
.cat-grid-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--gray-lighter); }
.cat-grid-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 8px; margin: 0; }
.cat-grid-title i { color: var(--primary); }
.cat-grid-count { font-size: .82rem; color: var(--gray); font-weight: 500; background: var(--gray-bg); padding: 4px 12px; border-radius: 20px; }
.cat-pagination { display: flex; align-items: center; justify-content: space-between; margin-top: 40px; padding: 20px 24px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); gap: 12px; flex-wrap: wrap; }
.cat-pag-info { font-size: .85rem; color: var(--gray); font-weight: 500; }
.cat-pag-links { display: flex; align-items: center; gap: 6px; }
.cat-pag-btn { display: flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 8px; background: var(--primary); color: white; font-weight: 600; font-size: .88rem; transition: var(--transition); }
.cat-pag-btn:hover { background: var(--primary-dark); color: white; text-decoration: none; }
.cat-pag-num { display: flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--gray-lighter); color: var(--dark-2); font-weight: 600; font-size: .9rem; background: var(--white); transition: var(--transition); }
.cat-pag-num:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); text-decoration: none; }
.cat-pag-num.active { background: var(--primary); color: white; border-color: var(--primary); }
@media (max-width: 900px) { .cat-featured-post { grid-template-columns: 1fr; } .cat-featured-img { aspect-ratio: 16/9; } .cat-featured-body { padding: 24px 20px; } .cat-featured-body h2 { font-size: 1.25rem; } }
@media (max-width: 768px) { .cat-hero { padding: 32px 0 28px; } .cat-hero-icon { width: 52px; height: 52px; font-size: 1.3rem; } .cat-hero-text h1 { font-size: 1.7rem; } .cat-hero-stats { width: 100%; justify-content: space-evenly; padding: 12px 16px; } .cat-stat { padding: 0 16px; } .cat-stat-num { font-size: 1.3rem; } .cat-grid-header { flex-direction: column; align-items: flex-start; gap: 8px; } .cat-pagination { flex-direction: column; align-items: center; } }
@media (max-width: 480px) { .cat-hero-text h1 { font-size: 1.4rem; } .cat-hero-body { flex-direction: column; align-items: flex-start; } .cat-hero-stats { gap: 0; } .cat-stat { padding: 0 12px; } .cat-stat-div { height: 28px; } .cat-featured-body { padding: 18px 16px; } .cat-featured-cta { width: 100%; justify-content: center; } }
