/* Retouchable SEO Pages - Standalone Stylesheet */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal: #1e1e1e;
  --canvas: #f5f5f5;
  --accent: #8b5cf6;
  --accent-hover: #7c3aed;
  --ember: #f97316;
  --text: #374151;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 12px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* Layout */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.content-narrow { max-width: 720px; margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { font-size: 1.125rem; font-weight: 700; color: var(--charcoal); }
.header-nav { display: flex; align-items: center; gap: 24px; }
.header-nav a { color: var(--text); font-size: 0.9rem; font-weight: 500; }
.header-nav a:hover { color: var(--accent); text-decoration: none; }
.nav-cta {
  background: var(--accent) !important; color: var(--white) !important;
  padding: 8px 18px; border-radius: var(--radius); font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }

/* Breadcrumb */
.breadcrumb {
  padding: 16px 24px; font-size: 0.85rem; color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 8px; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2d2d3d 100%);
  color: var(--white); padding: 80px 0 64px; text-align: center;
}
.hero h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 28px; }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 1rem; text-decoration: none; transition: all 0.2s;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); text-decoration: none; transform: translateY(-1px); }

/* Sections */
.intro-section { padding: 56px 24px; }
.intro-section h2 { font-size: 1.5rem; margin-bottom: 16px; color: var(--charcoal); }
.intro-section p { margin-bottom: 16px; }

.how-it-works { padding: 56px 0; background: var(--canvas); }
.how-it-works h2 { text-align: center; font-size: 1.75rem; margin-bottom: 40px; color: var(--charcoal); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.step-card {
  background: var(--white); padding: 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  font-weight: 700; font-size: 0.9rem; margin-bottom: 12px;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--charcoal); }
.step-card p { font-size: 0.9rem; color: var(--text-light); }

/* Tips */
.tips-section { padding: 56px 24px; }
.tips-section h2 { font-size: 1.75rem; margin-bottom: 28px; color: var(--charcoal); }
.tips-list { display: flex; flex-direction: column; gap: 20px; }
.tip-item {
  padding: 20px 24px; background: var(--canvas); border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.tip-item h3 { font-size: 1rem; margin-bottom: 6px; color: var(--charcoal); }
.tip-item p { font-size: 0.9rem; color: var(--text-light); }

/* Features Grid */
.features-section { padding: 56px 0; background: var(--canvas); }
.features-section h2 { text-align: center; font-size: 1.75rem; margin-bottom: 40px; color: var(--charcoal); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--white); padding: 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--charcoal); }
.feature-card p { font-size: 0.9rem; color: var(--text-light); }

/* CTA Block */
.cta-block { padding: 64px 0; text-align: center; }
.cta-block.alt { background: var(--canvas); }
.cta-inner h2 { font-size: 1.75rem; margin-bottom: 12px; color: var(--charcoal); }
.cta-inner p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-note { display: block; margin-top: 12px; font-size: 0.85rem; color: var(--text-light); }

/* FAQ */
.faq-section { padding: 56px 0; }
.faq-section h2 { text-align: center; font-size: 1.75rem; margin-bottom: 36px; color: var(--charcoal); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 20px 0;
}
.faq-item h3 { font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.faq-item p { font-size: 0.9rem; color: var(--text-light); }

/* Related */
.related-section { padding: 56px 0; background: var(--canvas); }
.related-section h2 { text-align: center; font-size: 1.5rem; margin-bottom: 28px; color: var(--charcoal); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.related-card {
  background: var(--white); padding: 20px 24px; border-radius: var(--radius);
  border: 1px solid var(--border); transition: border-color 0.2s;
}
.related-card:hover { border-color: var(--accent); text-decoration: none; }
.related-card h3 { font-size: 0.95rem; color: var(--charcoal); margin-bottom: 4px; }
.related-card p { font-size: 0.85rem; color: var(--text-light); }

/* Guide Index Page */
.guide-index { padding: 56px 0; }
.guide-index h1 { font-size: 2rem; margin-bottom: 12px; color: var(--charcoal); }
.guide-index .index-sub { color: var(--text-light); margin-bottom: 36px; font-size: 1.05rem; }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.guide-card {
  background: var(--white); padding: 24px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: border-color 0.2s, box-shadow 0.2s;
}
.guide-card:hover { border-color: var(--accent); box-shadow: 0 2px 12px rgba(139,92,246,0.08); text-decoration: none; }
.guide-card h2 { font-size: 1.05rem; color: var(--charcoal); margin-bottom: 6px; }
.guide-card p { font-size: 0.875rem; color: var(--text-light); }
.guide-card .tag { display: inline-block; font-size: 0.75rem; padding: 2px 10px; border-radius: 99px; background: var(--canvas); color: var(--text-light); margin-top: 10px; }

/* Footer */
.site-footer { padding: 48px 0 32px; background: var(--charcoal); color: rgba(255,255,255,0.7); }
.footer-inner { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; }
.footer-brand .logo-text { color: var(--white); font-size: 1.125rem; }
.footer-tagline { font-size: 0.875rem; margin-top: 8px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 8px; font-size: 0.8rem; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.75rem; }
  .hero { padding: 56px 0 44px; }
  .header-nav a:not(.nav-cta) { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps-grid, .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.5rem; }
}

/* ─── Cost-Saving Pages ─── */

.hero-cost { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.hero-badge {
  display: inline-block; background: rgba(139,92,246,0.2); color: var(--accent);
  padding: 4px 14px; border-radius: 99px; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 16px; letter-spacing: 0.03em;
}

/* Problem section */
.problem-section { padding: 56px 24px; }
.problem-section h2 { font-size: 1.5rem; margin-bottom: 16px; color: var(--charcoal); }
.problem-section p { margin-bottom: 16px; }

/* Cost Table */
.cost-table-section { padding: 56px 0; background: var(--canvas); }
.cost-table-section h2 { text-align: center; font-size: 1.75rem; margin-bottom: 32px; color: var(--charcoal); }
.cost-table-wrapper { overflow-x: auto; }
.cost-table {
  width: 100%; max-width: 800px; margin: 0 auto;
  border-collapse: collapse; background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.cost-table th {
  background: var(--charcoal); color: var(--white);
  padding: 14px 20px; text-align: left; font-size: 0.9rem; font-weight: 600;
}
.cost-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.cost-table tbody tr:hover { background: rgba(139,92,246,0.03); }
.cost-traditional { color: #dc2626; font-weight: 500; }
.cost-retouchable { color: #16a34a; font-weight: 500; }
.total-row { background: var(--canvas); }
.total-row .cost-traditional { color: #dc2626; font-size: 1.05rem; }
.total-row .cost-retouchable { color: #16a34a; font-size: 1.05rem; }
.cost-disclaimer {
  text-align: center; font-size: 0.8rem; color: var(--text-light);
  margin-top: 16px; font-style: italic;
}

/* Feature Spotlights */
.spotlights-section { padding: 56px 0; }
.spotlights-section h2 { text-align: center; font-size: 1.75rem; margin-bottom: 36px; color: var(--charcoal); }
.spotlights-list { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; }
.spotlight-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color 0.2s;
}
.spotlight-card:hover { border-color: var(--accent); }
.spotlight-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.spotlight-header h3 { font-size: 1.1rem; color: var(--charcoal); }
.spotlight-savings {
  background: #dcfce7; color: #16a34a; padding: 4px 12px;
  border-radius: 99px; font-size: 0.8rem; font-weight: 600;
}
.spotlight-replaces { font-size: 0.9rem; color: var(--text-light); margin-bottom: 8px; }
.spotlight-card > p:last-child { font-size: 0.9rem; color: var(--text); }

/* ROI Section */
.roi-section { padding: 56px 0; background: var(--canvas); }
.roi-section h2 { text-align: center; font-size: 1.75rem; margin-bottom: 32px; color: var(--charcoal); }
.roi-card {
  max-width: 700px; margin: 0 auto; background: var(--white);
  border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.roi-item { text-align: center; padding: 16px; }
.roi-label { display: block; font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.roi-value { display: block; font-size: 1.5rem; font-weight: 700; color: var(--charcoal); }
.roi-traditional .roi-value { color: #dc2626; text-decoration: line-through; opacity: 0.7; }
.roi-retouchable .roi-value { color: var(--accent); }
.roi-savings { grid-column: 1 / -1; background: #dcfce7; border-radius: var(--radius); }
.roi-savings .roi-value { color: #16a34a; font-size: 2rem; }

@media (max-width: 768px) {
  .cost-table th, .cost-table td { padding: 10px 12px; font-size: 0.85rem; }
  .spotlight-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .roi-grid { grid-template-columns: 1fr; }
  .roi-savings { grid-column: 1; }
}
