/* AgentOutreach core styles */
html, body { background: var(--page-bg); color: var(--text-dark); font-family: var(--font-body); }
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--text-dark); }

/* HCWF footer needs an explicit dark background — shared template ships transparent. */
.site-footer { background: var(--mm-footer-bg); color: var(--mm-footer-text); }
.site-footer a { color: #cfd8e0; }

/* Hero */
.ao-hero {
  background: linear-gradient(120deg, var(--ao-dark) 0%, #112937 55%, #16384a 100%);
  color: #f3eee7;
  padding: 5rem 0 4rem;
}
.ao-hero h1 { color: #f8f3e8; }
.ao-hero .lead { color: #e3e9ec; }
.ao-hero-bullets { list-style: none; padding-left: 0; color: #e3e9ec; }
.ao-hero-bullets li { padding: .3rem 0; }
.ao-hero-bullets i { width: 1.6rem; }

.ao-hero-card {
  background: var(--surface-bg);
  border-radius: 14px;
  padding: 1.25rem;
  color: var(--text-dark);
  box-shadow: 0 22px 50px rgba(0,0,0,.28);
}
.ao-card-head { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.ao-card-sub { color: var(--muted-text); font-size: .85rem; }
.ao-card-body p { margin-bottom: .5rem; }

.ao-grade {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem;
  border-radius: 8px;
  font-weight: 700; font-size: 1.1rem;
}
.ao-grade-a { background: var(--ao-green); color: #fff; }
.ao-grade-b { background: var(--ao-teal); color: #fff; }
.ao-grade-c { background: #c7c2b9; color: #3a3a3a; }

.ao-pitch {
  background: #fbf7ef;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: .75rem;
  margin-top: .5rem;
  font-size: .9rem;
}
.ao-pitch-line { margin-bottom: .15rem; }
.ao-pitch-k { color: var(--muted-text); font-weight: 600; margin-right: .25rem; }
.ao-actions { display: flex; gap: .5rem; margin-top: .75rem; }

.btn-coral {
  background: var(--ao-coral);
  color: #16120e;
  border: none;
  font-weight: 600;
}
.btn-coral:hover { background: #e96d3c; color: #16120e; }

/* Section blocks */
.ao-section { padding: 4rem 0; }
.ao-section-alt { background: var(--surface-alt-bg); }

.ao-step {
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  height: 100%;
}
.ao-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem;
  background: var(--ao-teal);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  margin-bottom: .5rem;
}

/* Pricing */
.ao-plan {
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ao-plan-featured {
  border-color: var(--ao-coral);
  box-shadow: 0 12px 26px rgba(31,122,140,.18);
}
.ao-plan-badge {
  position: absolute; top: -12px; right: 1rem;
  background: var(--ao-coral); color: #16120e;
  padding: .15rem .6rem; border-radius: 6px;
  font-size: .75rem; font-weight: 700;
}
.ao-plan h4 { margin-bottom: .25rem; }
.ao-price-amt { font-size: 2rem; font-weight: 700; color: var(--text-dark); }
.ao-price-period { color: var(--muted-text); }
.ao-plan-features { list-style: none; padding-left: 0; margin: 1rem 0; font-size: .9rem; flex: 1; }
.ao-plan-features li { padding: .25rem 0; border-bottom: 1px dashed var(--border-color); }
.ao-plan-features li:last-child { border-bottom: 0; }
