/*
Theme Name: Comparix
Theme URI: https://comparix.es
Author: Comparix
Author URI: https://comparix.es
Description: Tema WordPress vibrante con Bento Grid hero y degradado sunset para portales de reseñas (VPN, antivirus, hosting) para España y Latinoamérica. Diseño moderno tipo Apple 2024, mezcla naranja-rosa, tarjetas asimétricas.
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: comparix
Tags: blog, news, magazine, custom-colors, custom-logo, custom-menu, featured-images, translation-ready
*/

:root {
  --bg: #FAFAFA;
  --bg-card: #FFFFFF;
  --bg-alt: #F1F5F9;
  --bg-dark: #0F172A;
  --bg-darker: #020617;
  --text: #0F172A;
  --text-mid: #475569;
  --text-low: #94A3B8;
  --text-on-dark: #F1F5F9;
  --text-on-dark-low: #94A3B8;
  --accent: #F97316;
  --accent-hover: #EA580C;
  --accent-light: #FFEDD5;
  --accent-pale: #FFF7ED;
  --accent-2: #EC4899;
  --accent-2-light: #FCE7F3;
  --gradient: linear-gradient(135deg, #F97316 0%, #EC4899 100%);
  --gradient-soft: linear-gradient(135deg, #FFEDD5 0%, #FCE7F3 100%);
  --gold: #F59E0B;
  --success: #10B981;
  --info: #3B82F6;
  --danger: #EF4444;
  --purple: #8B5CF6;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-2xl: 36px; --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 8px 24px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg: 0 24px 64px rgba(15,23,42,0.12), 0 8px 16px rgba(15,23,42,0.06);
  --shadow-glow: 0 0 32px rgba(249, 115, 22, 0.25);
}

* { 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(--gradient); color: white; font-size: 12px; padding: 7px 0; font-weight: 500; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); flex-wrap: wrap; }
.top-bar a { color: white; opacity: 0.9; }
.top-bar a:hover { opacity: 1; color: white; }
.top-bar-right { display: flex; gap: var(--s-4); align-items: center; }
.top-bar-region { padding: 2px 10px; background: rgba(255,255,255,0.2); border-radius: var(--r-full); font-size: 11px; font-weight: 600; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250, 250, 250, 0.92); 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: 4px; }
.site-logo img { max-height: 40px; width: auto; }
.logo-x { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--gradient); color: white; border-radius: var(--r-sm); font-weight: 800; transform: rotate(-5deg); font-style: italic; }

.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: 260px; 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; font-weight: 500; border-radius: var(--r-sm); }
.main-nav .sub-menu a:hover { background: var(--accent-pale); color: var(--accent); }
.main-nav .sub-menu .featured { color: var(--accent); font-weight: 700; border-top: 1px solid var(--border-light); margin-top: 4px; padding-top: 12px; }

.header-actions { display: flex; align-items: center; gap: var(--s-3); }
.icon-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--text); border: 1px solid var(--border); border-radius: var(--r-sm); background: white; }
.icon-btn:hover { background: var(--accent-pale); border-color: var(--accent); color: var(--accent); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; font-size: 14px; font-weight: 700; border-radius: var(--r-full); transition: all 0.2s; }
.btn-primary { background: var(--gradient); color: white; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); color: white; }
.btn-dark { background: var(--text); color: white; }
.btn-dark:hover { background: var(--accent); color: white; }
.btn-outline { background: white; color: var(--text); border: 2px solid var(--text); }
.btn-outline:hover { background: var(--text); color: white; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.mobile-toggle { display: none; }

/* BENTO HERO */
.hero { padding: var(--s-9) 0 var(--s-10); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; left: -200px; width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%); z-index: -1; }
.hero::after { content: ''; position: absolute; bottom: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-2-light) 0%, transparent 70%); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s-8); align-items: center; }
.hero-content { padding: var(--s-3) 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: white; color: var(--accent); font-size: 12px; font-weight: 700; border-radius: var(--r-full); margin-bottom: var(--s-5); border: 1px solid var(--accent-light); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-eyebrow .pulse { display: inline-block; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.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 .gradient-text { background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero p { font-size: clamp(17px, 1.7vw, 21px); line-height: 1.55; color: var(--text-mid); margin-bottom: var(--s-6); max-width: 540px; }
.hero-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }

.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); gap: var(--s-3); aspect-ratio: 5 / 6; }
.bento-card { background: white; border-radius: var(--r-lg); padding: var(--s-4); border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: space-between; transition: all 0.3s ease; position: relative; overflow: hidden; }
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento-1 { grid-column: span 2; grid-row: span 2; background: var(--gradient); color: white; border: none; }
.bento-2 { grid-column: span 1; grid-row: span 1; background: var(--bg-dark); color: white; border: none; }
.bento-3 { grid-column: span 1; grid-row: span 2; }
.bento-4 { grid-column: span 1; grid-row: span 1; background: var(--accent-pale); border-color: var(--accent-light); }
.bento-5 { grid-column: span 2; grid-row: span 1; background: var(--purple); color: white; border: none; }
.bento-eyebrow { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }
.bento-card.bento-4 .bento-eyebrow { color: var(--accent); }
.bento-1 .bento-rank { display: inline-flex; align-items: center; justify-content: center; padding: 4px 12px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); border-radius: var(--r-full); font-size: 12px; font-weight: 700; margin-bottom: var(--s-3); width: fit-content; }
.bento-1 h3 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1; letter-spacing: -0.025em; margin-bottom: var(--s-3); }
.bento-1 p { font-size: 15px; opacity: 0.9; line-height: 1.4; margin-bottom: var(--s-3); }
.bento-1 .bento-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--s-3); border-top: 1px solid rgba(255,255,255,0.2); }
.bento-1 .bento-rating { font-size: 28px; font-weight: 800; display: flex; align-items: baseline; gap: 4px; }
.bento-1 .bento-rating small { font-size: 14px; opacity: 0.7; font-weight: 400; }
.bento-1 .bento-stars { display: flex; gap: 1px; }
.bento-1 .bento-stars svg { width: 12px; height: 12px; fill: var(--gold); }
.bento-2 .bento-big-stat { font-size: clamp(36px, 5vw, 56px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin: var(--s-3) 0; }
.bento-2 p { font-size: 13px; opacity: 0.7; }
.bento-3 h4 { font-size: 16px; font-weight: 700; line-height: 1.25; margin-bottom: var(--s-3); }
.bento-3 .bento-mini-list { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bento-3 .bento-mini-item { display: flex; align-items: center; gap: 8px; font-size: 12px; padding: 6px 8px; background: var(--bg-alt); border-radius: var(--r-sm); }
.bento-3 .bento-mini-item strong { font-weight: 700; color: var(--accent); }
.bento-4 h4 { font-size: 14px; font-weight: 700; line-height: 1.2; margin-top: var(--s-2); }
.bento-4 .bento-deal-percent { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--accent); }
.bento-5 { display: flex; align-items: center; gap: var(--s-4); }
.bento-5 .bento-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bento-5 .bento-icon svg { width: 24px; height: 24px; }
.bento-5 .bento-content { flex: 1; }
.bento-5 .bento-eyebrow { opacity: 0.8; margin-bottom: 4px; }
.bento-5 h4 { font-size: 16px; font-weight: 700; line-height: 1.2; }

/* STATS STRIP */
.stats { padding: var(--s-7) 0; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.stat-card { padding: var(--s-5); border-radius: var(--r-lg); display: flex; flex-direction: column; gap: var(--s-2); transition: transform 0.3s ease; }
.stat-card:hover { transform: translateY(-3px); }
.stat-card.s1 { background: var(--accent-pale); }
.stat-card.s2 { background: var(--accent-2-light); }
.stat-card.s3 { background: #DBEAFE; }
.stat-card.s4 { background: #D1FAE5; }
.stat-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.stat-icon svg { width: 24px; height: 24px; }
.stat-card.s1 .stat-icon { color: var(--accent); }
.stat-card.s2 .stat-icon { color: var(--accent-2); }
.stat-card.s3 .stat-icon { color: var(--info); }
.stat-card.s4 .stat-icon { color: var(--success); }
.stat-num { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-mid); font-weight: 500; }

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

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

/* TOP PRODUCTS */
.products-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, 1fr); gap: var(--s-5); }
.product-card { background: white; border-radius: var(--r-xl); padding: var(--s-6); border: 1px solid var(--border); display: flex; flex-direction: column; gap: var(--s-3); transition: all 0.3s ease; position: relative; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-winner { grid-column: 1 / 2; grid-row: 1 / 3; background: linear-gradient(180deg, var(--accent-pale) 0%, white 25%); border: 2px solid var(--accent); padding: var(--s-7); }
.product-winner .product-badge { background: var(--gradient); color: white; padding: 6px 14px; border-radius: var(--r-full); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; width: fit-content; margin-bottom: var(--s-4); }
.product-rank { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mid); font-weight: 700; }
.product-winner .product-rank { color: var(--accent); }
.product-name { font-size: clamp(20px, 2vw, 28px); font-weight: 800; letter-spacing: -0.022em; line-height: 1; }
.product-winner .product-name { font-size: clamp(32px, 3.5vw, 42px); }
.product-name a { color: var(--text); }
.product-name a:hover { color: var(--accent); }
.product-tagline { font-size: 14px; color: var(--text-mid); line-height: 1.4; }
.product-winner .product-tagline { font-size: 17px; line-height: 1.5; min-height: 50px; }
.product-rating-block { display: flex; align-items: baseline; gap: 8px; padding: var(--s-3) 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.product-rating { font-size: 30px; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; line-height: 1; }
.product-winner .product-rating { font-size: 48px; }
.product-rating-of { font-size: 13px; color: var(--text-mid); }
.product-stars { display: flex; gap: 1px; margin-left: auto; }
.product-stars svg { width: 13px; height: 13px; fill: var(--gold); }
.product-specs { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-spec { display: flex; justify-content: space-between; font-size: 13px; }
.product-spec-label { color: var(--text-mid); }
.product-spec-value { color: var(--text); font-weight: 700; }
.product-price-block { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; padding-top: var(--s-3); }
.product-price { font-size: 24px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.product-winner .product-price { font-size: 36px; }
.product-price-cycle { font-size: 12px; color: var(--text-mid); }
.product-price-old { font-size: 13px; color: var(--text-low); text-decoration: line-through; margin-left: 4px; }
.product-cta { display: flex; flex-direction: column; gap: 6px; }
.btn-product { display: flex; align-items: center; justify-content: center; padding: 11px 16px; background: var(--text); color: white; border-radius: var(--r-sm); font-size: 13px; font-weight: 700; }
.btn-product:hover { background: var(--accent); color: white; }
.product-winner .btn-product { background: var(--gradient); padding: 14px 20px; font-size: 15px; }
.product-winner .btn-product:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn-product-secondary { background: transparent; color: var(--text-mid); padding: 4px; font-size: 11px; text-align: center; }
.btn-product-secondary:hover { background: transparent; color: var(--accent); }

/* CATEGORIES */
.cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.cat-hero { background: white; border-radius: var(--r-xl); padding: var(--s-7); border: 1px solid var(--border); display: flex; flex-direction: column; gap: var(--s-4); position: relative; overflow: hidden; transition: all 0.3s ease; min-height: 320px; }
.cat-hero:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 200px; height: 200px; background: var(--gradient); opacity: 0.05; border-radius: 50%; transform: translate(50%, -50%); transition: all 0.3s ease; }
.cat-hero:hover::before { opacity: 0.1; transform: translate(40%, -40%) scale(1.3); }
.cat-emoji { font-size: 56px; line-height: 1; position: relative; z-index: 1; }
.cat-hero h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.025em; position: relative; z-index: 1; }
.cat-hero p { font-size: 14px; color: var(--text-mid); line-height: 1.5; flex: 1; position: relative; z-index: 1; }
.cat-hero-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: var(--s-3); border-top: 1px solid var(--border-light); position: relative; z-index: 1; }
.cat-hero-count { font-size: 13px; color: var(--text-mid); font-weight: 600; }
.cat-hero-arrow { width: 40px; height: 40px; background: var(--bg-alt); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.cat-hero:hover .cat-hero-arrow { background: var(--gradient); color: white; }

/* 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: var(--gradient); 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, #F97316 0%, #EC4899 100%); }
.news-card-image.antivirus { background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%); }
.news-card-image.hosting { background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%); }
.news-card-image.guia { background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%); }
.news-card-image.seguridad { background: linear-gradient(135deg, #475569 0%, #0F172A 100%); }
.news-card-cat { position: absolute; top: var(--s-3); left: var(--s-3); background: white; color: var(--text); padding: 5px 12px; border-radius: var(--r-full); font-size: 11px; font-weight: 700; z-index: 1; }
.news-card-rating { position: absolute; top: var(--s-3); right: var(--s-3); background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); color: var(--text); padding: 5px 10px; border-radius: var(--r-full); font-size: 13px; font-weight: 800; display: flex; align-items: center; gap: 4px; z-index: 1; }
.news-card-rating svg { width: 12px; height: 12px; fill: var(--gold); }
.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; }
.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; }

/* TRENDING */
.trending-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.trending-card { background: white; border-radius: var(--r-lg); padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); border: 1px solid var(--border); transition: all 0.3s ease; }
.trending-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.trending-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--gradient); color: white; border-radius: var(--r-full); font-size: 16px; font-weight: 800; }
.trending-card h4 { font-size: 15px; font-weight: 700; line-height: 1.3; }
.trending-card h4 a { color: var(--text); }
.trending-card h4 a:hover { color: var(--accent); }
.trending-card-meta { font-size: 12px; color: var(--text-low); display: flex; gap: 6px; flex-wrap: wrap; }
.trending-card-region { padding: 2px 8px; background: var(--accent-pale); color: var(--accent); border-radius: var(--r-full); font-size: 10px; font-weight: 700; }

/* METHODOLOGY */
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.method-card { background: white; border-radius: var(--r-lg); padding: var(--s-6); border: 1px solid var(--border); display: flex; flex-direction: column; gap: var(--s-3); transition: all 0.3s ease; }
.method-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.method-icon { width: 48px; height: 48px; background: var(--gradient); color: white; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; }
.method-icon svg { width: 24px; height: 24px; }
.method-card h4 { font-size: 17px; font-weight: 800; letter-spacing: -0.015em; }
.method-card p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

/* NEWSLETTER */
.newsletter { background: var(--gradient); color: white; border-radius: var(--r-2xl); padding: var(--s-9) var(--s-8); display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--s-7); align-items: center; position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%); }
.newsletter-content { position: relative; }
.newsletter h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: var(--s-3); }
.newsletter p { font-size: 17px; opacity: 0.92; line-height: 1.5; }
.newsletter-form { background: white; border-radius: var(--r-xl); padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); position: relative; }
.newsletter-form label { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; }
.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-form small { font-size: 12px; color: var(--text-mid); }
.newsletter-form small a { color: var(--accent); text-decoration: underline; font-weight: 600; }

/* SINGLE POST */
.article-header { padding: var(--s-9) 0 var(--s-7); text-align: center; }
.article-category { display: inline-block; padding: 6px 14px; background: var(--gradient); color: white; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; border-radius: var(--r-full); margin-bottom: var(--s-4); }
.article-title { font-size: clamp(36px, 5vw, 60px); 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-tagline { font-size: 19px; color: var(--text-mid); max-width: 680px; margin: 0 auto var(--s-5); line-height: 1.5; }
.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-meta strong { color: var(--text); }
.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.025em; margin: var(--s-7) 0 var(--s-4); line-height: 1.15; }
.article-content h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; 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(--accent-pale); 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: #D1FAE5; border-color: var(--success); }
.proscons-box.cons { background: #FEE2E2; border-color: var(--danger); }
.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; gap: 8px; }

/* RATING BOX */
.rating-box { background: var(--gradient); color: white; border-radius: var(--r-xl); 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: 72px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.rating-box-score small { font-size: 24px; opacity: 0.8; }
.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; opacity: 0.92; margin: 0; line-height: 1.4; }
.rating-box-cta { display: inline-flex; align-items: center; padding: 14px 24px; background: white; color: var(--accent); border-radius: var(--r-full); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.rating-box-cta:hover { background: var(--text); color: white; }

/* ARCHIVE */
.archive-header { padding: var(--s-9) 0 var(--s-7); text-align: center; }
.archive-title { font-size: clamp(36px, 4vw, 56px); font-weight: 800; letter-spacing: -0.025em; margin-bottom: var(--s-3); }
.archive-title .gradient-text { background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.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: 44px; height: 44px; padding: 0 14px; border-radius: var(--r-full); background: white; border: 1px solid var(--border); color: var(--text); font-size: 14px; font-weight: 700; }
.pagination .current { background: var(--gradient); color: white; border-color: transparent; }
.pagination a:hover { background: var(--gradient); color: white; border-color: transparent; }

/* 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); padding-bottom: var(--s-7); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .site-logo { color: white; font-size: 28px; }
.footer-brand p { font-size: 13px; line-height: 1.5; margin: var(--s-4) 0; max-width: 300px; }
.footer-social { display: flex; gap: var(--s-2); }
.footer-social a { width: 38px; height: 38px; 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(--gradient); color: white; }
.footer-col h5 { color: white; font-size: 12px; font-weight: 700; margin-bottom: var(--s-4); text-transform: uppercase; letter-spacing: 0.08em; position: relative; padding-bottom: 8px; }
.footer-col h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gradient); }
.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 { 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: 800px; font-size: 11px; line-height: 1.6; margin-top: var(--s-5); color: var(--text-low); padding-top: var(--s-4); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-disclaimer strong { color: var(--text-on-dark-low); font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .bento-grid { max-width: 500px; margin: 0 auto; aspect-ratio: 4 / 5; }
  .products-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .product-winner { grid-column: 1 / -1; grid-row: 1; }
  .trending-row { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-col:nth-child(5) { display: none; }
}
@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, .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .product-winner { grid-column: auto; grid-row: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .proscons { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: var(--s-7) 0; }
  .news-grid, .cats-grid, .stats-grid, .method-grid, .trending-row { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 var(--s-4); }
  .newsletter { padding: var(--s-7) var(--s-5); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; aspect-ratio: auto; }
  .bento-1, .bento-3, .bento-5 { grid-column: span 2; grid-row: auto; }
  .bento-2, .bento-4 { grid-column: span 1; grid-row: auto; }
}
*: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; } }

/* WP 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; }
