/* pricing-styles.css — Shared stylesheet for all Trades Marketing Co SEO pages */
/* Generated 2026-07-30 */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
  font-size: 16px;
}

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

/* ============ Breadcrumb ============ */
.breadcrumb {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
  padding: 12px 0;
}
.breadcrumb a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #1e293b; font-weight: 600; }

/* ============ Header ============ */
header {
  background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
  border-radius: 16px;
  padding: 40px 32px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #0f172a;
}
.lead {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ============ CTA buttons ============ */
.cta-primary, .cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(249,115,22,0.3);
  transition: all 0.2s;
}
.cta-primary:hover, .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249,115,22,0.4);
}
.cta-sub {
  font-size: 13px;
  color: #64748b;
  margin-top: 12px;
}

/* ============ Sections ============ */
section {
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #0f172a;
}
section h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 16px 0 8px;
  color: #1e293b;
}
section h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 12px 0 6px;
  color: #f97316;
}
section p { margin-bottom: 14px; }
section ul, section ol { margin: 14px 0 14px 24px; color: #475569; }
section li { margin-bottom: 8px; }
section a { color: #f97316; text-decoration: none; font-weight: 500; }
section a:hover { text-decoration: underline; }
strong { color: #1e293b; }

/* ============ Stats grid ============ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.stat-card {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  color: #ea580c;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: #7c2d12;
  font-weight: 500;
}

/* ============ Service grid ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.service-card {
  display: block;
  background: #fff;
  border: 2px solid #fed7aa;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.service-card:hover {
  border-color: #f97316;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(249,115,22,0.15);
}
.service-card h3 {
  color: #ea580c;
  margin: 0 0 8px;
  font-size: 18px;
}
.service-card p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

/* ============ Service list (individual services) ============ */
.service-list { margin-top: 20px; }
.service-item {
  background: #f8fafc;
  border-left: 4px solid #f97316;
  padding: 20px 24px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.service-item h3 {
  color: #0f172a;
  margin-top: 0;
}

/* ============ FAQ ============ */
.faq-section .faq-item {
  background: #fff8f0;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
  border: 1px solid #fed7aa;
}
.faq-section .faq-item h3 {
  font-size: 17px;
  color: #ea580c;
  margin: 0 0 8px;
}

/* ============ CTA Section ============ */
.cta-section {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  text-align: center;
}
.cta-section h2 { color: white; }
.cta-section p { color: #fed7aa; }
.cta-section a { color: white; }

/* ============ Tables ============ */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}
th {
  background: #fff7ed;
  color: #7c2d12;
  font-weight: 700;
}
tbody tr:hover { background: #f8fafc; }

/* ============ Article / Case Study ============ */
article header {
  background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
}
.meta {
  font-size: 14px;
  color: #64748b;
  font-style: italic;
}

/* ============ Blockquote ============ */
blockquote {
  background: #fff8f0;
  border-left: 4px solid #f97316;
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
  font-style: italic;
  color: #475569;
}

/* ============ Code ============ */
code {
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #1e293b;
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .page-wrapper { padding: 20px 12px 40px; }
  header, section { padding: 24px 20px; }
  h1 { font-size: 32px; }
  section h2 { font-size: 24px; }
  .stat-num { font-size: 28px; }
  .cta-primary { padding: 14px 24px; font-size: 15px; }
}
