/*
Theme Name: SmartZones
Theme URI: https://smart-zones.com
Author: SmartZones
Author URI: https://smart-zones.com
Description: A modern dark affiliate marketing theme for Smart-Zones.com. Built for software reviews, comparisons, and digital tool guides.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smartzones
Tags: dark, affiliate, blog, custom-menu, featured-images, threaded-comments
*/

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DESIGN TOKENS ── */
:root {
  --bg:      #0a0a0f;
  --bg2:     #111118;
  --bg3:     #16161f;
  --card:    #1a1a26;
  --card2:   #1f1f2e;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --text:    #f0f0f5;
  --text2:   #9090a8;
  --text3:   #5a5a70;
  --accent:  #7c5cfc;
  --accent2: #a67cff;
  --accent3: #c4a8ff;
  --teal:    #2de8c4;
  --teal2:   #1bbfa0;
  --gold:    #f0c060;
  --red:     #ff5c6a;
  --font-h:  'Syne', sans-serif;
  --font-b:  'DM Sans', sans-serif;
  --r:       12px;
  --r2:      20px;
  --r3:      32px;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

a { color: var(--accent2); text-decoration: none; }
a:hover { color: var(--accent3); }
img { max-width: 100%; height: auto; display: block; }

/* ── GLOW BLOBS ── */
.sz-blobs { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.sz-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
}
.sz-blob-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; right: -150px; }
.sz-blob-2 { width: 400px; height: 400px; background: var(--teal);   bottom: 10%; left: -100px; }
.sz-blob-3 { width: 300px; height: 300px; background: var(--gold);   top: 50%; left: 40%; opacity: 0.08; }

/* ── LAYOUT ── */
.sz-wrapper  { position: relative; z-index: 1; }
.sz-container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ── NAV ── */
.sz-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,15,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.sz-logo {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sz-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.sz-logo span { color: var(--accent2); }

.sz-nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0; padding: 0;
}

.sz-nav-menu a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.sz-nav-menu a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.sz-nav-menu .sz-nav-cta a {
  background: var(--accent);
  color: white !important;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}
.sz-nav-menu .sz-nav-cta a:hover { background: var(--accent2); transform: translateY(-1px); }

/* ── HERO ── */
.sz-hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
}

.sz-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,92,252,0.12);
  border: 1px solid rgba(124,92,252,0.3);
  color: var(--accent3);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.sz-hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: sz-pulse 2s ease-in-out infinite;
}

@keyframes sz-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.sz-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}

.sz-hero h1 .grad {
  background: linear-gradient(135deg, var(--accent2) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sz-hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text2);
  max-width: 580px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.65;
}

.sz-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.sz-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: white !important;
  text-decoration: none;
  font-family: var(--font-b); font-size: 15px; font-weight: 500;
  padding: 14px 28px; border-radius: var(--r);
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer;
}
.sz-btn-primary:hover { background: #9070ff; transform: translateY(-2px); }

.sz-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text2) !important;
  text-decoration: none;
  font-family: var(--font-b); font-size: 15px; font-weight: 400;
  padding: 14px 28px; border-radius: var(--r);
  border: 1px solid var(--border2);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.sz-btn-ghost:hover { color: var(--text) !important; border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }

.sz-hero-stats {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 72px; flex-wrap: wrap;
}

.sz-stat { text-align: center; }
.sz-stat-num {
  font-family: var(--font-h); font-size: 32px; font-weight: 800;
  color: var(--text); letter-spacing: -1px; display: block;
}
.sz-stat-label {
  font-size: 12px; color: var(--text3);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}
.sz-stat-divider { width: 1px; background: var(--border); align-self: stretch; min-height: 40px; }

/* ── SECTION ── */
.sz-section { padding: 100px 0; position: relative; }

.sz-section-label {
  display: inline-block; font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--teal); margin-bottom: 16px;
}

.sz-section-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; letter-spacing: -1px;
  color: var(--text); margin-bottom: 16px; line-height: 1.15;
}

.sz-section-sub {
  font-size: 17px; color: var(--text2); font-weight: 300;
  max-width: 520px; margin-bottom: 56px; line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.sz-how-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 8px;
}
@media (max-width: 800px) { .sz-how-grid { grid-template-columns: repeat(2,1fr); gap: 16px; } }
@media (max-width: 500px) { .sz-how-grid { grid-template-columns: 1fr; } }

.sz-how-step {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 32px 24px;
}
.sz-step-num {
  font-family: var(--font-h); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text3);
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.sz-step-num::before { content: ''; width: 20px; height: 1px; background: var(--border2); }
.sz-step-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.sz-how-step h3 { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.sz-how-step p  { font-size: 14px; color: var(--text2); font-weight: 300; line-height: 1.6; }

/* ── CATEGORIES GRID ── */
.sz-categories-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
@media (max-width: 900px) { .sz-categories-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .sz-categories-grid { grid-template-columns: 1fr; } }

.sz-cat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 32px 28px;
  text-decoration: none; display: block;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
  position: relative; overflow: hidden;
}
.sz-cat-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.3s; border-radius: var(--r2);
}
.sz-cat-card:hover { transform: translateY(-4px); border-color: var(--border2); background: var(--card2); }
.sz-cat-card:hover::before { opacity: 1; }
.sz-cat-card.purple::before { background: radial-gradient(circle at top left, rgba(124,92,252,0.12), transparent 60%); }
.sz-cat-card.teal::before   { background: radial-gradient(circle at top left, rgba(45,232,196,0.10), transparent 60%); }
.sz-cat-card.gold::before   { background: radial-gradient(circle at top left, rgba(240,192,96,0.10), transparent 60%); }
.sz-cat-card.red::before    { background: radial-gradient(circle at top left, rgba(255,92,106,0.10), transparent 60%); }
.sz-cat-card.blue::before   { background: radial-gradient(circle at top left, rgba(96,160,255,0.10), transparent 60%); }
.sz-cat-card.green::before  { background: radial-gradient(circle at top left, rgba(96,220,96,0.10),  transparent 60%); }

.sz-cat-icon {
  width: 48px; height: 48px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px; position: relative; z-index: 1;
}
.purple .sz-cat-icon { background: rgba(124,92,252,0.15); }
.teal   .sz-cat-icon { background: rgba(45,232,196,0.12); }
.gold   .sz-cat-icon { background: rgba(240,192,96,0.12); }
.red    .sz-cat-icon { background: rgba(255,92,106,0.12); }
.blue   .sz-cat-icon { background: rgba(96,160,255,0.12); }
.green  .sz-cat-icon { background: rgba(96,220,96,0.12);  }

.sz-cat-card h3 { font-family: var(--font-h); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; position: relative; z-index: 1; }
.sz-cat-card p  { font-size: 14px; color: var(--text2); font-weight: 300; line-height: 1.6; margin-bottom: 20px; position: relative; z-index: 1; }
.sz-cat-count   { font-size: 12px; font-weight: 500; color: var(--text3); letter-spacing: 0.05em; position: relative; z-index: 1; display: flex; align-items: center; gap: 6px; }
.sz-cat-count-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text3); }

/* ── TOOL CARDS ── */
.sz-tools-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
@media (max-width: 700px) { .sz-tools-grid { grid-template-columns: 1fr; } }

.sz-tool-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px;
  text-decoration: none; display: block;
  transition: border-color 0.2s, transform 0.2s;
}
.sz-tool-card:hover { border-color: var(--border2); transform: translateY(-3px); }

.sz-tool-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.sz-tool-meta   { display: flex; align-items: center; gap: 12px; }
.sz-tool-logo   {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.sz-tool-name     { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.sz-tool-category { font-size: 12px; color: var(--text3); font-weight: 400; }

.sz-badge { font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 100px; white-space: nowrap; }
.sz-badge-recurring { background: rgba(45,232,196,0.12); color: var(--teal); border: 1px solid rgba(45,232,196,0.2); }
.sz-badge-hot       { background: rgba(255,92,106,0.12); color: #ff8c96;     border: 1px solid rgba(255,92,106,0.2); }
.sz-badge-new       { background: rgba(240,192,96,0.12); color: var(--gold); border: 1px solid rgba(240,192,96,0.2); }

.sz-tool-desc   { font-size: 14px; color: var(--text2); font-weight: 300; line-height: 1.6; margin-bottom: 20px; }
.sz-tool-footer { display: flex; align-items: center; justify-content: space-between; }
.sz-commission  { font-size: 13px; color: var(--text2); }
.sz-commission strong { color: var(--teal); font-weight: 500; font-size: 15px; }
.sz-tool-link   { font-size: 13px; color: var(--accent2); font-weight: 500; }

.sz-stars { display: flex; gap: 2px; margin-bottom: 8px; }
.sz-star  { color: var(--gold); font-size: 13px; }
.sz-star.empty { color: var(--text3); }

/* ── ARTICLES GRID ── */
.sz-articles-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px;
}
@media (max-width: 900px) { .sz-articles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .sz-articles-grid { grid-template-columns: 1fr; } }

.sz-article-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); overflow: hidden;
  text-decoration: none; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.sz-article-card:hover { border-color: var(--border2); transform: translateY(-3px); }

.sz-article-img {
  height: 180px; display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}
.sz-article-card.featured .sz-article-img { height: 260px; }

.sz-article-img-bg  { position: absolute; inset: 0; opacity: 0.15; }
.sz-article-img-icon { position: relative; z-index: 1; font-size: 56px; filter: drop-shadow(0 0 20px rgba(255,255,255,0.2)); }

.ai-bg    { background: linear-gradient(135deg, #7c5cfc, #2de8c4); }
.email-bg { background: linear-gradient(135deg, #f0c060, #ff5c6a); }
.seo-bg   { background: linear-gradient(135deg, #2de8c4, #60a0ff); }

.sz-article-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.sz-article-tag  { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent2); margin-bottom: 10px; }

.sz-article-card h3 { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 12px; }
.sz-article-card.featured h3 { font-size: 20px; }
.sz-article-card p  { font-size: 13px; color: var(--text2); font-weight: 300; line-height: 1.6; flex: 1; margin-bottom: 16px; }

.sz-article-meta     { font-size: 12px; color: var(--text3); display: flex; align-items: center; gap: 8px; margin-top: auto; }
.sz-article-meta-dot { width: 3px; height: 3px; background: var(--text3); border-radius: 50%; }

/* ── NEWSLETTER ── */
.sz-newsletter {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r3); padding: 72px 64px;
  text-align: center; position: relative; overflow: hidden;
  margin-bottom: 80px;
}
.sz-newsletter::before {
  content: ''; position: absolute;
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(124,92,252,0.15), transparent 70%);
  top: -100px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.sz-newsletter h2 { font-family: var(--font-h); font-size: clamp(24px,4vw,40px); font-weight: 800; letter-spacing: -1px; color: var(--text); margin-bottom: 16px; position: relative; }
.sz-newsletter p  { font-size: 16px; color: var(--text2); font-weight: 300; max-width: 460px; margin: 0 auto 36px; position: relative; }

.sz-email-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; position: relative; flex-wrap: wrap; justify-content: center; }
.sz-email-form input {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border2);
  border-radius: var(--r); padding: 13px 20px;
  color: var(--text); font-family: var(--font-b); font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.sz-email-form input::placeholder { color: var(--text3); }
.sz-email-form input:focus { border-color: var(--accent); }
.sz-newsletter-note { font-size: 12px; color: var(--text3); margin-top: 14px; position: relative; }

/* ── DIVIDER ── */
.sz-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── SINGLE POST / PAGE CONTENT ── */
.sz-page-header { padding: 130px 0 64px; border-bottom: 1px solid var(--border); margin-bottom: 64px; }
.sz-page-header h1 { font-family: var(--font-h); font-size: clamp(32px,5vw,52px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 20px; color: var(--text); }
.sz-page-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--teal); margin-bottom: 16px; display: block; }
.sz-post-meta  { font-size: 13px; color: var(--text3); display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; }

.sz-content { padding-bottom: 100px; max-width: 780px; }
.sz-content h2 { font-family: var(--font-h); font-size: 24px; font-weight: 700; color: var(--text); margin: 48px 0 16px; letter-spacing: -0.5px; }
.sz-content h3 { font-family: var(--font-h); font-size: 18px; font-weight: 700; color: var(--text); margin: 32px 0 12px; }
.sz-content p  { font-size: 16px; color: var(--text2); font-weight: 300; margin-bottom: 20px; line-height: 1.8; }
.sz-content p strong { color: var(--text); font-weight: 500; }
.sz-content a  { color: var(--accent2); border-bottom: 1px solid rgba(166,124,255,0.3); transition: border-color 0.2s; }
.sz-content a:hover { border-color: var(--accent2); }
.sz-content ul, .sz-content ol { margin: 0 0 24px 0; padding-left: 24px; }
.sz-content li { font-size: 15px; color: var(--text2); font-weight: 300; margin-bottom: 8px; line-height: 1.7; }
.sz-content blockquote {
  background: var(--card); border-left: 3px solid var(--accent);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 20px 24px; margin: 28px 0;
  font-style: italic; color: var(--text2);
}
.sz-content img { border-radius: var(--r2); margin: 28px 0; }
.sz-content table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 14px; }
.sz-content th { background: var(--card2); color: var(--text); font-family: var(--font-h); font-size: 13px; font-weight: 700; padding: 12px 16px; text-align: left; border: 1px solid var(--border); }
.sz-content td { padding: 11px 16px; border: 1px solid var(--border); color: var(--text2); font-weight: 300; }
.sz-content tr:hover td { background: rgba(255,255,255,0.02); }

/* Disclosure banner */
.sz-disclosure {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(240,192,96,0.07); border: 1px solid rgba(240,192,96,0.18);
  border-radius: var(--r2); padding: 16px 20px; margin-bottom: 36px;
}
.sz-disclosure-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.sz-disclosure-text { font-size: 13.5px; color: var(--text2); font-weight: 300; line-height: 1.6; }
.sz-disclosure-text strong { color: var(--gold); font-weight: 500; }
.sz-disclosure-text a { color: var(--accent2); border-bottom: 1px solid rgba(166,124,255,0.3); }

/* ── FOOTER ── */
.sz-footer { border-top: 1px solid var(--border); padding: 60px 0 40px; position: relative; z-index: 1; }

.sz-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px;
}
@media (max-width: 800px) { .sz-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

.sz-footer-brand p { font-size: 14px; color: var(--text3); font-weight: 300; line-height: 1.7; margin-top: 16px; max-width: 260px; }

.sz-footer-col h4 { font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.sz-footer-col ul { list-style: none; margin: 0; padding: 0; }
.sz-footer-col li { margin-bottom: 10px; }
.sz-footer-col a { font-size: 14px; color: var(--text3); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.sz-footer-col a:hover { color: var(--text2); }

.sz-footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.sz-footer-bottom p, .sz-footer-bottom a { font-size: 13px; color: var(--text3); font-weight: 300; text-decoration: none; transition: color 0.2s; }
.sz-footer-bottom a:hover { color: var(--text2); }
.sz-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ── SCROLL REVEAL ── */
.sz-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.sz-reveal.visible { opacity: 1; transform: none; }

/* ── FADE UP ── */
@keyframes sz-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sz-fade-up { animation: sz-fadeUp 0.65s ease both; }
.sz-fade-up:nth-child(1) { animation-delay: 0.05s; }
.sz-fade-up:nth-child(2) { animation-delay: 0.15s; }
.sz-fade-up:nth-child(3) { animation-delay: 0.25s; }
.sz-fade-up:nth-child(4) { animation-delay: 0.35s; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ── RESPONSIVE NAV ── */
@media (max-width: 720px) {
  .sz-nav-menu { display: none; }
  .sz-hero { padding: 120px 0 60px; }
  .sz-newsletter { padding: 48px 28px; }
  .sz-footer-grid { grid-template-columns: 1fr; }
}

/* ── WORDPRESS PAGINATION ── */
.sz-pagination { display: flex; justify-content: center; gap: 8px; padding: 48px 0; }
.sz-pagination a, .sz-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r);
  background: var(--card); border: 1px solid var(--border);
  color: var(--text2); font-size: 14px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.sz-pagination a:hover  { background: var(--card2); color: var(--text); }
.sz-pagination .current { background: var(--accent); color: white; border-color: var(--accent); }

/* ── ARCHIVE / BLOG LOOP ── */
.sz-post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 900px) { .sz-post-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .sz-post-grid { grid-template-columns: 1fr; } }

.sz-post-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); overflow: hidden;
  text-decoration: none; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.sz-post-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.sz-post-card-img { height: 180px; overflow: hidden; background: var(--bg3); }
.sz-post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.sz-post-card:hover .sz-post-card-img img { transform: scale(1.04); }
.sz-post-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.sz-post-card-cat  { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent2); margin-bottom: 10px; }
.sz-post-card h3   { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 12px; }
.sz-post-card p    { font-size: 13px; color: var(--text2); font-weight: 300; line-height: 1.6; flex: 1; margin-bottom: 16px; }
.sz-post-card-meta { font-size: 12px; color: var(--text3); }

/* ── COMMENTS ── */
.sz-comments { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border); }
.sz-comments h3 { font-family: var(--font-h); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 32px; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment { margin-bottom: 24px; }
.comment-body { background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); padding: 24px; }
.comment-author { font-family: var(--font-h); font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.comment-metadata { font-size: 12px; color: var(--text3); margin-bottom: 12px; }
.comment-content p { font-size: 14px; color: var(--text2); font-weight: 300; line-height: 1.7; }

.comment-respond { margin-top: 48px; }
.comment-respond h3 { font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 24px; }
.comment-form label { font-size: 13px; color: var(--text2); font-weight: 400; display: block; margin-bottom: 6px; margin-top: 16px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border2);
  border-radius: var(--r); padding: 12px 16px; color: var(--text);
  font-family: var(--font-b); font-size: 14px; outline: none;
  transition: border-color 0.2s;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--accent); }
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form input[type="submit"] {
  margin-top: 20px; background: var(--accent); color: white;
  border: none; padding: 12px 28px; border-radius: var(--r);
  font-family: var(--font-b); font-size: 15px; font-weight: 500; cursor: pointer;
  transition: background 0.2s;
}
.comment-form input[type="submit"]:hover { background: var(--accent2); }
