
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

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.
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
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.
What our clients are saying
Find the right treatment
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
What types of programs are offered?
We provide specialized outpatient programs for adults through our Intensive Outpatient Programs (IOP). These programs are designed to address the unique mental health needs of each client, offering flexible treatment options that fit into your daily lives.
We also offer substance abuse treatment, mental health treatment for teens, talk therapy, TMS therapy, long-term sober living, and more through our Your Behavioral Health family of brands.
How much does treatment cost?
Your financial situation should never stand in the way of getting help. At Clear Behavioral Health, we’re committed to making treatment accessible.
During the insurance verification and financing process, we’ll work with your provider to confirm coverage. If you don’t have insurance—or if your plan isn’t accepted—we’ll help you explore alternative options, including referrals to in-network programs or other affordable solutions.
Does Clear Behavioral Health offer aftercare services?
Yes, we provide comprehensive aftercare services to ensure ongoing support once the formal treatment program is completed. Our alumni program consists of individuals who have completed treatment and work together to keep each other accountable.
How do I start the admission process?
Starting the admission process is simple. Simply call us or submit your information on our website form, and one of our team members will get back to you promptly.
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);
}
}
});
});


















