/* ==========================================================================
   Websolute Theme — main.css  v2.0.0
   ========================================================================== */

/* ── CSS variables ─────────────────────────────────────────────────────────── */
:root {
  --bg:          #080d1a;
  --bg-card:     #0d1526;
  --bg-hover:    #111d35;
  --border:      #1a2540;
  --primary:     #6366f1;
  --primary-h:   #4f52d9;
  --cyan:        #06b6d4;
  --green:       #10b981;
  --amber:       #f59e0b;
  --rose:        #f43f5e;
  --text:        #f0f4ff;
  --text-2:      #94a3b8;
  --text-3:      #64748b;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow-card: 0 4px 24px rgba(0,0,0,.4);
  --shadow-glow: 0 0 40px rgba(99,102,241,.25);
  --transition:  0.2s ease;
  --max-w:       1200px;
}

/* ── Reset & base ──────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cyan); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Container ─────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography ─────────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p  { color: var(--text-2); }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-h); border-color: var(--primary-h); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm  { padding: .5rem 1.25rem; font-size: .875rem; }
.btn-lg  { padding: 1rem 2.25rem; font-size: 1rem; }
.w-full  { width: 100%; justify-content: center; }

/* ── Sections ───────────────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title  { margin-bottom: .75rem; }
.section-sub    { color: var(--text-2); max-width: 560px; margin: 0 auto .75rem; }
.section-link   { color: var(--cyan); font-weight: 600; font-size: .9rem; }
.section-link:hover { color: var(--primary); }
.section-cta    { text-align: center; margin-top: 3rem; }

/* ── Fade in animation ──────────────────────────────────────────────────────── */
.fade-in-section { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in-section.visible { opacity: 1; transform: none; }

/* ── HEADER ─────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,13,26,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.5); }
.nav-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { height: 40px; width: auto; }
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.logo-text { font-weight: 800; font-size: 1.15rem; color: var(--text); }
.primary-nav { flex: 1; }
.nav-menu {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.nav-menu li a {
  padding: .5rem .875rem;
  border-radius: var(--radius-sm);
  color: var(--text-2);
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a { color: var(--text); background: rgba(99,102,241,.1); }
.nav-actions { display: flex; gap: .75rem; align-items: center; flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .5rem;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav-inner {
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-menu { display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu li a {
  display: block;
  padding: .875rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu li a:hover { color: var(--primary); background: rgba(99,102,241,.05); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: .75rem; }

/* ── HERO ───────────────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 6rem 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.3);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.3); }
}
.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--text) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.75rem; font-weight: 800; color: var(--text); line-height: 1; }
.stat-label { font-size: .8rem; color: var(--text-2); margin-top: .25rem; }
.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.orb-1 { width: 600px; height: 600px; background: rgba(99,102,241,.2); top: -100px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: rgba(6,182,212,.15); bottom: 0; left: 40%; }

/* ── TRUST BAR ──────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-label { color: var(--text-3); font-size: .85rem; flex-shrink: 0; }
.trust-logos { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.trust-item { font-size: .85rem; color: var(--text-2); font-weight: 500; }
.trust-sep  { color: var(--border); }

/* ── PLUGINS GRID ───────────────────────────────────────────────────────────── */
.plugins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.plugin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.plugin-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.plugin-thumb img { width: 100%; height: 200px; object-fit: cover; }
.plugin-icon-wrap {
  padding: 2rem 1.5rem 0;
  display: flex;
  justify-content: flex-start;
}
.plugin-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(99,102,241,.2), rgba(6,182,212,.2));
  border: 1px solid rgba(99,102,241,.3);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--primary);
}
.plugin-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.plugin-version { font-size: .75rem; color: var(--cyan); font-weight: 600; background: rgba(6,182,212,.1); padding: .2rem .6rem; border-radius: 50px; display: inline-block; }
.plugin-title { font-size: 1.15rem; margin: .25rem 0; }
.plugin-title a { color: var(--text); }
.plugin-title a:hover { color: var(--primary); }
.plugin-desc { font-size: .9rem; color: var(--text-2); flex: 1; }
.plugin-meta { display: flex; gap: .5rem; flex-wrap: wrap; }
.meta-item { font-size: .75rem; color: var(--text-3); background: rgba(255,255,255,.04); padding: .2rem .6rem; border-radius: 4px; }
.plugin-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.plugin-price { display: flex; flex-direction: column; }
.price-ngn { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.price-usd { font-size: .8rem; color: var(--text-3); }
.plugin-actions { display: flex; gap: .5rem; }

/* ── FEATURES GRID ──────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover { border-color: rgba(99,102,241,.5); box-shadow: var(--shadow-glow); }
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(99,102,241,.15), rgba(6,182,212,.15));
  border: 1px solid rgba(99,102,241,.25);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p  { font-size: .9rem; color: var(--text-2); }

/* ── STEPS ──────────────────────────────────────────────────────────────────── */
.steps-section { background: var(--bg-card); }
.steps-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}
.step-item { display: flex; gap: 1rem; align-items: flex-start; }
.step-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 2.5rem;
}
.step-body h3 { font-size: 1rem; margin-bottom: .35rem; }
.step-body p  { font-size: .875rem; color: var(--text-2); }

/* ── TESTIMONIALS ───────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.testimonial-card p { color: var(--text-2); font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-card footer { display: flex; flex-direction: column; gap: .15rem; }
.testimonial-card strong { color: var(--text); font-size: .95rem; }
.testimonial-card span   { font-size: .8rem; color: var(--text-3); }

/* ── CTA BANNER ─────────────────────────────────────────────────────────────── */
.cta-section { background: var(--bg-card); }
.cta-card {
  background: linear-gradient(135deg, rgba(99,102,241,.15), rgba(6,182,212,.1));
  border: 1px solid rgba(99,102,241,.3);
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
}
.cta-card h2 { margin-bottom: 1rem; }
.cta-card p  { color: var(--text-2); margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BLOG PREVIEW ───────────────────────────────────────────────────────────── */
.blog-preview-section { background: var(--bg-card); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.post-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.post-card-thumb { display: block; overflow: hidden; }
.post-card-thumb img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s ease; }
.post-card-thumb:hover img { transform: scale(1.04); }
.post-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.post-card-meta { display: flex; gap: .75rem; font-size: .8rem; color: var(--text-3); flex-wrap: wrap; }
.post-card-title { font-size: 1.05rem; }
.post-card-title a { color: var(--text); }
.post-card-title a:hover { color: var(--primary); }
.post-card-excerpt { font-size: .875rem; color: var(--text-2); flex: 1; }
.post-card-read { font-size: .85rem; color: var(--cyan); font-weight: 600; margin-top: .5rem; }
.post-card-read:hover { color: var(--primary); }

/* ── FOOTER ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-tagline { font-size: .9rem; color: var(--text-2); max-width: 280px; }
.footer-socials { display: flex; gap: .75rem; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--text-2);
  transition: all var(--transition);
}
.footer-socials a:hover { background: rgba(99,102,241,.15); border-color: var(--primary); color: var(--primary); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h5 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .875rem; color: var(--text-2); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .85rem; color: var(--text-3); }
.footer-made span { color: var(--rose); }

/* ── INNER PAGES ─────────────────────────────────────────────────────────────── */
.inner-page { min-height: 60vh; padding-bottom: 5rem; }
.page-container { padding-top: 3rem; padding-bottom: 3rem; }
.page-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.page-title { font-size: clamp(1.75rem, 4vw, 3rem); }
.entry-content {
  color: var(--text-2);
  line-height: 1.8;
  max-width: 820px;
}
.entry-content h2,.entry-content h3,.entry-content h4 { color: var(--text); margin: 2rem 0 1rem; }
.entry-content p  { margin-bottom: 1.25rem; }
.entry-content ul,.entry-content ol { margin: 1rem 0 1.25rem 1.5rem; color: var(--text-2); }
.entry-content li { margin-bottom: .5rem; }
.entry-content a  { color: var(--primary); }
.entry-content a:hover { color: var(--cyan); }
.entry-content strong { color: var(--text); }
.entry-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(99,102,241,.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-2);
  font-style: italic;
}
.entry-content code {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: .15rem .4rem;
  border-radius: 4px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: .875em;
  color: var(--cyan);
}
.entry-content pre {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.entry-content pre code { background: none; border: none; padding: 0; font-size: .875rem; color: var(--cyan); }
.entry-content img { border-radius: var(--radius-sm); margin: 1.5rem 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.entry-content th,.entry-content td { padding: .75rem 1rem; border: 1px solid var(--border); text-align: left; }
.entry-content th { background: var(--bg-card); color: var(--text); font-weight: 600; }
.entry-content td { color: var(--text-2); }

/* ── ARCHIVE HERO ───────────────────────────────────────────────────────────── */
.archive-hero {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.archive-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin: .5rem 0; }
.archive-desc  { color: var(--text-2); max-width: 600px; margin-top: .5rem; }
.breadcrumbs   { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: var(--text-3); margin-bottom: .5rem; flex-wrap: wrap; }
.breadcrumbs a { color: var(--text-2); }
.breadcrumbs a:hover { color: var(--primary); }

/* ── BLOG LAYOUT ─────────────────────────────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  padding-top: 3rem;
}
.blog-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.widget-title { font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text); margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }

/* ── PAGINATION ─────────────────────────────────────────────────────────────── */
.pagination { display: flex; gap: .5rem; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: var(--text-2);
  transition: all var(--transition);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { border-color: var(--primary); color: var(--primary); background: rgba(99,102,241,.1); }
.pagination .prev,.pagination .next { width: auto; padding: 0 1rem; gap: .4rem; }

/* ── SINGLE POST ─────────────────────────────────────────────────────────────── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  padding-top: 2rem;
}
.single-post {}
.post-header { margin-bottom: 2rem; }
.post-meta-top { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; font-size: .8rem; color: var(--text-3); margin-bottom: 1rem; }
.post-meta-top a { color: var(--cyan); }
.post-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1.25rem; }
.post-author-row { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; }
.author-name { font-size: .9rem; color: var(--text-2); }
.post-featured-image { margin: 2rem 0; border-radius: var(--radius); overflow: hidden; }
.post-featured-image img { width: 100%; height: 400px; object-fit: cover; }
.post-footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.post-tags,.post-share { display: flex; gap: .5rem; align-items: center; font-size: .875rem; color: var(--text-3); flex-wrap: wrap; }
.post-tags .tag-label { color: var(--text-3); }
.post-tags a { background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 4px; padding: .2rem .6rem; color: var(--text-2); }
.share-link { color: var(--cyan); font-weight: 600; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.post-nav a { color: var(--text-2); font-size: .875rem; }
.post-nav a:hover { color: var(--primary); }
.post-nav-next { text-align: right; }

/* ── PRODUCT PAGE ───────────────────────────────────────────────────────────── */
.product-container { padding-top: 2rem; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  margin-top: 1.5rem;
}
.product-header { margin-bottom: 2rem; }
.product-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin: .5rem 0 1rem; }
.product-excerpt { font-size: 1.1rem; color: var(--text-2); max-width: 640px; }
.product-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.badge {
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 50px;
  border: 1px solid transparent;
}
.badge-blue   { background: rgba(99,102,241,.12); color: var(--primary); border-color: rgba(99,102,241,.3); }
.badge-green  { background: rgba(16,185,129,.12); color: var(--green);   border-color: rgba(16,185,129,.3); }
.badge-purple { background: rgba(99,102,241,.12); color: var(--cyan);    border-color: rgba(6,182,212,.3); }
.badge-cyan   { background: rgba(6,182,212,.12);  color: var(--cyan);    border-color: rgba(6,182,212,.3); }
.product-featured-image { border-radius: var(--radius); overflow: hidden; margin: 2rem 0; }
.product-featured-image img { width: 100%; height: auto; object-fit: cover; }
.product-description { margin-top: 1rem; }
.product-changelog { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.product-changelog h2 { font-size: 1.25rem; margin-bottom: 1rem; }
.changelog-content { color: var(--text-2); font-size: .9rem; line-height: 1.7; }

/* Purchase sidebar */
.product-sidebar { position: sticky; top: 90px; }
.purchase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.purchase-price { margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.price-row { display: flex; align-items: baseline; gap: .5rem; }
.price-row-alt { margin-top: .5rem; opacity: .7; }
.price-currency { font-size: .8rem; color: var(--text-3); text-transform: uppercase; }
.price-amount { font-size: 1.75rem; font-weight: 800; color: var(--text); }
.purchase-features {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.purchase-features li { display: flex; align-items: center; gap: .6rem; font-size: .875rem; color: var(--text-2); }
.purchase-details {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.detail-row { display: flex; justify-content: space-between; font-size: .8rem; }
.detail-row span:first-child { color: var(--text-3); }
.detail-row span:last-child  { color: var(--text-2); font-weight: 500; }
.purchase-guarantee {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius-sm);
  color: var(--green);
}
.purchase-guarantee p { font-size: .8rem; color: var(--text-2); }

/* ── 404 ERROR ──────────────────────────────────────────────────────────────── */
.error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

/* ── NO RESULTS ─────────────────────────────────────────────────────────────── */
.no-results {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-2);
}
.no-results p { margin-bottom: 1.5rem; }

/* ── GUTENBERG BLOCK OVERRIDES ───────────────────────────────────────────────── */
.wp-block-button__link {
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: .95rem !important;
  transition: all var(--transition) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  border-color: var(--border) !important;
  color: var(--text) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}
.wp-block-separator { border-color: var(--border) !important; }
.wp-block-quote {
  border-left: 3px solid var(--primary) !important;
  padding: 1rem 1.5rem !important;
  background: rgba(99,102,241,.06) !important;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
}
.wp-block-code {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--cyan) !important;
}
.wp-block-cover { min-height: 400px; }
.alignwide  { margin-left: calc(-1 * (var(--max-w) - 820px) / 2); width: calc(820px + (var(--max-w) - 820px)); max-width: var(--max-w); }
.alignfull  { margin-left: calc(-50vw + 50%); width: 100vw; max-width: 100vw; }

/* ── ELEMENTOR OVERRIDES ─────────────────────────────────────────────────────── */
.elementor-full-width-page { background: var(--bg); }
.elementor-canvas-page { background: var(--bg); }
.elementor-section-wrap + .site-footer { display: none; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .blog-layout,.post-layout { grid-template-columns: 1fr; }
  .blog-sidebar,.post-sidebar { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
}
@media (max-width: 768px) {
  .primary-nav,.nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .hero-section { min-height: 70vh; }
  .hero-inner { padding: 4rem 1.5rem; }
  .hero-stats { gap: 1.25rem; }
  .plugins-grid,.features-grid,.testimonials-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .cta-card { padding: 2.5rem 1.5rem; }
  .steps-track { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions  { flex-direction: column; }
  .trust-inner  { flex-direction: column; align-items: flex-start; }
}
