/*
Theme Name: Merchant Center Audit
Theme URI: https://merchant.center
Author: Merchant Center
Author URI: https://merchant.center
Description: SEO-optimized SaaS theme for Google Merchant Center suspension audit and reinstatement services. Built for ranking on keywords like "fix google merchant center suspension", "misrepresentation", and "website needs improvement". Includes scanner form, FAQ schema, custom blog post types, and ranking-ready structure.
Version: 1.0.0
Tested up to: 6.7
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: merchant-center
Tags: saas, ecommerce, seo-friendly, custom-colors, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, blog, business
*/

/* ─── DESIGN TOKENS ─── */
:root {
  --bg: #0a0e0d;
  --bg-elevated: #11181a;
  --surface: #1a2326;
  --border: #243033;
  --text: #f4f1ea;
  --text-dim: #9aa5a3;
  --text-muted: #6b7775;
  --accent: #d4ff3a;
  --accent-soft: rgba(212, 255, 58, 0.12);
  --danger: #ff6b3d;
  --success: #5eead4;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ─── NAVIGATION ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 13, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.site-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.logo-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.main-nav { display: flex; gap: 32px; align-items: center; }
.main-nav a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600 !important;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
}
@media (max-width: 720px) {
  .main-nav a:not(.nav-cta) { display: none; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(212, 255, 58, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.urgent-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(212, 255, 58, 0.3);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease-out;
}
.urgent-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
h1, .h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.035em;
  max-width: 900px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease-out 0.1s both;
}
h1 em, .h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-lede {
  font-size: 20px;
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.55;
  animation: fadeUp 0.7s ease-out 0.2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SCAN FORM ─── */
.scan-card {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  max-width: 760px;
  animation: fadeUp 0.7s ease-out 0.3s both;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.scan-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.scan-card-title {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.scan-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 6px;
}
.scan-meta::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success);
}
.scan-form { display: flex; flex-direction: column; gap: 16px; }
.input-group {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.input-group:focus-within { border-color: var(--accent); }
.url-prefix {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 14px;
  border-right: 1px solid var(--border);
}
.scan-form input[type="url"],
.scan-form input[type="email"] {
  flex: 1;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-family: var(--sans);
  outline: none;
  width: 100%;
}
.scan-form input::placeholder { color: var(--text-muted); }
.suspension-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
}
.suspension-option { position: relative; cursor: pointer; }
.suspension-option input[type="radio"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.suspension-option-label {
  display: block;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  text-align: center;
  transition: all 0.2s;
}
.suspension-option input:checked + .suspension-option-label {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}
.suspension-option:hover .suspension-option-label {
  border-color: var(--text-muted);
  color: var(--text);
}
.scan-button {
  padding: 20px 32px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: var(--sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.scan-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(212, 255, 58, 0.4);
}
.scan-button:active { transform: translateY(0); }
.scan-button:disabled { opacity: 0.6; cursor: not-allowed; }
.scan-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}
.scan-error {
  background: rgba(255, 107, 61, 0.1);
  border: 1px solid var(--danger);
  color: var(--danger);
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.scan-error.active { display: block; }

/* ─── TRUST STRIP ─── */
.trust-strip {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}
.trust-item .trust-number {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-item .trust-label {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── SECTIONS ─── */
section { padding: 100px 0; position: relative; }
.section-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.025em;
  max-width: 820px;
  margin-bottom: 24px;
}
h2 em, .h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.section-lede {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 680px;
  margin-bottom: 64px;
}

/* ─── PROBLEM GRID ─── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.problem-card {
  background: var(--bg-elevated);
  padding: 36px 32px;
  transition: background 0.2s;
}
.problem-card:hover { background: var(--surface); }
.problem-icon {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--danger);
  margin-bottom: 20px;
  font-weight: 500;
}
.problem-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.problem-card p { color: var(--text-dim); font-size: 15px; }

/* ─── STEPS ─── */
.steps { display: grid; gap: 24px; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-number {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
}
.step-content h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.step-content p {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 580px;
}
.step-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 12px;
  padding: 4px 10px;
  background: var(--surface);
  border-radius: 4px;
}
@media (max-width: 640px) {
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step-number { font-size: 36px; }
}

/* ─── CHECKS TABS ─── */
.checks-container {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
}
@media (max-width: 640px) { .checks-container { padding: 24px; } }
.checks-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.checks-tab {
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}
.checks-tab:hover { color: var(--text); border-color: var(--text-muted); }
.checks-tab.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.checks-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.check-item {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  align-items: start;
}
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.check-panel { display: none; }
.check-panel.active { display: block; animation: fadeUp 0.4s ease-out; }

/* ─── CONTENT BLOCK ─── */
.content-block { max-width: 780px; margin: 0 auto; }
.content-block h2 { margin-bottom: 32px; }
.content-block h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 48px 0 16px;
  letter-spacing: -0.015em;
}
.content-block p {
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 18px;
  line-height: 1.7;
}
.content-block ul { list-style: none; margin: 16px 0 24px; }
.content-block ul li {
  color: var(--text-dim);
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  font-size: 16px;
}
.content-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.content-block strong { color: var(--text); font-weight: 600; }
.content-block a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }
.content-block a:hover { border-bottom-color: var(--accent); }

/* ─── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 32px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--text-dim);
  font-size: 16px;
  margin-top: 18px;
  line-height: 1.7;
  max-width: 700px;
}

/* ─── FINAL CTA ─── */
.final-cta {
  text-align: center;
  padding: 120px 0;
  position: relative;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 255, 58, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 { margin: 0 auto 24px; }
.final-cta .section-lede { margin: 0 auto 40px; }
.final-cta-button {
  display: inline-block;
  padding: 22px 40px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.2s;
}
.final-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -8px rgba(212, 255, 58, 0.5);
}

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.blog-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.blog-card-image {
  aspect-ratio: 16 / 9;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-content { padding: 28px; }
.blog-card-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.blog-card-excerpt {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.5;
}

/* ─── SINGLE POST ─── */
.single-post-header {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
.single-post-meta {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.single-post-title {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 900px;
}
.single-post-content {
  max-width: 780px;
  margin: 0 auto 80px;
  font-size: 18px;
}
.single-post-content p {
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.7;
}
.single-post-content h2 {
  font-family: var(--serif);
  font-size: 36px;
  margin: 56px 0 16px;
  letter-spacing: -0.02em;
}
.single-post-content h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 40px 0 14px;
  letter-spacing: -0.015em;
}
.single-post-content ul, .single-post-content ol {
  margin: 16px 0 24px 20px;
  color: var(--text-dim);
}
.single-post-content li { margin-bottom: 8px; }
.single-post-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
}
.single-post-content code {
  background: var(--surface);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.9em;
  color: var(--accent);
}
.single-post-content a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-soft);
}
.single-post-content img { border-radius: 12px; margin: 32px 0; }

/* ─── PAGES ─── */
.page-header { padding: 80px 0 48px; }
.page-content {
  max-width: 780px;
  margin: 0 auto 80px;
  font-size: 18px;
}
.page-content p {
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.7;
}
.page-content h2 {
  font-family: var(--serif);
  font-size: 36px;
  margin: 56px 0 16px;
  letter-spacing: -0.02em;
}

/* ─── 404 ─── */
.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.error-404 .big-number {
  font-family: var(--serif);
  font-size: clamp(120px, 20vw, 240px);
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-tagline {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text-dim);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.5;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  max-width: 600px;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 64px auto 0;
}
.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  transition: transform 0.2s, border-color 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pricing-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}
.pricing-tagline {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 24px;
}
.pricing-price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pricing-price-suffix {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--sans);
}
.pricing-features {
  list-style: none;
  margin: 28px 0;
}
.pricing-features li {
  padding: 10px 0;
  color: var(--text-dim);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: start;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}
.pricing-cta {
  display: block;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s;
}
.pricing-cta:hover { border-color: var(--accent); color: var(--accent); }
.pricing-card.featured .pricing-cta {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.pricing-card.featured .pricing-cta:hover {
  background: transparent;
  color: var(--accent);
}

/* ─── WP CORE OVERRIDES ─── */
.alignleft { float: left; margin: 0 24px 24px 0; }
.alignright { float: right; margin: 0 0 24px 24px; }
.aligncenter { display: block; margin: 0 auto 24px; }
.wp-caption-text { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 8px; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 48px 0;
}
.pagination a, .pagination span {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-dim);
  font-size: 14px;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
