/*
Theme Name: Kiesly
Theme URI: https://kiesly.nl
Author: Kiesly
Author URI: https://kiesly.nl
Description: Premium tech WordPress theme voor review portals (VPN, antivirus, webhosting). Asymmetrische hero met card stack, 4-card comparison, horizontale categorieën. Geoptimaliseerd voor de Nederlandse markt.
Version: 1.0.0
Tested up to: 6.5
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kiesly
Tags: blog, news, custom-colors, custom-logo, custom-menu, featured-images, translation-ready
*/

:root {
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-dark: #0F172A;
  --bg-darker: #020617;
  --text: #0F172A;
  --text-mid: #475569;
  --text-low: #94A3B8;
  --text-on-dark: #F1F5F9;
  --text-on-dark-low: #94A3B8;
  --accent: #0D9488;
  --accent-hover: #0F766E;
  --accent-light: #CCFBF1;
  --accent-pale: #F0FDFA;
  --gold: #F59E0B;
  --success: #10B981;
  --danger: #EF4444;
  --info: #3B82F6;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-full: 9999px;
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 80px; --s-10: 120px;
  --max: 1280px;
  --shadow: 0 1px 3px rgba(15,23,42,0.04), 0 1px 2px rgba(15,23,42,0.02);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.06), 0 2px 4px rgba(15,23,42,0.03);
  --shadow-lg: 0 16px 48px rgba(15,23,42,0.1), 0 4px 12px rgba(15,23,42,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); font-size: 16px; line-height: 1.5;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; letter-spacing: -0.011em;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--s-5); }

/* TOP BAR */
.top-bar { background: var(--bg-dark); color: var(--text-on-dark-low); font-size: 12px; padding: 7px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: var(--text-on-dark-low); }
.top-bar a:hover { color: white; }
.top-bar-right { display: flex; gap: var(--s-5); align-items: center; }
.top-bar-rating { display: flex; align-items: center; gap: 6px; }
.top-bar-rating svg { width: 12px; height: 12px; fill: var(--gold); }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.site-logo { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); display: inline-flex; align-items: center; gap: 6px; }
.site-logo img { max-height: 40px; width: auto; }
.logo-check { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: var(--accent); color: white; border-radius: var(--r-sm); transform: rotate(-3deg); }
.logo-check svg { width: 18px; height: 18px; stroke-width: 3; }

.main-nav { display: flex; align-items: center; gap: 2px; list-style: none; }
.main-nav .menu-item { position: relative; }
.main-nav a { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--text); border-radius: var(--r-sm); }
.main-nav a:hover { background: var(--accent-pale); color: var(--accent); }
.main-nav .menu-item-has-children > a::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; margin-left: 4px; }
.main-nav .sub-menu { position: absolute; top: 100%; left: 0; min-width: 250px; background: white; border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 6px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(-4px); transition: all 0.2s ease; }
.main-nav .menu-item-has-children:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub-menu a { display: block; padding: 10px 14px; font-size: 14px; border-radius: var(--r-sm); font-weight: 500; }
.main-nav .sub-menu a:hover { background: var(--accent-pale); color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: var(--s-3); }
.icon-btn { width: 40px; height: 40px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--text); border: 1px solid var(--border); }
.icon-btn:hover { background: var(--bg-alt); border-color: var(--text); }

.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; font-size: 14px; font-weight: 600; border-radius: var(--r-sm); transition: all 0.2s; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); color: white; transform: translateY(-1px); }
.btn-dark { background: var(--text); color: white; }
.btn-dark:hover { background: #1E293B; color: white; }
.btn-outline { background: white; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text); background: var(--bg-alt); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.mobile-toggle { display: none; }

/* HERO */
.hero { padding: var(--s-9) 0 var(--s-10); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%); z-index: -1; opacity: 0.6; }
.hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--s-8); align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: var(--accent-pale); color: var(--accent); font-size: 13px; font-weight: 700; border-radius: var(--r-full); margin-bottom: var(--s-5); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-eyebrow svg { width: 14px; height: 14px; fill: var(--accent); }
.hero h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.02; font-weight: 800; letter-spacing: -0.035em; margin-bottom: var(--s-5); }
.hero h1 .accent { color: var(--accent); position: relative; }
.hero h1 .accent::after { content: ''; position: absolute; bottom: 0.08em; left: 0; right: 0; height: 8px; background: var(--accent-light); z-index: -1; }
.hero p { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; color: var(--text-mid); margin-bottom: var(--s-6); max-width: 520px; }
.hero-actions { display: flex; gap: var(--s-3); margin-bottom: var(--s-7); flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); padding-top: var(--s-6); border-top: 1px solid var(--border); }
.hero-stat strong { display: block; font-size: 32px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); line-height: 1; margin-bottom: 4px; }
.hero-stat strong .accent { color: var(--accent); }
.hero-stat span { font-size: 13px; color: var(--text-mid); font-weight: 500; }

.hero-visual { position: relative; }
.hero-card-stack { position: relative; width: 100%; aspect-ratio: 4 / 5; }
.hero-card-mock { position: absolute; width: 75%; padding: var(--s-5); background: white; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border-light); }
.hero-card-mock-1 { top: 0; right: 0; transform: rotate(2deg); }
.hero-card-mock-2 { top: 28%; right: 12%; transform: rotate(-3deg); z-index: 1; }
.hero-card-mock-3 { bottom: 5%; right: 5%; transform: rotate(1deg); z-index: 2; }
.hero-card-rank { display: inline-flex; align-items: center; justify-content: center; padding: 4px 12px; background: var(--gold); color: white; border-radius: var(--r-full); font-weight: 800; font-size: 12px; margin-bottom: var(--s-3); }
.hero-card-mock-2 .hero-card-rank { background: var(--text); padding: 4px 10px; }
.hero-card-mock-3 .hero-card-rank { background: var(--text-mid); padding: 4px 10px; }
.hero-card-name { font-weight: 700; font-size: 17px; margin-bottom: 4px; }
.hero-card-tagline { font-size: 13px; color: var(--text-mid); margin-bottom: var(--s-3); }
.hero-card-rating { display: flex; align-items: center; gap: 6px; }
.hero-card-rating .score { font-size: 22px; font-weight: 800; color: var(--accent); }
.hero-card-rating .stars { display: flex; gap: 1px; }
.hero-card-rating .stars svg { width: 12px; height: 12px; fill: var(--gold); }

/* TRUST STRIP */
.trust-strip { background: var(--bg-dark); color: var(--text-on-dark); padding: var(--s-5) 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: var(--s-3); font-size: 14px; }
.trust-item svg { width: 22px; height: 22px; color: var(--accent); stroke-width: 2; }
.trust-item strong { color: white; font-weight: 600; }

/* SECTION HEAD */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: var(--s-7); gap: var(--s-5); }
.section-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 700; margin-bottom: var(--s-2); display: block; }
.section-title { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; }
.section-link { font-size: 14px; font-weight: 600; color: var(--text); display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--r-sm); border: 1px solid var(--border); }
.section-link:hover { background: var(--text); color: white; border-color: var(--text); }

section { padding: var(--s-9) 0; }
.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section-dark .section-eyebrow { color: #5EEAD4; }
.section-dark .section-title { color: white; }
.section-dark .section-link { color: white; border-color: rgba(255,255,255,0.2); }
.section-dark .section-link:hover { background: white; color: var(--text); }
.section-alt { background: var(--bg-alt); }

/* CARD COMPARISON */
.cards-comparison { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.product-card { background: white; border: 2px solid var(--border); border-radius: var(--r-xl); padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); position: relative; transition: all 0.3s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.product-card.winner { border-color: var(--accent); background: linear-gradient(180deg, var(--accent-pale) 0%, white 30%); }
.product-card-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 11px; font-weight: 800; padding: 5px 14px; border-radius: var(--r-full); text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.product-card-rank { font-size: 13px; color: var(--text-low); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.product-card-name { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.product-card-tagline { font-size: 14px; color: var(--text-mid); line-height: 1.4; min-height: 40px; }
.product-card-rating { display: flex; align-items: baseline; gap: 6px; padding: var(--s-3) 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.product-card-rating .score { font-size: 36px; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; line-height: 1; }
.product-card-rating .of { font-size: 14px; color: var(--text-mid); }
.product-card-rating .stars { display: flex; gap: 1px; margin-left: auto; }
.product-card-rating .stars svg { width: 14px; height: 14px; fill: var(--gold); }
.product-card-specs { display: flex; flex-direction: column; gap: var(--s-2); padding: var(--s-2) 0; }
.product-card-spec { display: flex; justify-content: space-between; font-size: 13px; }
.product-card-spec-label { color: var(--text-mid); }
.product-card-spec-value { color: var(--text); font-weight: 700; }
.product-card-price { display: flex; align-items: baseline; gap: 6px; margin-top: auto; padding-top: var(--s-3); flex-wrap: wrap; }
.product-card-price .price { font-size: 28px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.product-card-price .price-cycle { font-size: 13px; color: var(--text-mid); }
.product-card-price .price-original { font-size: 14px; color: var(--text-low); text-decoration: line-through; margin-left: 4px; }
.product-card-cta { display: flex; flex-direction: column; gap: 8px; }
.btn-card { display: flex; align-items: center; justify-content: center; padding: 12px; background: var(--accent); color: white; border-radius: var(--r-sm); font-size: 14px; font-weight: 700; }
.btn-card:hover { background: var(--accent-hover); color: white; }
.btn-card-secondary { background: transparent; color: var(--text-mid); padding: 6px; font-size: 12px; }
.btn-card-secondary:hover { background: transparent; color: var(--accent); }

/* NEWS GRID */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6) var(--s-5); }
.news-card { display: flex; flex-direction: column; gap: var(--s-3); }
.news-card-image { aspect-ratio: 16 / 10; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(135deg, var(--accent) 0%, #0EA5E9 100%); position: relative; transition: transform 0.3s ease; }
.news-card:hover .news-card-image { transform: scale(1.02); }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; }
.news-card-image.vpn { background: linear-gradient(135deg, #0D9488 0%, #0EA5E9 100%); }
.news-card-image.antivirus { background: linear-gradient(135deg, #10B981 0%, #059669 100%); }
.news-card-image.hosting { background: linear-gradient(135deg, #F97316 0%, #EA580C 100%); }
.news-card-image.gids { background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%); }
.news-card-image.poradnik { background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%); }
.news-card-image.veiligheid { background: linear-gradient(135deg, #475569 0%, #1E293B 100%); }
.news-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%); }
.news-card-cat-badge { position: absolute; top: var(--s-4); left: var(--s-4); background: white; color: var(--text); font-size: 11px; font-weight: 800; padding: 5px 11px; border-radius: var(--r-sm); text-transform: uppercase; letter-spacing: 0.05em; z-index: 1; }
.news-card-rating-overlay { position: absolute; bottom: var(--s-3); right: var(--s-3); background: white; color: var(--text); font-size: 13px; font-weight: 800; padding: 4px 10px; border-radius: var(--r-sm); display: flex; align-items: center; gap: 4px; z-index: 1; }
.news-card-rating-overlay svg { width: 13px; height: 13px; fill: var(--gold); }
.news-card h3 { font-size: 20px; line-height: 1.25; font-weight: 700; letter-spacing: -0.015em; }
.news-card h3 a { color: var(--text); }
.news-card h3 a:hover { color: var(--accent); }
.news-card p { font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.news-card-meta { display: flex; align-items: center; gap: var(--s-3); font-size: 12px; color: var(--text-low); flex-wrap: wrap; }
.news-card-meta strong { color: var(--text); font-weight: 600; }

/* CATEGORIES (horizontal rows) */
.cats-row { display: flex; flex-direction: column; gap: var(--s-3); }
.cat-row { display: grid; grid-template-columns: 80px 1fr auto auto; gap: var(--s-5); align-items: center; padding: var(--s-5); background: white; border: 1px solid var(--border); border-radius: var(--r-lg); transition: all 0.3s ease; }
.cat-row:hover { border-color: var(--accent); transform: translateX(4px); box-shadow: var(--shadow-md); }
.cat-row-icon { width: 64px; height: 64px; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; }
.cat-row-icon.vpn { background: var(--accent-pale); color: var(--accent); }
.cat-row-icon.antivirus { background: #D1FAE5; color: var(--success); }
.cat-row-icon.hosting { background: #FED7AA; color: #F97316; }
.cat-row-icon svg { width: 32px; height: 32px; }
.cat-row-content h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.cat-row-content p { font-size: 14px; color: var(--text-mid); line-height: 1.5; max-width: 540px; }
.cat-row-stats { display: flex; gap: var(--s-5); }
.cat-row-stats div { text-align: center; }
.cat-row-stats strong { display: block; font-size: 24px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; line-height: 1; }
.cat-row-stats span { font-size: 11px; color: var(--text-low); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.cat-row-arrow { width: 44px; height: 44px; background: var(--bg-alt); color: var(--text); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.cat-row:hover .cat-row-arrow { background: var(--accent); color: white; }

/* POPULAR */
.popular-grid { display: grid; grid-template-columns: 2fr 1fr; gap: var(--s-7); }
.popular-list { display: flex; flex-direction: column; }
.popular-item { display: grid; grid-template-columns: 60px 1fr auto; gap: var(--s-4); align-items: center; padding: var(--s-4) 0; border-bottom: 1px solid var(--border-light); }
.popular-item:last-child { border-bottom: none; }
.popular-num { font-size: 36px; font-weight: 800; color: var(--text-low); line-height: 1; letter-spacing: -0.03em; }
.popular-num.top { color: var(--accent); }
.popular-content h4 { font-size: 17px; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.popular-content h4 a { color: var(--text); }
.popular-content h4 a:hover { color: var(--accent); }
.popular-content-meta { font-size: 12px; color: var(--text-low); display: flex; gap: var(--s-3); flex-wrap: wrap; }
.popular-views { font-size: 13px; color: var(--text-mid); font-weight: 600; text-align: right; white-space: nowrap; }
.popular-views svg { width: 14px; height: 14px; display: inline; vertical-align: middle; margin-right: 4px; }

.trending-card { background: var(--accent); color: white; padding: var(--s-6); border-radius: var(--r-lg); display: flex; flex-direction: column; gap: var(--s-3); position: relative; overflow: hidden; }
.trending-card::after { content: ''; position: absolute; top: -20px; right: -20px; width: 120px; height: 120px; background: rgba(255,255,255,0.1); border-radius: 50%; }
.trending-card-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.2); padding: 5px 12px; border-radius: var(--r-full); font-size: 12px; font-weight: 700; width: fit-content; }
.trending-card h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; position: relative; }
.trending-card p { font-size: 14px; opacity: 0.9; line-height: 1.5; position: relative; }
.trending-card .btn { background: white; color: var(--accent); margin-top: var(--s-2); width: fit-content; }
.trending-card .btn:hover { background: var(--text); color: white; }

/* GUIDES (dark) */
.guides-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
.guide-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg); padding: var(--s-7); display: flex; gap: var(--s-5); align-items: flex-start; transition: all 0.3s ease; }
.guide-card:hover { background: rgba(255,255,255,0.08); border-color: #5EEAD4; }
.guide-icon { width: 56px; height: 56px; background: var(--accent); color: white; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.guide-icon svg { width: 28px; height: 28px; }
.guide-content h4 { font-size: 22px; font-weight: 700; color: white; line-height: 1.2; margin-bottom: var(--s-2); letter-spacing: -0.015em; }
.guide-content p { font-size: 15px; color: var(--text-on-dark-low); line-height: 1.55; margin-bottom: var(--s-3); }
.guide-link { color: #5EEAD4; font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }

/* METHODOLOGY */
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); }
.method-item { padding: var(--s-5); border-left: 3px solid var(--accent); }
.method-item h4 { font-size: 18px; font-weight: 800; letter-spacing: -0.015em; margin-bottom: var(--s-2); }
.method-item p { font-size: 14px; color: var(--text-mid); line-height: 1.5; }

/* NEWSLETTER */
.newsletter { background: var(--accent); color: white; border-radius: var(--r-xl); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.newsletter::before { content: ''; position: absolute; bottom: -50px; left: -50px; width: 200px; height: 200px; background: rgba(255,255,255,0.1); border-radius: 50%; }
.newsletter-content { padding: var(--s-8) var(--s-7); position: relative; }
.newsletter h2 { font-size: clamp(28px, 3vw, 36px); font-weight: 800; letter-spacing: -0.025em; margin-bottom: var(--s-3); line-height: 1.1; }
.newsletter p { font-size: 16px; opacity: 0.92; margin-bottom: 0; }
.newsletter-form { background: white; padding: var(--s-8) var(--s-7); display: flex; flex-direction: column; gap: var(--s-3); justify-content: center; }
.newsletter-form label { font-size: 13px; font-weight: 700; color: var(--text); }
.newsletter-input { padding: 14px 18px; border: 2px solid var(--border); border-radius: var(--r-sm); font-size: 15px; font-family: inherit; color: var(--text); outline: none; transition: border-color 0.2s; }
.newsletter-input:focus { border-color: var(--accent); }
.newsletter small { font-size: 12px; color: var(--text-mid); }
.newsletter small a { color: var(--accent); text-decoration: underline; }

/* SINGLE POST */
.article-header { padding: var(--s-9) 0 var(--s-7); text-align: center; border-bottom: 1px solid var(--border); }
.article-category { display: inline-block; font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--s-3); }
.article-title { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.05; font-weight: 800; letter-spacing: -0.03em; margin-bottom: var(--s-5); max-width: 880px; margin-left: auto; margin-right: auto; }
.article-meta { display: flex; justify-content: center; align-items: center; gap: var(--s-3); font-size: 14px; color: var(--text-mid); flex-wrap: wrap; }
.article-featured-image { margin: var(--s-7) auto; max-width: 1000px; border-radius: var(--r-lg); overflow: hidden; }
.article-content { max-width: 720px; margin: var(--s-7) auto; font-size: 18px; line-height: 1.65; color: var(--text); padding: 0 var(--s-5); }
.article-content h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.022em; margin: var(--s-7) 0 var(--s-4); line-height: 1.15; }
.article-content h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.018em; margin: var(--s-6) 0 var(--s-3); line-height: 1.25; }
.article-content p { margin-bottom: var(--s-4); }
.article-content a { color: var(--accent); text-decoration: underline; }
.article-content ul, .article-content ol { margin: var(--s-4) 0 var(--s-4) var(--s-5); }
.article-content li { margin-bottom: var(--s-2); }
.article-content blockquote { border-left: 4px solid var(--accent); padding: var(--s-3) var(--s-5); margin: var(--s-5) 0; background: var(--bg-alt); border-radius: var(--r-sm); font-style: italic; }
.article-content img { border-radius: var(--r-md); margin: var(--s-5) 0; }

/* PROS / CONS */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); margin: var(--s-6) 0; }
.proscons-box { padding: var(--s-5); border-radius: var(--r-md); border: 1px solid var(--border); }
.proscons-box.pros { background: rgba(16, 185, 129, 0.05); border-color: rgba(16, 185, 129, 0.2); }
.proscons-box.cons { background: rgba(239, 68, 68, 0.05); border-color: rgba(239, 68, 68, 0.2); }
.proscons-box h4 { font-size: 16px; font-weight: 800; margin-bottom: var(--s-3); display: flex; align-items: center; gap: 6px; }
.proscons-box.pros h4 { color: var(--success); }
.proscons-box.cons h4 { color: var(--danger); }
.proscons-box ul { list-style: none; margin: 0; padding: 0; }
.proscons-box li { padding: 6px 0; font-size: 15px; display: flex; align-items: flex-start; gap: 8px; }

/* RATING BOX */
.rating-box { background: var(--bg-alt); border-radius: var(--r-lg); padding: var(--s-6); margin: var(--s-6) 0; display: flex; align-items: center; gap: var(--s-5); flex-wrap: wrap; }
.rating-box-score { font-size: 56px; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; line-height: 1; }
.rating-box-score small { font-size: 20px; color: var(--text-mid); }
.rating-box-content { flex: 1; min-width: 200px; }
.rating-box-content h4 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.rating-box-content p { font-size: 14px; color: var(--text-mid); margin: 0; }
.rating-box-cta { display: inline-flex; align-items: center; padding: 12px 24px; background: var(--accent); color: white; border-radius: var(--r-sm); font-weight: 700; }
.rating-box-cta:hover { background: var(--accent-hover); color: white; }

/* ARCHIVE */
.archive-header { padding: var(--s-9) 0 var(--s-7); text-align: center; }
.archive-title { font-size: clamp(36px, 4vw, 52px); font-weight: 800; letter-spacing: -0.025em; margin-bottom: var(--s-3); }
.archive-description { font-size: 18px; color: var(--text-mid); max-width: 600px; margin: 0 auto; }

/* PAGINATION */
.pagination { display: flex; justify-content: center; gap: var(--s-2); margin: var(--s-7) 0; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: var(--r-sm); background: var(--bg-alt); color: var(--text); font-size: 14px; font-weight: 700; }
.pagination .current { background: var(--accent); color: white; }
.pagination a:hover { background: var(--accent); color: white; }

/* FOOTER */
.site-footer { background: var(--bg-darker); color: var(--text-on-dark-low); padding: var(--s-9) 0 var(--s-5); font-size: 14px; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: var(--s-7); margin-bottom: var(--s-8); }
.footer-brand .site-logo { color: white; font-size: 28px; margin-bottom: var(--s-3); }
.footer-brand .logo-check { background: #5EEAD4; color: var(--bg-darker); }
.footer-brand p { font-size: 13px; line-height: 1.5; margin-bottom: var(--s-4); max-width: 300px; }
.footer-social { display: flex; gap: var(--s-2); }
.footer-social a { width: 36px; height: 36px; border-radius: var(--r-sm); background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--text-on-dark-low); }
.footer-social a:hover { background: var(--accent); color: white; }
.footer-col h5 { color: white; font-size: 13px; font-weight: 700; margin-bottom: var(--s-4); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s-3); }
.footer-col a { color: var(--text-on-dark-low); font-size: 13px; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: var(--s-5); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-3); font-size: 12px; color: var(--text-low); }
.footer-disclaimer { max-width: 720px; font-size: 11px; line-height: 1.6; margin-top: var(--s-5); color: var(--text-low); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .cards-comparison { grid-template-columns: repeat(2, 1fr); }
  .popular-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-col:nth-child(5) { display: none; }
  .newsletter { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .main-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); }
  .mobile-toggle { display: flex; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: 1fr; }
  .cat-row { grid-template-columns: 60px 1fr auto; }
  .cat-row-stats { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .proscons { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: var(--s-7) 0; }
  .hero { padding: var(--s-7) 0; }
  .cards-comparison, .news-grid, .method-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 var(--s-4); }
  .newsletter-content, .newsletter-form { padding: var(--s-6); }
  .hero-stats { grid-template-columns: 1fr; gap: var(--s-3); padding-top: var(--s-4); }
  .trust-strip-inner { justify-content: flex-start; }
  .hero-card-mock { width: 90%; padding: var(--s-4); }
}
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* WordPress alignment */
.alignleft { float: left; margin-right: var(--s-5); }
.alignright { float: right; margin-left: var(--s-5); }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1000px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--text-mid); text-align: center; margin-top: 6px; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
