/* Lemon Road — shared styles for SEO landing pages */

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

:root {
  --lime: #7cfc00;
  --yellow: #f5d742;
  --dark: #1a1a1a;
  --muted: #444;
  --border: rgba(0, 0, 0, 0.15);
  --max-w: 800px;
  --font: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--lime);
  color: var(--dark);
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Layout ─────────────────────────────────────── */

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

main {
  flex: 1;
  padding: 2.5rem 0 4rem;
}

/* ── Header / Nav ────────────────────────────────── */

.site-header {
  background: var(--yellow);
  border-bottom: 2px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
}

.site-logo:hover { text-decoration: underline; }

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  list-style: none;
}

.site-nav a {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:hover { text-decoration: underline; }

.nav-cta {
  margin-left: auto;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--dark);
  transition: opacity 0.15s;
}

.btn:hover { opacity: 0.85; }

.btn-primary {
  background: var(--dark);
  color: #fff;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
}

/* ── Breadcrumb ──────────────────────────────────── */

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: underline;
}

.breadcrumb span { margin: 0 0.4rem; }

/* ── Typography ──────────────────────────────────── */

h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

p {
  margin-bottom: 1rem;
  max-width: 680px;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  max-width: 680px;
}

li { margin-bottom: 0.35rem; }

a {
  color: var(--dark);
  text-decoration: underline;
}

a:hover { opacity: 0.75; }

/* ── Sections ────────────────────────────────────── */

.page-section {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--border);
}

.page-section:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.intro-text {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

/* ── Hero ────────────────────────────────────────── */

.hero-section {
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2.5rem;
}

.hero-cta {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-text {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── FAQ / Details ───────────────────────────────── */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 680px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 0.85rem 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item summary:hover { background: rgba(255, 255, 255, 0.4); }

.faq-item p {
  padding: 0 1rem 0.85rem;
  margin: 0;
  font-size: 0.95rem;
  max-width: 100%;
}

/* ── Cards / Columns ─────────────────────────────── */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.55);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}

.card h3 { margin-bottom: 0.5rem; }
.card p { margin: 0; font-size: 0.9rem; max-width: 100%; }

/* ── Internal Links Block ────────────────────────── */

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.internal-links a {
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.internal-links a:hover { background: rgba(255, 255, 255, 0.8); }

/* ── Last Updated ────────────────────────────────── */

.last-updated {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ── Disclaimer ──────────────────────────────────── */

.disclaimer {
  background: rgba(255, 255, 255, 0.45);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 680px;
  margin-top: 2rem;
}

.disclaimer p { max-width: 100%; margin-bottom: 0.5rem; }
.disclaimer p:last-child { margin-bottom: 0; }

/* ── Footer ──────────────────────────────────────── */

.site-footer {
  background: var(--yellow);
  border-top: 2px solid var(--border);
  padding: 2rem 0;
  margin-top: auto;
}

.site-footer .footer-text {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 640px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}

.footer-nav a {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-nav a:hover { text-decoration: underline; }

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 600px) {
  .site-header .container {
    gap: 0.75rem;
  }

  .nav-cta { margin-left: 0; }

  .card-grid {
    grid-template-columns: 1fr;
  }
}
