/* AllerAlerts SEO landing pages — light theme, brand-aware */

:root {
  --bg: #ffffff;
  --bg-soft: #faf9f7;
  --text: #1a1a1a;
  --text-soft: #4a4a52;
  --text-muted: #7a7a82;
  --border: #e5e5ea;
  --brand-amber: #FFB020;
  --brand-amber-dark: #e09000;
  --brand-red: #f04040;
  --link: #1d4ed8;
  --footer-bg: #18181c;
  --footer-text: #cccad6;
  --footer-muted: #9090a8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.page-header {
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo .aller { color: var(--text); }
.logo .alerts { color: var(--brand-amber); }
.logo .dot { color: var(--brand-red); font-size: 22px; line-height: 1; }

main { max-width: 760px; margin: 0 auto; padding: 32px 24px 64px; }

.hero { text-align: center; padding: 48px 8px 32px; }
.hero h1 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.cta-button {
  display: inline-block;
  background: var(--brand-amber);
  color: #1a1a1a;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.15s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.cta-button:hover {
  background: var(--brand-amber-dark);
  text-decoration: none;
}
.cta-note {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

section { margin: 44px 0; }
section.cta-bottom { margin: 56px 0 32px; }

h2 {
  font-size: 1.55rem;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.08rem;
  margin-top: 22px;
  margin-bottom: 6px;
  color: var(--text);
}
p { margin-bottom: 12px; color: var(--text-soft); }

ol, ul { padding-left: 22px; margin-bottom: 12px; }
ol li, ul li { margin-bottom: 10px; color: var(--text-soft); }
ol li strong, ul li strong { color: var(--text); }

.faq h3 { color: var(--text); }
.faq p { margin-bottom: 14px; }

.cta-bottom {
  text-align: center;
  background: var(--bg-soft);
  padding: 36px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.cta-bottom h2 { margin-bottom: 8px; }
.cta-bottom p { margin-bottom: 18px; }

.page-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 32px 24px;
  margin-top: 48px;
}
.page-footer .inner { max-width: 760px; margin: 0 auto; text-align: center; }
.page-footer p { color: var(--footer-text); margin-bottom: 10px; }
.page-footer .links { margin: 14px 0; font-size: 0.95rem; }
.page-footer .links a {
  color: var(--brand-amber);
  text-decoration: none;
  margin: 0 6px;
}
.page-footer .links a:hover { text-decoration: underline; }
.page-footer .disclaimer {
  font-size: 0.85rem;
  color: var(--footer-muted);
  font-style: italic;
  margin-top: 14px;
}
.page-footer .copyright {
  font-size: 0.82rem;
  color: var(--footer-muted);
  margin-top: 12px;
}

@media (max-width: 600px) {
  .hero { padding: 32px 4px 20px; }
  .hero h1 { font-size: 1.7rem; }
  .hero .subtitle { font-size: 1rem; }
  main { padding: 24px 16px 40px; }
  section { margin: 32px 0; }
  h2 { font-size: 1.3rem; }
}
