// Why Sendorai — value props (4 blocks)
function ValueProps() {
  const cards = [
    {
      icon: <Icon.Search size={20}/>,
      pull: "01 · Saves hours",
      h: "Research that takes you a week, done in minutes.",
      p: "Finding the right firms, identifying the right contact, reading enough about them to write something real. That's the grind. Sendorai does it for you.",
    },
    {
      icon: <Icon.Spark size={20}/>,
      pull: "02 · Specific, not generic",
      h: "One email per contact. Researched, not templated.",
      p: "Every draft cites something specific about the firm and the person: the deal they advised on, the case they argued, the launch they shipped. Mass-mailers don't.",
    },
    {
      icon: <Icon.Building size={20}/>,
      pull: "03 · Hidden job market",
      h: "Reach the firms that never advertise.",
      p: "The jobs worth applying to don't appear on LinkedIn. Sub-50 boutiques, founder-led shops, partner-hired roles. Sendorai targets exactly those.",
    },
    {
      icon: <Icon.Check size={20}/>,
      pull: "04 · You stay in control",
      h: "Drafts, not sends. You review, you decide.",
      p: "Nothing goes out until you press send in Gmail. Edit, rewrite, or skip any draft. The AI does the work; you keep your name on it.",
    },
  ];

  return (
    <section className="section value-section" id="why">
      <div className="section-eyebrow">Why Sendorai</div>
      <h2>Outreach that <em>feels written</em>, not generated.</h2>
      <p className="lede">Sendorai is built around what actually works: specific emails, sent to the right person, by someone who's done the research. It just takes the time out.</p>

      <div className="value-grid">
        {cards.map((c, i) => (
          <div key={i} className="value-card">
            <div className="vicon">{c.icon}</div>
            <h3>{c.h}</h3>
            <p>{c.p}</p>
            <div className="pull">{c.pull}</div>
          </div>
        ))}
      </div>
    </section>
  );
}
Object.assign(window, { ValueProps });
