/* ==========================================================================
   Minti SEO landing pages — shared stylesheet
   Dark-first, brand tokens mirror promo/index.html. Used by category pages
   and guides. Kept external so all pages stay visually consistent.
   ========================================================================== */

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

:root {
  --bg: #0A0A0F;
  --surface: #111118;
  --surface-2: #161620;
  --green: #22C55E;
  --green-light: #4ADE80;
  --green-dark: #1DB954;
  --text: #E8E8EC;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --border: rgba(255,255,255,0.06);
  --glow: rgba(34,197,94,0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-cta {
  background: var(--green);
  color: #06210F;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 9px;
  text-decoration: none;
}

/* ===== BREADCRUMB ===== */
.breadcrumb { font-size: 13px; color: var(--text-muted); padding: 20px 0 0; }
.breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-light); }

/* ===== HERO ===== */
.page-hero { padding: 28px 0 40px; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.page-hero h1 .green { color: var(--green); }
.page-hero .lede {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 680px;
}

/* ===== CTA BUTTONS ===== */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn.primary { background: var(--green); color: #06210F; box-shadow: 0 6px 20px var(--glow); }
.btn.secondary { background: var(--surface-2); color: var(--text); border: 1px solid var(--border); }
.btn:hover { transform: translateY(-1px); }

/* ===== CONTENT SECTIONS ===== */
.section { padding: 30px 0; border-top: 1px solid var(--border); }
.section h2 {
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section h2 .green { color: var(--green); }
.section p { color: var(--text-secondary); margin-bottom: 14px; font-weight: 300; }
.section ul { list-style: none; margin: 8px 0 4px; }
.section li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-weight: 300;
}
.section li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--glow);
}
.section strong { color: var(--text); font-weight: 600; }

/* ===== FAQ (details/summary — no JS, great for FAQPage rich results) ===== */
.faq { padding: 30px 0; border-top: 1px solid var(--border); }
.faq h2 { font-size: clamp(1.4rem, 3.4vw, 1.9rem); font-weight: 700; margin-bottom: 18px; }
.faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 18px;
  margin-bottom: 12px;
  background: var(--surface);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 14px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green); font-size: 1.4rem; font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--text-secondary); font-weight: 300; padding: 0 0 16px; }

/* ===== RELATED PILLS ===== */
.related { padding: 30px 0; border-top: 1px solid var(--border); }
.related h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: color .15s ease, border-color .15s ease;
}
.pill:hover { color: var(--green-light); border-color: rgba(34,197,94,0.4); }

/* ===== FINAL CTA BANNER ===== */
.cta-banner {
  margin: 44px 0;
  padding: 40px 28px;
  text-align: center;
  background: radial-gradient(120% 140% at 50% 0%, rgba(34,197,94,0.12), transparent 60%), var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.cta-banner h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 800; margin-bottom: 12px; }
.cta-banner p { color: var(--text-secondary); font-weight: 300; margin-bottom: 22px; }

/* ===== FOOTER ===== */
footer { border-top: 1px solid var(--border); padding: 34px 0 48px; margin-top: 20px; }
footer .container { display: flex; flex-wrap: wrap; gap: 18px 28px; justify-content: space-between; align-items: center; }
footer a { color: var(--text-muted); text-decoration: none; font-size: 14px; }
footer a:hover { color: var(--text-secondary); }
footer .foot-links { display: flex; flex-wrap: wrap; gap: 18px; }
footer .copyright { color: var(--text-muted); font-size: 13px; }

/* ===== BACKGROUND GLOW ===== */
body::before {
  content: "";
  position: fixed;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, var(--glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 600px) {
  .nav { padding: 14px 18px; }
  .page-hero { padding: 18px 0 30px; }
  .cta-banner { padding: 32px 20px; }
}
