<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>AI for SLPs — Systems with Jwo</title>
  <link href="https://api.fontshare.com/v2/css?f[]=melodrama@400,700&display=swap" rel="stylesheet">
  <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&display=swap" rel="stylesheet">

  <style>
    :root {
      --color-cream:      #FFEDE5;
      --color-green:      #214D1D;
      --color-lavender:   #E9C0E0;
      --color-orange:     #F38657;
      --color-pink:       #FFB9E2;
      --color-mustard:    #CA9E25;
      --color-dusty-rose: #EAAA96;
      --font-display:     'Melodrama', Georgia, serif;
      --font-body:        'DM Sans', sans-serif;
      --radius-badge:     100px;
      --radius-card:      16px;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--color-cream);
      color: var(--color-green);
      overflow-x: hidden;
    }

    /* ── UTILITIES ── */
    .container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
    .badge {
      display: inline-block;
      background: var(--color-mustard);
      color: var(--color-cream);
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: var(--radius-badge);
    }
    .badge-pink  { background: var(--color-pink);       color: var(--color-green); }
    .badge-green { background: var(--color-green);      color: var(--color-cream); }
    .badge-orange{ background: var(--color-orange);     color: var(--color-cream); }

    .cta-btn {
      display: inline-block;
      background: var(--color-green);
      color: var(--color-cream);
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      padding: 16px 36px;
      border-radius: var(--radius-badge);
      text-decoration: none;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
      border: none;
      cursor: pointer;
    }
    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(33,77,29,0.22);
    }
    .cta-btn.outline {
      background: transparent;
      border: 2px solid var(--color-green);
      color: var(--color-green);
    }
    .cta-btn.outline:hover {
      background: var(--color-green);
      color: var(--color-cream);
    }

    /* sparkle */
    .spark { display: inline-block; font-style: normal; }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--color-cream);
      border-bottom: 1px solid var(--color-dusty-rose);
      padding: 14px 24px;
    }
    nav .inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    nav .logo {
      font-family: var(--font-display);
      font-size: 1.25rem;
      color: var(--color-green);
      text-decoration: none;
    }
    nav .nav-cta { font-size: 0.875rem; padding: 10px 22px; }

    /* ── HERO ── */
    .hero {
      background: var(--color-green);
      color: var(--color-cream);
      padding: 90px 24px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: var(--color-lavender);
      opacity: 0.12;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 240px; height: 240px;
      border-radius: 50%;
      background: var(--color-orange);
      opacity: 0.10;
    }
    .hero .badge { margin-bottom: 24px; }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 6vw, 4rem);
      line-height: 1.1;
      color: var(--color-cream);
      max-width: 820px;
      margin: 0 auto 24px;
    }
    .hero h1 em {
      color: var(--color-pink);
      font-style: normal;
    }
    .hero p {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--color-dusty-rose);
      max-width: 600px;
      margin: 0 auto 36px;
      line-height: 1.6;
    }
    .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .hero-actions .cta-btn {
      background: var(--color-pink);
      color: var(--color-green);
    }
    .hero-actions .cta-btn:hover {
      box-shadow: 0 8px 24px rgba(255,185,226,0.4);
    }
    .hero-actions .cta-btn.outline {
      border-color: var(--color-dusty-rose);
      color: var(--color-cream);
      background: transparent;
    }
    .hero-actions .cta-btn.outline:hover {
      background: rgba(255,237,229,0.1);
      color: var(--color-cream);
    }

    /* ── PROOF BAR ── */
    .proof-bar {
      background: var(--color-lavender);
      padding: 20px 24px;
      text-align: center;
    }
    .proof-bar p {
      font-size: 0.9rem;
      color: var(--color-green);
      font-weight: 500;
      letter-spacing: 0.03em;
    }
    .proof-bar strong { font-weight: 700; }

    /* ── PROBLEM ── */
    .problem {
      padding: 88px 24px;
      background: var(--color-cream);
    }
    .problem h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      max-width: 700px;
      line-height: 1.15;
      margin-bottom: 28px;
    }
    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      max-width: 780px;
      margin-bottom: 40px;
    }
    @media (max-width: 600px) { .problem-grid { grid-template-columns: 1fr; } }
    .problem-item {
      background: var(--color-lavender);
      border-radius: var(--radius-card);
      padding: 24px;
    }
    .problem-item p {
      font-size: 1rem;
      line-height: 1.55;
      color: var(--color-green);
    }
    .problem-item p::before {
      content: '✗ ';
      color: var(--color-orange);
      font-weight: 700;
    }
    .problem .kicker {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--color-green);
      max-width: 640px;
      line-height: 1.6;
    }

    /* ── TIERS ── */
    .tiers {
      background: var(--color-lavender);
      padding: 88px 24px;
    }
    .section-label {
      text-align: center;
      margin-bottom: 16px;
    }
    .tiers h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      text-align: center;
      margin-bottom: 12px;
      line-height: 1.15;
    }
    .tiers .subhead {
      text-align: center;
      font-size: 1.05rem;
      color: var(--color-green);
      opacity: 0.75;
      max-width: 560px;
      margin: 0 auto 52px;
      line-height: 1.6;
    }
    .tier-cards {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }
    @media (max-width: 768px) { .tier-cards { grid-template-columns: 1fr; } }

    .tier-card {
      background: var(--color-cream);
      border-radius: 20px;
      padding: 32px 28px 36px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .tier-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(33,77,29,0.12);
    }
    .tier-card.featured {
      background: var(--color-green);
      color: var(--color-cream);
      transform: scale(1.03);
    }
    .tier-card.featured:hover {
      transform: scale(1.03) translateY(-4px);
    }
    .tier-icon {
      font-size: 2rem;
      line-height: 1;
    }
    .tier-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      line-height: 1.1;
    }
    .tier-price {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .tier-price span {
      font-size: 0.9rem;
      font-weight: 400;
      opacity: 0.65;
    }
    .tier-desc {
      font-size: 0.95rem;
      line-height: 1.6;
      opacity: 0.85;
      flex-grow: 1;
    }
    .tier-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .tier-features li {
      font-size: 0.9rem;
      line-height: 1.4;
      padding-left: 22px;
      position: relative;
    }
    .tier-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--color-mustard);
      font-weight: 700;
    }
    .tier-card.featured .tier-features li::before { color: var(--color-pink); }
    .tier-cta { margin-top: 8px; text-align: center; }
    .tier-cta a {
      display: inline-block;
      padding: 12px 28px;
      border-radius: var(--radius-badge);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.18s ease;
    }
    .tier-cta a.ghost {
      border: 1.5px solid var(--color-dusty-rose);
      color: var(--color-green);
    }
    .tier-cta a.ghost:hover { background: var(--color-dusty-rose); }
    .tier-cta a.main {
      background: var(--color-pink);
      color: var(--color-green);
    }
    .tier-cta a.main:hover { box-shadow: 0 6px 20px rgba(255,185,226,0.5); }
    .tier-cta a.dark {
      background: var(--color-cream);
      color: var(--color-green);
    }
    .tier-cta a.dark:hover { box-shadow: 0 6px 20px rgba(255,237,229,0.3); }
    .popular-tag {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-orange);
      color: var(--color-cream);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: var(--radius-badge);
      white-space: nowrap;
    }

    /* ── AIHH DEEP DIVE ── */
    .membership {
      padding: 88px 24px;
      background: var(--color-cream);
    }
    .membership-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      max-width: 960px;
      margin: 0 auto;
      align-items: start;
    }
    @media (max-width: 700px) {
      .membership-inner { grid-template-columns: 1fr; gap: 40px; }
    }
    .membership h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .membership h2 em {
      color: var(--color-orange);
      font-style: normal;
    }
    .membership .intro-text {
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 28px;
      opacity: 0.85;
    }
    .membership .price-callout {
      background: var(--color-lavender);
      border-radius: var(--radius-card);
      padding: 24px 28px;
      margin-bottom: 28px;
    }
    .membership .price-callout p {
      font-size: 0.9rem;
      opacity: 0.75;
      margin-bottom: 4px;
    }
    .membership .price-callout .big-price {
      font-family: var(--font-display);
      font-size: 2.8rem;
      color: var(--color-green);
      line-height: 1;
    }
    .membership .price-callout .big-price span {
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 400;
      opacity: 0.65;
    }
    .membership-includes h3 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      margin-bottom: 20px;
    }
    .include-item {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
    }
    .include-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--color-lavender);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .include-text h4 {
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 4px;
    }
    .include-text p {
      font-size: 0.88rem;
      line-height: 1.5;
      opacity: 0.75;
    }

    /* ── FOR WHO ── */
    .for-who {
      background: var(--color-green);
      padding: 80px 24px;
      color: var(--color-cream);
      text-align: center;
    }
    .for-who h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      margin-bottom: 40px;
      color: var(--color-cream);
    }
    .who-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      max-width: 900px;
      margin: 0 auto 48px;
    }
    .who-item {
      background: rgba(255,237,229,0.08);
      border: 1px solid rgba(255,237,229,0.15);
      border-radius: var(--radius-card);
      padding: 22px 20px;
      text-align: left;
    }
    .who-item .who-emoji { font-size: 1.5rem; margin-bottom: 10px; display: block; }
    .who-item p { font-size: 0.9rem; line-height: 1.5; color: var(--color-dusty-rose); }
    .who-item p strong { color: var(--color-cream); display: block; margin-bottom: 4px; }
    .for-who .cta-btn {
      background: var(--color-pink);
      color: var(--color-green);
    }

    /* ── TESTIMONIALS ── */
    .testimonials {
      background: var(--color-lavender);
      padding: 80px 24px;
    }
    .testimonials h2 {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      text-align: center;
      margin-bottom: 40px;
    }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
    }
    .testi-card {
      background: var(--color-cream);
      border-radius: var(--radius-card);
      padding: 28px;
    }
    .testi-card .quote {
      font-size: 0.95rem;
      line-height: 1.65;
      margin-bottom: 16px;
      font-style: italic;
      opacity: 0.85;
    }
    .testi-card .attribution {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--color-orange);
    }
    .placeholder-note {
      font-size: 0.75rem;
      opacity: 0.4;
      font-style: normal;
      display: block;
      margin-top: 2px;
    }

    /* ── FAQ ── */
    .faq {
      padding: 80px 24px;
      background: var(--color-cream);
    }
    .faq h2 {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      margin-bottom: 40px;
      text-align: center;
    }
    .faq-list {
      max-width: 680px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .faq-item {
      border-bottom: 1px solid var(--color-dusty-rose);
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-green);
      padding: 20px 32px 20px 0;
      cursor: pointer;
      position: relative;
      line-height: 1.4;
    }
    .faq-q::after {
      content: '+';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.4rem;
      font-weight: 300;
      transition: transform 0.2s ease;
      color: var(--color-orange);
    }
    .faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
    .faq-a {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--color-green);
      opacity: 0.8;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0;
    }
    .faq-item.open .faq-a {
      max-height: 300px;
      padding-bottom: 20px;
    }

    /* ── FINAL CTA ── */
    .final-cta {
      background: var(--color-orange);
      padding: 80px 24px;
      text-align: center;
    }
    .final-cta h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: var(--color-cream);
      max-width: 700px;
      margin: 0 auto 16px;
      line-height: 1.1;
    }
    .final-cta p {
      font-size: 1.05rem;
      color: var(--color-cream);
      opacity: 0.85;
      max-width: 500px;
      margin: 0 auto 32px;
      line-height: 1.6;
    }
    .final-cta .cta-btn {
      background: var(--color-green);
      color: var(--color-cream);
      font-size: 1.05rem;
      padding: 18px 42px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--color-green);
      padding: 32px 24px;
      text-align: center;
    }
    footer p {
      font-size: 0.85rem;
      color: var(--color-dusty-rose);
      opacity: 0.7;
    }
    footer a { color: var(--color-dusty-rose); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero h1, .hero p, .hero-actions { animation: fadeUp 0.7s ease both; }
    .hero p  { animation-delay: 0.1s; }
    .hero-actions { animation-delay: 0.2s; }
  </style>
</head>
<body>

<!-- NAV -->
<nav>
  <div class="inner">
    <a href="#" class="logo">Systems with Jwo</a>
    <a href="#join" class="cta-btn nav-cta">Join AI Happy Hour</a>
  </div>
</nav>

<!-- HERO -->
<section class="hero">
  <div class="container">
    <span class="badge badge-pink">For SLPs + Allied Health Professionals</span>
    <h1>AI isn't going anywhere.<br>You might as well <em>get good at it.</em></h1>
    <p>Pick your starting point. Learn at your pace. Build tools that actually work for your practice.</p>
    <div class="hero-actions">
      <a href="#join" class="cta-btn">Join AI Happy Hour — $37/mo</a>
      <a href="#tiers" class="cta-btn outline">See All Options</a>
    </div>
  </div>
</section>

<!-- PROOF BAR -->
<div class="proof-bar">
  <p>For <strong>SLPs, OTs, PTs, and allied health professionals</strong> who are done feeling behind on AI ✦ No tech background required</p>
</div>

<!-- PROBLEM -->
<section class="problem">
  <div class="container">
    <span class="badge">Sound familiar?</span>
    <h2>You're not bad at tech.<br>You just haven't had the right on-ramp.</h2>
    <div class="problem-grid">
      <div class="problem-item"><p>You've tried ChatGPT, but it spits out something generic that sounds nothing like your clinical voice</p></div>
      <div class="problem-item"><p>Every time you open a report, you think "there has to be a faster way" — and then just power through anyway</p></div>
      <div class="problem-item"><p>You've watched AI move fast and felt like you're one update behind, permanently</p></div>
      <div class="problem-item"><p>You want to use AI in your practice but you're not sure what's HIPAA-safe and what's a liability</p></div>
    </div>
    <p class="kicker">AI for healthcare doesn't have to be overwhelming. It just needs to be taught in a way that actually makes sense for your work.</p>
  </div>
</section>

<!-- TIERS -->
<section class="tiers" id="tiers">
  <div class="container">
    <div class="section-label"><span class="badge">How It Works</span></div>
    <h2>Three ways to work with me.</h2>
    <p class="subhead">Start free, go deeper when you're ready. No pressure, no fluff — just real AI education built for clinicians.</p>

    <div class="tier-cards">

      <!-- FREE -->
      <div class="tier-card">
        <div class="tier-icon">🎙️</div>
        <span class="badge" style="width:fit-content;">Free</span>
        <h3>Intro to AI for Healthcare</h3>
        <div class="tier-price">$0 <span>/ always</span></div>
        <p class="tier-desc">Your first step into AI — no overwhelm, no jargon. A free entry point to see what's possible before you commit to anything.</p>
        <ul class="tier-features">
          <li>Monthly free AI training session</li>
          <li>Real-world healthcare examples</li>
          <li>Zero fluff. Zero sales pressure.</li>
          <li>Perfect if you're AI-curious</li>
        </ul>
        <div class="tier-cta">
          <a href="https://speechwithjwo.myflodesk.com/aiworkshop" class="ghost">Get Free Access</a>
        </div>
      </div>

      <!-- AIHH — FEATURED -->
      <div class="tier-card featured">
        <div class="popular-tag">⭐ Most Popular</div>
        <div class="tier-icon">🥂</div>
        <span class="badge badge-pink" style="width:fit-content;">Membership</span>
        <h3>AI Happy Hour</h3>
        <div class="tier-price">$37 <span>/ month</span></div>
        <p class="tier-desc" style="color:var(--color-dusty-rose);">Your monthly dose of AI education, updates, and community — built specifically for healthcare clinicians. Cancel anytime.</p>
        <ul class="tier-features">
          <li>Monthly live session with real-time AI updates</li>
          <li>Guest speakers and case studies</li>
          <li>WhatsApp community for daily questions</li>
          <li>Session recordings + resource library</li>
          <li>HIPAA-safe workflow guidance</li>
          <li>Discount on custom bot builds</li>
        </ul>
        <div class="tier-cta">
          <a href="#join" class="main">Join Now — $37/mo</a>
        </div>
      </div>

      <!-- CUSTOM BOTS -->
      <div class="tier-card">
        <div class="tier-icon">🤖</div>
        <span class="badge badge-orange" style="width:fit-content;">Done For You</span>
        <h3>Custom Bot Builds</h3>
        <div class="tier-price">$297 <span>–$1,297</span></div>
        <p class="tier-desc">A fully custom AI tool built for your specific practice. Eval writers, intake bots, documentation tools — built to sound like you.</p>
        <ul class="tier-features">
          <li>Custom-built for your clinical workflow</li>
          <li>Onboarding + implementation support</li>
          <li>HIPAA-conscious architecture</li>
          <li>You own the tool. Forever.</li>
        </ul>
        <div class="tier-cta">
          <a href="https://calendar.app.google/YQmiGLsqsFQUbs5u5" class="ghost">Inquire About a Build</a>
        </div>
      </div>

    </div>
  </div>
</section>

<!-- MEMBERSHIP DEEP DIVE -->
<section class="membership" id="join">
  <div class="container">
    <div class="membership-inner">
      <div class="membership-left">
        <span class="badge" style="margin-bottom:16px; display:inline-block;">AI Happy Hour</span>
        <h2>Stay <em>current.</em><br>Stay sane.<br>Don't do it alone.</h2>
        <p class="intro-text">AI is moving fast. Like, genuinely fast. New models, new tools, new capabilities — every few weeks. AI Happy Hour is the place where you stay in the loop without spending your evenings down a rabbit hole.</p>
        <p class="intro-text">Every month we meet live, cover what's new, dig into what actually matters for healthcare clinicians, and you walk away with something you can use that week. Not someday. That week.</p>
        <div class="price-callout">
          <p>Monthly membership</p>
          <div class="big-price">$37 <span>/ month</span></div>
          <p style="margin-top:8px; font-size:0.85rem; opacity:0.6;">Cancel anytime. No contracts. No nonsense.</p>
        </div>
        <a href="https://systemswithjwo.mvsite.app/" class="cta-btn">Join AI Happy Hour</a>
      </div>
      <div class="membership-includes">
        <h3>What's included</h3>
        <div class="include-item">
          <div class="include-icon">📅</div>
          <div class="include-text">
            <h4>Monthly Live Sessions</h4>
            <p>Real-time AI education tailored to healthcare. What's new, what matters, what to skip.</p>
          </div>
        </div>
        <div class="include-item">
          <div class="include-icon">💬</div>
          <div class="include-text">
            <h4>WhatsApp Community</h4>
            <p>Got a question between sessions? Drop it in the group. Fast answers, from people who get it.</p>
          </div>
        </div>
        <div class="include-item">
          <div class="include-icon">🎥</div>
          <div class="include-text">
            <h4>Session Recordings</h4>
            <p>Can't make it live? Every session is recorded. Watch on your own time — nap schedules and all.</p>
          </div>
        </div>
        <div class="include-item">
          <div class="include-icon">🎤</div>
          <div class="include-text">
            <h4>Guest Speakers</h4>
            <p>Clinicians, compliance experts, and tech people who know healthcare. Not generic AI influencers.</p>
          </div>
        </div>
        <div class="include-item">
          <div class="include-icon">🔒</div>
          <div class="include-text">
            <h4>HIPAA-Safe Guidance</h4>
            <p>You'll always know what's safe to use, what to avoid, and how to protect your clients.</p>
          </div>
        </div>
        <div class="include-item">
          <div class="include-icon">🤖</div>
          <div class="include-text">
            <h4>Member Discount on Bot Builds</h4>
            <p>When you're ready for a custom tool, members get priority and a discount on all builds.</p>
          </div>
        </div>
      </div>
    </div>
  </div>
</section>

<!-- FOR WHO -->
<section class="for-who">
  <div class="container">
    <h2>This is for you if…</h2>
    <div class="who-grid">
      <div class="who-item">
        <span class="who-emoji">🗣️</span>
        <p><strong>You're an SLP in private practice</strong>spending too many evenings on documentation you could automate</p>
      </div>
      <div class="who-item">
        <span class="who-emoji">🏥</span>
        <p><strong>You're an OT, PT, or allied health clinician</strong>who knows AI is relevant but doesn't know where to start</p>
      </div>
      <div class="who-item">
        <span class="who-emoji">🤔</span>
        <p><strong>You've tried ChatGPT</strong>and felt underwhelmed — because you weren't shown how to use it for your actual work</p>
      </div>
      <div class="who-item">
        <span class="who-emoji">⏱️</span>
        <p><strong>You want to work smarter</strong>without spending hours learning a tool that might be obsolete next month</p>
      </div>
    </div>
    <a href="#join" class="cta-btn">Join AI Happy Hour — $37/mo</a>
  </div>
</section>

<!-- TESTIMONIALS -->
<section class="testimonials">
  <div class="container">
    <h2>What members are saying</h2>
    <div class="testi-grid">
      <div class="testi-card">
        <p class="quote">"This is genius!!!"</p>
        <div class="attribution">— Amy Z, SLP</div>
      </div>
      <div class="testi-card">
        <p class="quote">"WAIT I am looking at this code — will this auto generate every day! You are a freaking genius."</p>
        <div class="attribution">— AIHH Member</div>
      </div>
      <div class="testi-card">
        <p class="quote">"I cannot tell you the hours I spent creating a slide deck for 6 hours of content in my mentorship last year. Just created a slide deck for my next presentation with Claude this morning using the skill. Keep it coming — I'm learning so much."</p>
        <div class="attribution">— AIHH Member</div>
      </div>
    </div>
  </div>
</section>

<!-- FAQ -->
<section class="faq">
  <div class="container">
    <h2>Quick answers</h2>
    <div class="faq-list">
      <div class="faq-item">
        <button class="faq-q">Do I need to be tech-savvy to join?</button>
        <p class="faq-a">Nope. Zero tech background required. AI Happy Hour is designed for clinicians — not developers. If you can use Google Docs, you can do this.</p>
      </div>
      <div class="faq-item">
        <button class="faq-q">Is this HIPAA-safe?</button>
        <p class="faq-a">HIPAA compliance is baked into everything we teach. You'll always know which tools are safe to use, which ones aren't, and how to protect your clients' information. We never recommend anything that puts your license or your clients at risk.</p>
      </div>
      <div class="faq-item">
        <button class="faq-q">What if I can't make the live sessions?</button>
        <p class="faq-a">Every session is recorded and sent to members. You'll still get the full value even if you can't show up live — watch it while the kids are napping, during your commute, whenever it works.</p>
      </div>
      <div class="faq-item">
        <button class="faq-q">Can I cancel anytime?</button>
        <p class="faq-a">Yes. No contracts, no commitments, no guilt trips. Cancel anytime directly from your account. That said, most members stick around because the monthly updates alone are worth it.</p>
      </div>
      <div class="faq-item">
        <button class="faq-q">What's the difference between this and a one-time workshop?</button>
        <p class="faq-a">AI changes every few weeks. A one-time workshop teaches you what AI could do in the moment it was recorded. AI Happy Hour keeps you current month after month — so you're never starting from scratch again.</p>
      </div>
      <div class="faq-item">
        <button class="faq-q">What are the custom bot builds?</button>
        <p class="faq-a">Custom bot builds are done-for-you AI tools built specifically for your practice — think eval report writers, intake processors, SOAP note generators, or whatever you need most. Pricing ranges from $297–$1,297 depending on scope. AIHH members get priority access and a discount.</p>
      </div>
    </div>
  </div>
</section>

<!-- FINAL CTA -->
<section class="final-cta">
  <div class="container">
    <h2>Your evenings are worth protecting.</h2>
    <p>Join AI Happy Hour and start working smarter — for $37 a month, less than a single co-pay.</p>
    <a href="https://systemswithjwo.mvsite.app/" class="cta-btn">Join AI Happy Hour</a>
  </div>
</section>

<!-- FOOTER -->
<footer>
  <p>© 2026 Systems with Jwo · <a href="https://www.jocelynmwood.com/privacy">Privacy Policy</a> · <a href="https://docs.google.com/document/d/1ViF_xxjGza--4wb3HfKpZGdGIERLHIfJisRu7AqcUj8/edit">Terms</a></p>
  <p style="margin-top:8px;">Questions? <a href="mailto:jocelyn@everydaylanguageco.com">Email us</a></p>
</footer>

<script>
  // FAQ accordion
  document.querySelectorAll('.faq-q').forEach(btn => {
    btn.addEventListener('click', () => {
      const item = btn.parentElement;
      const isOpen = item.classList.contains('open');
      document.querySelectorAll('.faq-item').forEach(i => i.classList.remove('open'));
      if (!isOpen) item.classList.add('open');
    });
  });
</script>

</body>
</html>