/* FindAFraudExpert.org — Stylesheet */
/* Aesthetic: Refined editorial. Deep authority meets warm approachability. */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Libre+Franklin:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --charcoal: #1a1f2e;
  --slate: #2d3347;
  --ash: #4a5168;
  --muted: #6b7280;
  --silver: #9ca3af;
  --light: #e8eaed;
  --cream: #f8f7f4;
  --white: #ffffff;
  --amber: #c8922a;
  --amber-light: #daa94d;
  --amber-glow: #f5e6c8;
  --amber-deep: #a67721;
  --green: #2d8a5e;
  --green-light: #e8f5ee;
  --red: #c0392b;
  --red-light: #fdf0ee;
  --blue-light: #eef4fb;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Libre Franklin', 'Helvetica Neue', sans-serif;
  --max-w: 1200px;
  --max-w-narrow: 800px;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(26,31,46,.08);
  --shadow-md: 0 4px 12px rgba(26,31,46,.1);
  --shadow-lg: 0 8px 30px rgba(26,31,46,.12);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: var(--amber-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }

/* ---- UTILITY ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-amber { color: var(--amber); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.65;
}

/* ---- ANNOUNCEMENT BAR ---- */
.announce-bar {
  background: var(--charcoal);
  padding: 10px 0;
  text-align: center;
  font-size: .82rem;
}
.announce-bar a {
  color: var(--light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.announce-bar a:hover { color: var(--white); }
.announce-bar strong { color: var(--amber-light); }
.announce-link {
  color: var(--amber-light);
  font-weight: 600;
  margin-left: 4px;
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--charcoal);
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.logo span { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ash);
  letter-spacing: .01em;
}
.nav-links a:hover { color: var(--charcoal); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--amber);
  color: var(--white) !important;
  font-weight: 600;
  font-size: .88rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--amber-deep); transform: translateY(-1px); color: var(--white) !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(165deg, var(--cream) 0%, var(--white) 40%, #faf9f6 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
  opacity: .4;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--ash);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ash);
}
.trust-icon {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--green);
}

/* ---- INTAKE FORM (HERO SIDEBAR) ---- */
.intake-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.intake-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  border-radius: 10px 10px 0 0;
}
.intake-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.intake-subtitle {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ash);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1.4 0L6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-step { display: none; }
.form-step.active { display: block; }

.step-indicator {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.step-dot {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--light);
  transition: background var(--transition);
}
.step-dot.active { background: var(--amber); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
}
.btn-primary:hover { background: var(--amber-deep); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--ash);
  border: 1px solid var(--light);
  width: auto;
  padding: 10px 18px;
  font-size: .85rem;
}
.btn-secondary:hover { border-color: var(--silver); }
.btn-outline {
  background: transparent;
  color: var(--amber-deep);
  border: 2px solid var(--amber);
  width: auto;
}
.btn-outline:hover { background: var(--amber); color: var(--white); }

.form-buttons { display: flex; gap: 10px; margin-top: 8px; }
.form-buttons .btn-secondary { flex-shrink: 0; }
.form-buttons .btn-primary { flex: 1; }

.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--silver);
  margin-top: 14px;
}

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section--cream { background: var(--cream); }
.section--charcoal { background: var(--charcoal); color: var(--white); }
.section--charcoal .section-label { color: var(--amber-light); }
.section--charcoal .section-subtitle { color: var(--silver); }
.section--charcoal h2 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 52px; }

/* ---- WHO THIS IS FOR ---- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 10px;
  padding: 32px 24px;
  transition: all var(--transition);
}
.audience-card:hover { box-shadow: var(--shadow-md); border-color: var(--amber-glow); transform: translateY(-3px); }
.audience-icon {
  width: 48px; height: 48px;
  background: var(--amber-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.audience-card h3 { margin-bottom: 10px; }
.audience-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ---- HOW IT WORKS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: var(--light);
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--amber);
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; max-width: 280px; margin: 0 auto; }

/* ---- STAT BAR ---- */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--amber-light);
  margin-bottom: 6px;
}
.stat-label {
  font-size: .85rem;
  color: var(--silver);
  line-height: 1.5;
}

/* ---- EXPERT CARDS ---- */
.expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.expert-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 10px;
  padding: 28px;
  transition: all var(--transition);
}
.expert-card:hover { box-shadow: var(--shadow-md); }
.expert-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.expert-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.expert-name { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 2px; }
.expert-creds { font-size: .82rem; color: var(--amber-deep); font-weight: 500; }
.expert-location { font-size: .82rem; color: var(--muted); margin-top: 2px; }
.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
}
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 500;
  background: var(--blue-light);
  color: var(--slate);
}
.tag--amber { background: var(--amber-glow); color: var(--amber-deep); }
.tag--green { background: var(--green-light); color: var(--green); }
.expert-description {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.expert-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--amber-deep);
}
.expert-cta:hover { color: var(--amber); }

/* ---- VETTING SECTION ---- */
.vetting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.vetting-list { list-style: none; }
.vetting-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light);
}
.vetting-list li:last-child { border-bottom: none; }
.vetting-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.vetting-list h4 { margin-bottom: 4px; }
.vetting-list p { font-size: .88rem; color: var(--muted); line-height: 1.5; }

.vetting-box {
  background: var(--cream);
  border-radius: 10px;
  padding: 40px;
  border: 1px solid var(--light);
}
.vetting-box blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--slate);
  margin-bottom: 20px;
}
.vetting-box cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: .88rem;
  color: var(--muted);
}

/* ---- CASE TYPE CARDS ---- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.case-card {
  display: block;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 10px;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.case-card:hover { border-color: var(--amber); box-shadow: var(--shadow-md); transform: translateY(-2px); color: inherit; }
.case-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.case-card p { font-size: .88rem; color: var(--muted); line-height: 1.55; }
.case-card .arrow { color: var(--amber); margin-top: 12px; font-size: .9rem; font-weight: 600; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--light);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  line-height: 1.4;
}
.faq-question .icon {
  font-size: 1.3rem;
  color: var(--amber);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 0 22px;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--charcoal);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,146,42,.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; position: relative; }
.cta-banner p { color: var(--silver); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner .btn-primary { width: auto; padding: 14px 36px; font-size: 1rem; position: relative; }

/* ---- FOOTER ---- */
.site-footer {
  background: #141825;
  color: var(--silver);
  padding: 60px 0 32px;
  font-size: .88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo { color: var(--white); }
.footer-brand p { color: var(--silver); font-size: .88rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--silver); font-size: .88rem; }
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--ash);
}

/* ---- SEO / CONTENT PAGES ---- */
.page-hero {
  padding: 56px 0 48px;
  background: var(--cream);
  border-bottom: 1px solid var(--light);
}
.page-hero .section-label { margin-bottom: 8px; }
.page-hero h1 { margin-bottom: 16px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.page-hero p { font-size: 1.05rem; color: var(--ash); max-width: 640px; line-height: 1.7; }
.page-hero--centered { text-align: center; }
.page-hero--centered p { margin: 0 auto; }

.content-section { padding: 56px 0; }
.content-section + .content-section { border-top: 1px solid var(--light); }

.content-prose { max-width: 720px; }
.content-prose h2 { margin: 40px 0 16px; font-size: 1.6rem; }
.content-prose h3 { margin: 32px 0 12px; font-size: 1.2rem; }
.content-prose p { margin-bottom: 18px; color: var(--ash); }
.content-prose ul, .content-prose ol { margin: 0 0 18px 24px; color: var(--ash); }
.content-prose li { margin-bottom: 8px; }

.sidebar-cta {
  background: var(--cream);
  border: 1px solid var(--light);
  border-radius: 10px;
  padding: 32px;
  position: sticky;
  top: 96px;
}
.sidebar-cta h3 { margin-bottom: 10px; }
.sidebar-cta p { font-size: .9rem; color: var(--muted); margin-bottom: 20px; }

.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: flex-start;
}

/* ---- BREADCRUMBS ---- */
.breadcrumbs {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--amber); }
.breadcrumbs span { margin: 0 6px; }

/* ---- CITY GRID ---- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.city-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--charcoal);
  transition: all var(--transition);
}
.city-link:hover { border-color: var(--amber); color: var(--amber-deep); }
.city-link .pin { color: var(--amber); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp .6s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: .05s; }
.fade-up:nth-child(2) { animation-delay: .12s; }
.fade-up:nth-child(3) { animation-delay: .19s; }
.fade-up:nth-child(4) { animation-delay: .26s; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.slide-in { opacity: 0; animation: slideIn .5s ease forwards; animation-delay: .2s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar-cta { position: static; }
  .vetting-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 40px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--light);
    box-shadow: var(--shadow-md);
  }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .audience-grid { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: 1fr; }
  .intake-card { padding: 24px 20px; }
}
