/* COLORS */
$brand-blue: #4262FF;
.faq-card,
.faq-text-question,
.faq-answer-container,
.faq-text-answer,
.faq-icon-container,
.faq-icon-plus,
.faq-icon-minus {
transition: all 150ms ease;
}
.faq-answer-container {
height: 100%;
max-height: 0px;
}
.fw-faq-card-open {
&.faq-card {
border-color: $brand-blue;
}
.faq-text-question {
color: $brand-blue;
}
.faq-answer-container {
max-height: 500px;
}
.faq-icon-container {
transform: rotate(90deg);
}
.faq-icon-plus {
opacity: 0;
}
.faq-icon-minus {
opacity: 1;
}
}/* COLORS */
$brand-blue: #4262FF;
$dark-blue: #4262FF40;
.fw-plan-toggle-container,
.fw plan-toggle,
.fw-plan-toggle-knob {
transition: all 200ms ease;
}
.fw-pricing-card {
&.toggled {
.fw-plan-toggle-container {
background-color: $dark-blue;
}
.fw-plan-toggle {
background-color: $brand-blue;
}
.fw-plan-toggle-knob {
transform: translateX(calc(100% - 2px));
}
}
}
.fw-webinar-detail-rte {
h1,h2 {
font-size: 18px;
font-weight: 500;
margin: 0;
padding: 0;
strong {
font-weight: 500;
}
}
h3,h4,h5,h6 {
font-size: 16px;
font-weight: 500;
margin: 0;
padding: 0;
strong {
font-weight: 500;
}
}
&.blank-strong {
p > strong {
display: none;
}
}
p {
font-size: 16px;
line-height: 160%;
opacity: 0.9;
strong {
/* display: none; */
font-weight: 500 !important;
}
}
p:has(>strong) {
padding-top: 8px;
}
ol, ul {
padding: 0;
padding-top: 12px;
padding-left: 32px;
}
li {
font-size: 16px;
margin: 0;
&:not(first-child) {
margin-top: 12px;
}
strong {
font-weight: 500;
}
}
a {
text-decoration: none;
}
br {
margin: 0;
padding: 0;
line-height: 0;
}
}.subscribe-form-email-input {
&::placeholder {
color: #FFFFFF95;
font-weight: 100;
}
}/* VARIABLES */
$font-size: 16px;
/* PROPS */
.fw-rte {
* {
font-size: $font-size;
}
.w-richtext {
padding-top: 12px;
a, strong {
font-weight: 500;
}
}
}$gr-color-1: #090934;
$gr-color-2: #2E55F8;
$gr-color-3: #FFFFFF;
$gr-color-4: #060608;
$gr-color-5: #838383;
.gradient-text-style-1 {
background: -webkit-linear-gradient(45deg, $gr-color-1, $gr-color-2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-text-style-2 {
background: -webkit-linear-gradient(45deg, $gr-color-3 2%, $gr-color-5 60%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}.text-ellipsis {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
&.line-clamp-2 {
-webkit-line-clamp: 2;
}
}/*
parentcontainer = .register-now-container
toggledheader = .register-now-header-toggled
registerbtn = .register-now-mobile
closebtn = .register-close-btn
ghlform = .ghl-form-mobile
*/
.register-now-container {
.register-now-header-toggled, .ghl-form-mobile {
display: none;
}
.register-close-btn {
cursor: pointer;
}
.register-now-mobile {
background-color: #4362FF !important;
}
&.modal-on {
.register-now-mobile {
display: none;
}
.register-now-header-toggled {
display: flex;
}
.ghl-form-mobile {
display: block;
}
}
}
.caret-down-animation {
animation: caret-down-animation 1s ease-in-out infinite;
@keyframes caret-down-animation {
0% { transform: translateY(0) }
50% { transform: translateY(-16px) }
100% { transform: translateY(0) }
}
}
.vertical-scroll-infinite {
animation: vertical-scroll-infinite 240s linear infinite;
@keyframes vertical-scroll-infinite {
from {
transform: translateY(0);
}
to {
transform: translateY(-100%);
}
}
}
.animate-view {
&-scale-in {
animation: scale-in 1s forwards;
opacity: 0;
@keyframes scale-in {
0% {
opacity: 0;
transform: scale(1.2);
}
100% {
opacity: 1;
transform: scale(1);
}
}
}
&-timeline-view {
position: relative;
opacity: 0;
animation: scroll-to-reveal both;
animation-timeline: view;
@keyframes scroll-to-reveal {
from {
opacity: 0;
transform: translateY(150px) scale(0.4);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}
}
}
/* ENTERPRISE STANDALONE PAGE STYLE */
.enterprise-sp * {
transition: all 150ms ease;
}
.enterprise-sp {
& .enterprise-navbar-link {
&:hover {
color: #42C9FF;
}
}
& .enterprise-navbar-menu-items {
@media only screen and (max-width: 1070px) {
display: none;
}
}
& .enterprise-navbar-cta {
&:hover {
background: #FFFFFF20;
border-color: #FFFFFF30;
}
&:active {
opacity: 0.8;
}
}
& .enterprise-hero-cta {
--border-radius: 12px;
position: relative;
background-size: 200% 200%;
transition: all 400ms ease;
border: solid 1px transparent;
border-radius: var(--border-radius);
&:after {
opacity: 0;
}
&:hover {
background-position-x: -150px;
&:after {
content: '';
position: absolute;
inset: 0;
width: 100%;
height: 100%;
opacity: 1;
background: linear-gradient(25deg, #FFFFFF, #FFFFFF10);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
border-radius: var(--border-radius);
box-sizing: border-box;
padding: 1px; /* border thickness */
}
}
}
& .enterprise-memory-item {
position: relative;
&:before {
position: absolute;
content: '';
inset: 0;
width: 100%;
height: 100%;
opacity: 0;
background: linear-gradient(45deg, #266FB810, #4DCFD100);
}
&:hover {
border-color: #FFFFFF70;
&:before {
opacity: 1;
}
& .enterprise-memory-item-texts {
opacity: 1;
}
}
}
}
.enterprise-hero-title-text {
background: -webkit-linear-gradient(#FFFFFF 54.39%, #4EDAB4 120.11%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.fw-footer[theme="enterprise"] {
background-image: linear-gradient(180deg, #050507, #355193);
border-top: none;
& .fw-footer-p,
.fw-footer-copyrights,
.fw-footer-link-header {
color: #ffffff;
}
& .fw-footer-link {
color: #ffffff80;
transition: all 150ms ease;
&:hover {
color: #ffffff;
}
}
& .fw-footer-social-icons {
color: #42bdff !important;
fill: #42bdff;
transition: all 150ms ease;
&:hover {
opacity: 0.6;
}
}
& .fw-footer-logo {
display: none;
}
& .fw-footer-logo.white {
display: inline-block;
}
}
/* NAVBAR */
.enterprise-navbar {
backdrop-filter: blur(15px);
background: linear-gradient(-45deg, #42C9FF40, #4262FF20, #0AA3A430);
animation: gradient-pulse 7s ease infinite;
background-size: 400% 400%;
position: relative;
border-style: none !important;
&:before {
content: '';
position: absolute;
inset: 0;
pointer-events: none;
width: 100%;
height: 100%;
background: linear-gradient(25deg, #42C9FF50, #FFFFFF40, #FFFFFF10);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
border-radius: 16px;
box-sizing: border-box;
padding: 1px; /* border thickness */
}
}
/* CTA CUSTOM BUILD */
.cta-custom-build {
background: linear-gradient(-45deg, #DADAEE, #8BD6FF, #DADAEE);
background-size: 400% 200%;
animation: gradient-pulse 7s ease infinite;
}
/* ANIMATIONS */
@keyframes gradient-pulse {
0%{
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100%{
background-position: 0% 50%;
}
}
.radial-gradient-1 {
border-radius: 8px;
border: 1px solid rgba(0, 0, 0, 0.10);
background: radial-gradient(73.37% 70.11% at 82.7% 12.24%, #393939 0%, #141414 100%);
}.text-arrow-btn {
transition: all 200ms ease;
& svg {
transition: all 150ms ease;
}
&:hover {
opacity: 0.7;
& svg {
margin-left: 8px;
}
}
}
Turn Your GHL Subaccounts Into AI Toolkits
Build once. Drop into every sub-account. Add an “AI Tools” tab your clients actually use.
Create your first tool

Stop repeating the same answers

Stop rebuilding the same thing in every account
Every GHLÂ agency knows the loop:
"Can you write our follow-up scripts?"
"Do you have a content template for this niche?"
"Can you help us with offers and funnels?"
You solve it with the same frameworks, the same copy angles, the same SOPs, just rebuilt for each client over and over.
What if every sub-account had its own AIÂ toolkit tab, filled with done-for-you tools powered by your expertise?
How FormWise Helps
FormWise lets you package your best frameworks as embeddable AI Toolsets that live inside each GHL sub-account as a branded “AI Toolkit” — no code, no custom dev.

SmartForms
Turn your audits, offer builders, script generators, and calculators into fill-in-the-blank tools that output ready-to-use copy and assets for your clients.

CoPilots
Launch chat-style AI assistants that behave like niche specialists (MedSpa AI, Roofing AI, Realtor AI) your clients can talk to directly from their toolkit.

Login Mode
Bundle SmartForms and CoPilots into a white-label AI Toolset, lock it behind Login Mode, and embed it as a custom menu item in each GHL subaccount.
Real-world tools
Here are some examples of what agencies are turning into AI Toolkits:
Local Lead Follow-Up Toolkit
A subaccount tab with tools for SMS/email follow-up scripts, voicemail drops, and objection-handling responses tailored to each client’s niche.

Niche Funnel &Â Offer Builder
An embedded toolkit that generates offers, VSL outlines, funnel copy, and ad angles so clients can launch campaigns without touching your agency’s internal docs.

Content &Â Review Response Hub
A set of tools that write social posts, emails, and on-brand review replies — all inside the same AI Toolkit tab your clients can access anytime.

Embedding and Customization
Drop a full AI Toolkit into every client account — branded as your own.
Embed your FormWise Toolset as a custom menu item in GHL so it feels like a native feature. Customize logos, colors, and tone, upload your frameworks and PDFs, and manage access with plans, credits, and paywalls without touching your GHL automations.
Create your first tool

Frequently asked questions
Have other questions?
Contact us, we're happy to help.
What support options do you offer?
We’re committed to helping you succeed with FormWise:
- Email Support: Contact us at support@formwise.ai. We aim to respond within 24 hours.
- One-on-One Support Calls: Schedule personalized sessions for tailored guidance.
- Weekly Live Training: Attend sessions covering tips, best practices, and new features.‍
- Facebook Community: Join our user group for additional networking and support.
We have email support, 1 on 1 support calls, weekly live training, and an awesome Facebook group.
Can I customize my prompts and workflows?
Yes, FormWise offers robust customization options:
- Prompt Injection: Personalize prompts for specific tasks and audiences.
- Prompt Chaining: Link prompts to create advanced workflows and automate processes.‍
- Custom Workflows: Build unique, multi-step AI-driven solutions with ease.
Yes, you can embed your tool and toolsets anywhere... like a YouTube video!
How many tools can I create with FormWise?
FormWise allows unlimited tool creation. Use over 100+ templates to quickly create SmartForms, AI tools, and CoPilots. Additionally, organize your tools into toolsets—portfolio-like pages for seamless sharing and monetization.
Can I use FormWise for my GoHighLevel (GHL) white-label solution?
Absolutely! FormWise integrates seamlessly with GHL to enhance your white-label offerings. Use our tools to:
- Automate client onboarding and follow-ups.
- Create personalized pipelines and workflows.
- Embed SmartForms directly into GHL funnels and campaigns.
‍
How does the free GHL sub-account work?
Pro and Agency subscribers receive a free GoHighLevel sub-account that includes:
- CRM for contact and lead management.
- Email/SMS campaigns to engage leads.
- Funnel and landing page builders.
- Membership and course hosting with embedded AI tools.Activate your sub-account by visiting GHL Sub-Account Activation with your FormWise billing email.
How secure is my data with FormWise and HighLevel?
We prioritize your data security:
- FormWise does not use your data for training AI models or resale purposes.
- HighLevel’s robust privacy and security policies apply to your GHL sub-account.
You can create unlimited AI tools with FormWise. Depending on your plan, you can also build multiple toolsets (portfolio-like pages for your tools) as well. You have 100+ templates to get started with too!
Can I embed tools anywhere?
Yes, you can embed FormWise tools on:
- Websites and Blogs: Use the embed code for seamless integration.
- Course Platforms: Enhance platforms like Teachable, Thinkific, and GHL Memberships.‍
- Landing Pages and Funnels: Include tools directly in GHL funnels for lead generation.
How do I monetize my tools?
Monetizing tools is easy with FormWise:
- Login Mode: Charge for access using Stripe integration.
- Embedded in Funnels: Upsell tools as part of GHL campaigns.‍
- Membership Add-ons: Offer tools as part of paid membership tiers.
What industries can use FormWise AI tools?
FormWise is versatile and supports businesses across industries like:
- SaaS and Agencies (GoHighLevel users).
- Real Estate, Fitness, E-commerce, Healthcare, and more.Tailor tools for lead generation, client retention, and operational efficiency.
Do I need technical skills to use FormWise?
No! FormWise is a no-code platform. Whether you’re an AI novice or a pro, our intuitive interface makes it easy to build and customize tools without coding.
What integrations does FormWise support?
FormWise integrates with:
- CRMs: GoHighLevel, Salesforce, HubSpot.
- Email Marketing Tools: Mailchimp, SendGrid, and others via Webhooks.‍
- Payment Gateways: Stripe for tool monetization.
What are SmartForms in FormWise?
SmartForms are dynamic, AI-powered forms that collect user inputs and generate highly personalized outputs based on customizable prompt logic. They allow businesses to:
- Automate data collection and response generation.
- Personalize recommendations and strategies for their clients.
- Streamline complex processes by linking multiple prompts into actionable workflows.
How do SmartForms process user inputs?
SmartForms use advanced prompt mapping, where each form field is linked to a specific placeholder (e.g., @q1_answer). When a user submits their responses, FormWise dynamically integrates them into a predefined prompt structure to generate meaningful, AI-driven results.
What are some common use cases for SmartForms?
SmartForms can be used across various industries to streamline processes, enhance customer engagement, and create niche-specific AI tools. Common use cases include:
- Building AI Tools for Your Niche: Leverage your expertise to create AI-powered tools tailored to your industry, such as:
- Real estate valuation tools.
- Marketing strategy generators for agencies.
- Health and fitness assessment forms.
- Financial planning calculators.
- Lead Generation & Qualification: Capture leads and assess their readiness to buy using automated questionnaires.
- Client Onboarding: Simplify the onboarding process by collecting critical client data and preferences upfront.
- Automated Assessments & Reports: Provide instant audits and feedback based on user responses, such as SEO audits, business evaluations, or personalized coaching plans.
- Sales Funnel Optimization: Guide prospects through tailored questions and direct them to the right services based on their needs.‍
- Appointment Scheduling: Qualify and book leads directly into calendars with automated follow-ups and reminders.
Do I need prompts written already?
No, we provide templates, or you can use your own voice notes, SOPs, or PDFs.
Will my clients need tech skills?
Not at all. It feels like filling out a form or having a conversation.
Can I update the tools later?
Yes, you can edit, duplicate, or swap content anytime without starting from scratch.
Do I need a perfect prompt to start?
Nope, you can start with a Google Doc, voice note, or worksheet. We help you turn it into a structured tool.
Will clients know it's AI?
Only if you want them to. Most tools feel like structured apps or interactive forms.
Can I charge for these tools?
Yes, add Stripe with Login Mode and sell access like a course or coaching product.
Do my clients access the AI Toolkit inside their GHL subaccount?
Yes, add Stripe with Login Mode and sell access like a course or coaching product.
‍
Can I use one Toolset across multiple subaccounts?
Yes, add Stripe with Login Mode and sell access like a course or coaching product.
Can I charge extra for access to the AI Toolkit?
Yes, add Stripe with Login Mode and sell access like a course or coaching product.