Thrive as Your True Self with Accessible & Affirming Mental Health Treatment in California

A compassionate and inclusive Virtual IOP from licensed experts, available online and on your schedule

"I attended Clear's IOP, and it was truly life-changing. The team made me feel seen, heard, and supported every step of the way. Their compassion and professionalism helped me heal, grow, and gain the tools I needed to better understand myself.

I’m so grateful and would highly recommend Clear to anyone ready to take the next step in their mental health journey."

Jessica S.

We are in-network

We accept most private insurance and work with you to ensure payment never stands in the way of treatment.

We are in-network

We accept most private insurance and work with you to ensure payment never stands in the way of treatment.

magellan-insurance
anthem-insurance

What 

Experiencing any of these symptoms? You're not alone, and help is available.

Persistent mood changes or irritability

Loss of motivation or interest

Trouble concentrating or focusing

Overwhelming fatigue or low energy

Physical symptoms of stress

Issues with sleep patterns or insomnia

Top-rated Virtual Intensive Outpatient Program (IOP)

Our Virtual IOP is an elevated level of mental health treatment for when weekly therapy isn't enough.

Individual & Group Therapy

Get LGBTQIA+ affirming therapy with one-on-one and group support.

Life Counseling

Work to develop coping skills, improve relationships, and create balance.

Experiential Therapy

Explore emotions and heal through art, music, and yoga in a safe, affirming space.

Alumni Groups

Build community and ongoing support through our inclusive alumni groups.

Why we're the top choice for elevated care

Get in touch

What to expect 

Your IOP is designed around your life. Your care adapts to you with day and evening plans available.
Weekly one-on-one therapy sessions
Daily affirming group therapy sessions
Yoga, meditation, soundbaths & more
Life and coping skills sessions weekly
Medication support, when needed
Stress burnout & work leave assistance

Specializing in LGBTQIA+ specific
mental health challenges

Depression & Anxiety

Thoughtful depression and anxiety treatment to help you navigate life, feel confident and happy, & build resilience.

Minority & Intersectional Stress

Therapy in a safe space to manage identity-based stress and build lasting emotional strength.

Family Rejection & Isolation

Caring support to navigate family estrangement and build connection.

Internalized Phobias & Gender-Related Stress

Compassionate treatment to process internalized bias and strengthen gender & sexual identity.

Bullying, Harassment & Discrimination

Empowering care for the emotional impact of bullying, harassment, or discrimination.

Risk of Self Harm or Suicide

Guided therapy to cope with self-harm thoughts and develop healthy coping strategies.

Featured on

California's leading mental health program for the queer community

What 

Experiencing any of these symptoms? You're not alone, and help is available.

Persistent mood changes or irritability

Loss of motivation or interest

Trouble concentrating or focusing

Overwhelming fatigue or low energy

Physical symptoms of stress

Issues with sleep patterns or insomnia

Care that advocates for you

From gender-affirming letters to work and stress leave assistance, our team helps you access the care and support you need, professionally and personally.

Gender-Affirming Letters

Access gender-affirming care with a clinical letter reflecting its importance for your mental health.

Work & Stress Leave Assistance

Take the time you need to heal with support and guidance for work-related stress leave.

  • 0+

    Success stories

  • 0%

    Seen same day

  • 0+

    years serving California

  • Our programs →

  • What our clients are saying

    Clear helped me through my darkest time. I went from barely functioning to truly thriving, finally able to enjoy life. Thank you.
    I’m so glad I chose Clear, the team truly made me feel cared for from the start. They created a safe, supportive space where I could be myself.
    The team was there to help out and made a difficult situation an easy-going environment. Very happy with our experience and would recommend.
    Just finished my therapy at Clear, and I had a very positive and productive time, and I can not say enough great things about the staff. They helped me and did their best to assist me with my needs. Thank you all.
    Clear Behavioral Health gave me the tools and support I needed to heal. I found group therapy especially helpful, and the staff was kind and knowledgeable. I’d recommend their IOP to anyone.
    The staff here are very welcoming and I felt supported by them. I felt that they truly cared about helping me through a tough time. I appreciate this company and the staff and would definitely recommend to others.

    Find the right treatment

    Starting treatment can feel overwhelming, but asking your therapist the right questions makes a difference. In our LGBTQIA+ Virtual Intensive Outpatient Program, we connect you with a therapist whose style and focus match your needs.

    We’re transparent about payment and insurance, and we know the client–therapist relationship is the foundation of growth. When you feel safe and supported, real healing can begin.

    Connect with affirming, compassionate mental health support today

    For the community, from the community

    Our team of psychiatrists, therapists, and mental health specialists, many with lived experience, is dedicated to helping you and your loved ones achieve lasting wellbeing.

    Dr. Martha Koo, M.D.

    She/Her

    Chief Medical Officer

    Lindsey Rae Ackerman, LMFT

    She/Her

    VP of Clinical Services

    Alexa Trogman, SUDRC

    She/Her

    Program Director

    Logan Vournas, ACSW

    They/Them

    Therapist

    Jazz Joffe, SUDRC

    They/Them

    Counselor

    Quin'c'allen Jones, ACSW

    He/Him

    Group Facilitator

    For the community, from the community

    Our team of psychiatrists, therapists, and mental health specialists, many with lived experience, is dedicated to helping you and your loved ones achieve lasting wellbeing.

    Dr. Martha Koo, M.D.

    She/Her

    Chief Medical Officer

    Lindsey Rae Ackerman, LMFT

    She/Her

    VP of Clinical Services

    Alexa Trogman, SUDRC

    She/Her

    Program Director

    Logan Vournas, ACSW

    They/Them

    Therapist

    Jazz Joffe, SUDRC

    They/Them

    Counselor

    Everyone Belongs Here

    Your Story Matters

    We welcome and support all individuals, embracing diversity in every form. Our commitment to inclusivity ensures that everyone, regardless of their orientation or identity, feels safe and respected as they journey towards better mental health.

    Licensed & Accredited

    Frequently asked questions

    Mental Health Treatment in California

    Inclusive Support Starts Here

    Don't wait for help. Reach out now and set up an appointment today.

    document.addEventListener('DOMContentLoaded', function() {
      // Function to get UTM parameters from current URL
      function getUTMParamsFromURL() {
        const urlParams = new URLSearchParams(window.location.search);
        const utmParams = {};
        
        // List of UTM parameters to track
        const utmTags = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content','gclid'];
        
        utmTags.forEach(param => {
          if (urlParams.has(param)) {
            utmParams[param] = urlParams.get(param);
            
            // Store in cookie for later use
            setCookie(param, urlParams.get(param), 30); // Store for 30 days
          }
        });
        
        return utmParams;
      }
      
      // Function to get UTM parameters from cookies
      function getUTMParamsFromCookies() {
        const utmParams = {};
        const utmTags = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content','gclid'];
        
        utmTags.forEach(param => {
          const value = getCookie(param);
          if (value) {
            utmParams[param] = value;
          }
        });
        
        return utmParams;
      }
      
      // Function to set cookie
      function setCookie(name, value, days) {
        const date = new Date();
        date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
        const expires = "expires=" + date.toUTCString();
        document.cookie = name + "=" + value + ";" + expires + ";path=/";
      }
      
      // Function to get cookie value
      function getCookie(name) {
        const nameEQ = name + "=";
        const cookies = document.cookie.split(';');
        for(let i = 0; i < cookies.length; i++) {
          let cookie = cookies[i];
          while (cookie.charAt(0) === ' ') {
            cookie = cookie.substring(1);
          }
          if (cookie.indexOf(nameEQ) === 0) {
            return cookie.substring(nameEQ.length, cookie.length);
          }
        }
        return null;
      }
      
      // Get UTM parameters (first from URL, then from cookies if not in URL)
      let utmParams = getUTMParamsFromURL();
      
      // If no UTM params in URL, try cookies
      if (Object.keys(utmParams).length === 0) {
        utmParams = getUTMParamsFromCookies();
      }
      
      // Add UTM parameters to all links with the class "track-utm"
      const links = document.querySelectorAll('a.track-utm');
      
      links.forEach(link => {
        // Get the href attribute
        let href = link.getAttribute('href');
        
        // Skip if no href
        if (!href) return;
        
        // Check if the link contains clearbehavioralhealth.com
        if (href.includes('clearbehavioralhealth.com')) {
          try {
            // Create URL object to handle parameters properly
            const url = new URL(href);
            
            // Add UTM params to the link if we have any
            if (Object.keys(utmParams).length > 0) {
              Object.keys(utmParams).forEach(key => {
                url.searchParams.set(key, utmParams[key]);
              });
            }
            
            // Update the link's href with our new URL
            link.href = url.toString();
          } catch (e) {
            console.error("Error processing URL:", e);
          }
        }
      });
    });

    Get started today