@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');
.cfk-page {
--navy-950: #070a14;
--navy-900: #0b0f1e;
--navy-800: #121a30;
--navy-700: #1a2340;
--violet-600: #6d28d9;
--violet-500: #7c3aed;
--violet-400: #9d5cff;
--violet-glow: #b98bff;
--gold-400: #f2c14e;
--gold-300: #f6d788;
--white: #f6f6fb;
--ink-300: #b7bdd6;
--ink-400: #8891b5;
--line: rgba(246,246,251,0.10);
--font-head: 'Space Grotesk', 'Inter', sans-serif;
--font-body: 'Inter', sans-serif;
background: var(--navy-950);
color: var(--white);
font-family: var(--font-body);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
.cfk-page * { box-sizing: border-box; }
.cfk-page img { max-width: 100%; display: block; }
.cfk-page a { text-decoration: none; color: inherit; }
.cfk-page ul { list-style: none; margin: 0; padding: 0; }
.cfk-page button { font-family: inherit; cursor: pointer; }
.cfk-page h1, .cfk-page h2, .cfk-page h3, .cfk-page h4 {
font-family: var(--font-head);
font-weight: 600;
line-height: 1.12;
margin: 0;
letter-spacing: -0.01em;
}
.cfk-shell {
max-width: 1140px;
margin: 0 auto;
padding: 0 24px;
}
.cfk-section { position: relative; padding: 96px 0; }
@media (max-width: 768px) { .cfk-section { padding: 64px 0; } }
.cfk-eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: var(--font-head);
font-size: 13px;
font-weight: 600;
color: var(--violet-glow);
background: rgba(124,58,237,0.12);
border: 1px solid rgba(124,58,237,0.35);
padding: 7px 14px 7px 12px;
border-radius: 100px;
margin-bottom: 22px;
}
.cfk-eyebrow::before {
content: '';
width: 6px; height: 6px;
border-radius: 50%;
background: var(--gold-400);
flex: none;
}
.cfk-h1 { font-size: clamp(40px, 6.4vw, 76px); }
.cfk-h2 { font-size: clamp(30px, 4.2vw, 46px); }
.cfk-lede { font-size: clamp(17px, 2vw, 20px); color: var(--ink-300); font-weight: 400; }
.cfk-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
font-family: var(--font-head);
font-weight: 600;
font-size: 17px;
padding: 18px 34px;
border-radius: 12px;
border: none;
transition: transform .18s ease, box-shadow .18s ease;
}
.cfk-btn-primary {
background: linear-gradient(135deg, var(--gold-300), var(--gold-400) 60%, #e2a52c);
color: #241804;
box-shadow: 0 10px 30px -8px rgba(242,193,78,0.55);
}
.cfk-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -8px rgba(242,193,78,0.7); }
.cfk-btn-ghost {
background: rgba(255,255,255,0.04);
border: 1px solid var(--line);
color: var(--white);
}
.cfk-btn-ghost:hover { background: rgba(255,255,255,0.08); }
.cfk-microcopy { font-size: 13.5px; color: var(--ink-400); margin-top: 14px; }
/* ---------- HERO ---------- */
.cfk-hero {
padding: 108px 0 90px;
background:
radial-gradient(60% 55% at 78% 8%, rgba(124,58,237,0.35), transparent 60%),
radial-gradient(45% 40% at 8% 92%, rgba(109,40,217,0.25), transparent 60%),
var(--navy-950);
position: relative;
border-bottom: 1px solid var(--line);
}
.cfk-hero-grid {
display: grid;
grid-template-columns: 1.05fr 0.95fr;
gap: 64px;
align-items: center;
}
@media (max-width: 900px) { .cfk-hero-grid { grid-template-columns: 1fr; gap: 44px; } }
.cfk-hero h1 { margin-bottom: 20px; }
.cfk-hero h1 span { color: var(--violet-glow); }
.cfk-hero-sub { max-width: 480px; margin-bottom: 14px; }
.cfk-hero-sub2 { max-width: 480px; color: var(--ink-300); font-size: 15.5px; margin-bottom: 30px; }
.cfk-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.cfk-tag {
font-size: 13px; font-weight: 500; color: var(--ink-300);
border: 1px solid var(--line); padding: 6px 12px; border-radius: 8px;
background: rgba(255,255,255,0.03);
}
.cfk-hero-visual {
position: relative;
border-radius: 24px;
padding: 3px;
background: linear-gradient(160deg, rgba(157,92,255,0.55), rgba(255,255,255,0.06) 40%, rgba(242,193,78,0.35));
}
.cfk-hero-visual-inner {
border-radius: 22px;
background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
overflow: hidden;
min-height: 420px;
}
.cfk-hero-visual::after {
content: '';
position: absolute; inset: -40px;
background: radial-gradient(circle, rgba(157,92,255,0.28), transparent 65%);
filter: blur(10px);
z-index: -1;
}
/* ---------- PLACEHOLDER BLOCKS ---------- */
.cfk-placeholder {
position: relative;
width: 100%;
min-height: 260px;
display: flex; align-items: center; justify-content: center;
background:
repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 10px, transparent 10px 20px),
linear-gradient(160deg, var(--navy-800), var(--navy-700));
border: 1.5px dashed rgba(246,246,251,0.22);
border-radius: 16px;
color: var(--ink-400);
text-align: center;
overflow: hidden;
}
.cfk-placeholder-label {
font-family: var(--font-head);
font-size: 12.5px;
font-weight: 600;
letter-spacing: 0.02em;
color: var(--violet-glow);
background: rgba(124,58,237,0.14);
border: 1px solid rgba(124,58,237,0.3);
padding: 7px 12px;
border-radius: 8px;
}
.cfk-placeholder-sub { font-size: 12px; margin-top: 8px; color: var(--ink-400); }
.cfk-placeholder-icon { font-size: 26px; margin-bottom: 10px; opacity: .7; }
/* ---------- PROBLEM ---------- */
.cfk-problem { background: var(--navy-900); border-bottom: 1px solid var(--line); }
.cfk-problem-head { max-width: 640px; margin-bottom: 52px; }
.cfk-compare {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 22px;
}
@media (max-width: 760px) { .cfk-compare { grid-template-columns: 1fr; } }
.cfk-compare-card {
border-radius: 18px;
padding: 32px 30px;
border: 1px solid var(--line);
}
.cfk-compare-card.is-have {
background: linear-gradient(160deg, rgba(124,58,237,0.10), rgba(255,255,255,0.02));
}
.cfk-compare-card.is-missing {
background: rgba(255,255,255,0.015);
}
.cfk-compare-title {
font-family: var(--font-head);
font-size: 15px;
font-weight: 600;
margin-bottom: 20px;
color: var(--ink-300);
}
.cfk-compare-card.is-have .cfk-compare-title { color: var(--violet-glow); }
.cfk-compare li {
display: flex; gap: 12px; align-items: flex-start;
padding: 10px 0;
font-size: 15.5px;
border-top: 1px solid var(--line);
}
.cfk-compare li:first-child { border-top: none; }
.cfk-mark { flex: none; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; margin-top: 1px; }
.cfk-mark.yes { background: rgba(157,92,255,0.2); color: var(--violet-glow); }
.cfk-mark.no { background: rgba(255,255,255,0.06); color: var(--ink-400); }
.cfk-compare li.no-line span:last-child { color: var(--ink-300); }
.cfk-problem-close {
margin-top: 40px;
font-size: 17px;
color: var(--white);
border-left: 3px solid var(--gold-400);
padding-left: 18px;
max-width: 620px;
}
/* ---------- SOLUTION ---------- */
.cfk-solution { background: var(--navy-950); }
.cfk-solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .cfk-solution-grid { grid-template-columns: 1fr; gap: 40px; } }
.cfk-path { display: flex; flex-wrap: wrap; gap: 0; margin-top: 32px; }
.cfk-path-step {
display: flex; align-items: center; gap: 10px;
font-family: var(--font-head);
font-size: 15px; font-weight: 600;
padding: 10px 16px;
background: rgba(255,255,255,0.04);
border: 1px solid var(--line);
border-radius: 10px;
margin: 0 8px 8px 0;
}
.cfk-path-arrow { color: var(--violet-glow); font-size: 15px; margin: 0 2px; }
/* ---------- WHAT'S INSIDE ---------- */
.cfk-inside { background: var(--navy-900); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cfk-inside-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 18px;
margin-top: 48px;
}
@media (max-width: 900px) { .cfk-inside-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cfk-inside-grid { grid-template-columns: 1fr; } }
.cfk-module-card {
border-radius: 16px;
padding: 26px 22px;
border: 1px solid var(--line);
background: rgba(255,255,255,0.02);
transition: border-color .18s ease, background .18s ease;
}
.cfk-module-card:hover { border-color: rgba(157,92,255,0.4); background: rgba(124,58,237,0.06); }
.cfk-module-num { font-family: var(--font-head); font-size: 13px; color: var(--violet-glow); font-weight: 600; margin-bottom: 14px; }
.cfk-module-title { font-family: var(--font-head); font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.cfk-module-count { font-size: 13.5px; color: var(--ink-400); }
.cfk-module-card.is-wide { grid-column: span 2; }
@media (max-width: 900px) { .cfk-module-card.is-wide { grid-column: span 2; } }
@media (max-width: 560px) { .cfk-module-card.is-wide { grid-column: span 1; } }
/* ---------- PRODUCT PREVIEW ---------- */
.cfk-preview { background: var(--navy-950); }
.cfk-preview-grid {
display: grid;
grid-template-columns: 1.3fr 1fr 1fr;
gap: 20px;
margin-top: 48px;
}
@media (max-width: 900px) { .cfk-preview-grid { grid-template-columns: 1fr; } }
.cfk-preview-item { display: flex; flex-direction: column; gap: 14px; }
.cfk-preview-item .cfk-placeholder { min-height: 300px; }
.cfk-preview-item.is-tall .cfk-placeholder { min-height: 460px; }
@media (max-width: 900px) { .cfk-preview-item.is-tall .cfk-placeholder { min-height: 300px; } }
.cfk-preview-caption { font-size: 14.5px; color: var(--ink-300); padding: 0 4px; }
.cfk-preview-caption strong { color: var(--white); font-weight: 600; }
/* ---------- HOW IT WORKS ---------- */
.cfk-how { background: var(--navy-900); border-top: 1px solid var(--line); }
.cfk-steps {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
margin-top: 52px;
position: relative;
}
@media (max-width: 900px) { .cfk-steps { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 560px) { .cfk-steps { grid-template-columns: 1fr; } }
.cfk-step { padding: 0 22px 0 0; position: relative; }
.cfk-step:not(:last-child)::after {
content: '';
position: absolute; top: 22px; right: -1px; width: 1px; height: 60px;
background: var(--line);
}
@media (max-width: 900px) { .cfk-step:not(:last-child)::after { display: none; } }
.cfk-step-num {
font-family: var(--font-head);
font-size: 34px; font-weight: 700;
color: transparent;
-webkit-text-stroke: 1.4px rgba(157,92,255,0.55);
margin-bottom: 16px;
}
.cfk-step-title { font-family: var(--font-head); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.cfk-step-desc { font-size: 14.5px; color: var(--ink-300); }
/* ---------- TRANSFORMATION ---------- */
.cfk-transform { background: var(--navy-950); position: relative; overflow: hidden; }
.cfk-transform::before {
content: '';
position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
width: 900px; height: 500px;
background: radial-gradient(ellipse, rgba(124,58,237,0.22), transparent 65%);
pointer-events: none;
}
.cfk-transform-head { text-align: center; max-width: 680px; margin: 0 auto 56px; position: relative; }
.cfk-transform-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 26px; align-items: stretch; position: relative; }
@media (max-width: 800px) { .cfk-transform-grid { grid-template-columns: 1fr; } }
.cfk-transform-arrow { display: flex; align-items: center; justify-content: center; color: var(--violet-glow); font-size: 22px; }
@media (max-width: 800px) { .cfk-transform-arrow { transform: rotate(90deg); margin: 4px 0; } }
.cfk-transform-col { border-radius: 18px; padding: 30px; border: 1px solid var(--line); }
.cfk-transform-col.is-before { background: rgba(255,255,255,0.015); }
.cfk-transform-col.is-after { background: linear-gradient(160deg, rgba(124,58,237,0.14), rgba(255,255,255,0.02)); border-color: rgba(157,92,255,0.35); }
.cfk-transform-label { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--ink-400); margin-bottom: 18px; }
.cfk-transform-col.is-after .cfk-transform-label { color: var(--violet-glow); }
.cfk-transform-col li { padding: 11px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink-300); font-style: italic; }
.cfk-transform-col li:first-child { border-top: none; }
.cfk-transform-col.is-after li { color: var(--white); }
/* ---------- WHO IS IT FOR ---------- */
.cfk-fit { background: var(--navy-900); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cfk-fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
@media (max-width: 760px) { .cfk-fit-grid { grid-template-columns: 1fr; } }
.cfk-fit-card { border-radius: 18px; padding: 30px; border: 1px solid var(--line); }
.cfk-fit-card.is-yes { background: rgba(124,58,237,0.07); border-color: rgba(157,92,255,0.3); }
.cfk-fit-card.is-no { background: rgba(255,255,255,0.015); }
.cfk-fit-title { font-family: var(--font-head); font-weight: 600; font-size: 15px; margin-bottom: 18px; }
.cfk-fit-card.is-yes .cfk-fit-title { color: var(--violet-glow); }
.cfk-fit-card.is-no .cfk-fit-title { color: var(--ink-400); }
.cfk-fit-card li { display: flex; gap: 12px; padding: 9px 0; font-size: 15px; }
/* ---------- TESTIMONIALS ---------- */
.cfk-proof { background: var(--navy-950); }
.cfk-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 900px) { .cfk-proof-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }
.cfk-proof-card { border-radius: 18px; border: 1px solid var(--line); overflow: hidden; background: rgba(255,255,255,0.02); }
.cfk-proof-card .cfk-placeholder { min-height: 340px; border-radius: 0; border: none; border-bottom: 1px solid var(--line); }
.cfk-proof-meta { padding: 16px 18px; font-size: 13.5px; color: var(--ink-400); }
/* ---------- VALUE / PRICE ---------- */
.cfk-offer {
background:
radial-gradient(55% 60% at 50% 0%, rgba(124,58,237,0.28), transparent 65%),
var(--navy-900);
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
}
.cfk-offer-card {
max-width: 720px; margin: 48px auto 0;
border-radius: 22px;
padding: 3px;
background: linear-gradient(160deg, rgba(157,92,255,0.5), rgba(255,255,255,0.05) 45%, rgba(242,193,78,0.4));
}
.cfk-offer-inner {
border-radius: 20px;
background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
padding: 44px 40px;
}
@media (max-width: 560px) { .cfk-offer-inner { padding: 32px 24px; } }
.cfk-offer-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 32px; }
@media (max-width: 560px) { .cfk-offer-list { grid-template-columns: 1fr; } }
.cfk-offer-list li { display: flex; gap: 10px; align-items: center; font-size: 15px; color: var(--ink-300); }
.cfk-offer-price-row {
display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap;
padding-top: 28px; border-top: 1px solid var(--line); margin-bottom: 28px;
}
.cfk-price-old { font-size: 20px; color: var(--ink-400); text-decoration: line-through; }
.cfk-price-new { font-family: var(--font-head); font-size: 48px; font-weight: 700; color: var(--gold-300); line-height: 1; }
.cfk-price-save {
font-size: 13px; font-weight: 600; color: var(--violet-glow);
background: rgba(124,58,237,0.16); border: 1px solid rgba(157,92,255,0.35);
padding: 6px 12px; border-radius: 100px; margin-left: auto;
}
.cfk-offer-cta { width: 100%; }
/* ---------- TRUST ---------- */
.cfk-trust { background: var(--navy-950); }
.cfk-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 44px; }
@media (max-width: 900px) { .cfk-trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cfk-trust-grid { grid-template-columns: 1fr; } }
.cfk-trust-item { padding: 22px 4px; border-top: 1px solid var(--line); }
.cfk-trust-item-title { font-family: var(--font-head); font-weight: 600; font-size: 15px; margin-bottom: 8px; color: var(--violet-glow); }
.cfk-trust-item-desc { font-size: 14px; color: var(--ink-300); }
.cfk-trust-note { font-size: 12.5px; color: var(--ink-400); margin-top: 8px; font-style: italic; }
/* ---------- FAQ ---------- */
.cfk-faq { background: var(--navy-900); border-top: 1px solid var(--line); }
.cfk-faq-list { max-width: 760px; margin: 44px auto 0; }
.cfk-faq-item { border-bottom: 1px solid var(--line); }
.cfk-faq-q {
width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
background: none; border: none; color: var(--white);
font-family: var(--font-head); font-size: 16.5px; font-weight: 600;
padding: 22px 4px; text-align: left;
}
.cfk-faq-q .cfk-plus { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--violet-glow); transition: transform .2s ease; }
.cfk-faq-item.is-open .cfk-plus { transform: rotate(45deg); }
.cfk-faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.cfk-faq-a-inner { padding: 0 4px 22px; font-size: 15px; color: var(--ink-300); max-width: 640px; }
.cfk-faq-item.is-open .cfk-faq-a { max-height: 300px; }
/* ---------- FINAL CTA ---------- */
.cfk-final {
padding: 110px 0;
text-align: center;
background:
radial-gradient(60% 70% at 50% 100%, rgba(124,58,237,0.32), transparent 65%),
var(--navy-950);
}
.cfk-final h2 { max-width: 680px; margin: 0 auto 16px; }
.cfk-final .cfk-lede { max-width: 480px; margin: 0 auto 36px; }
.cfk-final-price { font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--gold-300); margin-bottom: 26px; }
/* ---------- STICKY MOBILE CTA ---------- */
.cfk-sticky {
position: fixed; left: 0; right: 0; bottom: -100px;
background: rgba(11,15,30,0.92);
backdrop-filter: blur(10px);
border-top: 1px solid var(--line);
padding: 12px 16px;
display: none;
align-items: center; justify-content: space-between; gap: 14px;
z-index: 9999;
transition: bottom .25s ease;
}
.cfk-sticky.is-visible { bottom: 0; }
.cfk-sticky-info { line-height: 1.25; }
.cfk-sticky-title { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--ink-300); }
.cfk-sticky-price { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--gold-300); }
.cfk-sticky .cfk-btn { padding: 13px 20px; font-size: 15px; white-space: nowrap; }
@media (max-width: 760px) { .cfk-sticky { display: flex; } }
@media (prefers-reduced-motion: reduce) {
.cfk-page * { transition: none !important; animation: none !important; }
}
FOR ASPIRING CREATORS & FUTURE FREELANCERS
Skill ≠ Income.
You can learn Photoshop, design and web skills — but knowing the skill is only the beginning.
Learn the creative skills and freelancing fundamentals you need to start turning your skills into freelance opportunities.
Graphic Design
Photoshop
Illustrator
Web Design
Freelancing
Personal Branding
Get Instant Access — ₹699
Digital product • Instant access • Learn at your own pace
🖼
PRODUCT_MOCKUP
Replace with your Creative Freelancer Kit product image / device mockup
You learned the skill. But what do you do with it?
You have the skill
✓ Photoshop
✓ Illustrator
✓ Graphic Design
✓ Web Design
You don't have the direction
✕ What service should I offer?
✕ How does freelancing actually work?
✕ How should I present my skills?
✕ What should I put in my portfolio?
✕ What should I do next?
That's the gap the Creative Freelancer Kit is designed to help you bridge.
Meet the Creative Freelancer Kit
A structured digital learning bundle that brings creative-skill training and freelancing fundamentals into one place — so you're not piecing your path together from random tutorials.
It's built around one idea: skill and income are two different problems. This kit is designed to help you work through both, in order.
Learn →
Build →
Position →
Start
📦
PRODUCT_MOCKUP
Secondary angle or bundle view
What's inside the kit
Seven areas, taught in order — from the creative fundamentals to the freelancing side most tutorials skip.
01
Graphic Design
10+ modules
06
Personal Branding
Included
07
Video-Based Learning
Every module taught on video, so you can learn at your own pace
See exactly what you're getting
Real screenshots from inside the kit — not a mockup of a promise.
Course dashboard. Everything organised in one place, module by module.
Inside a lesson. Video-based, step-by-step teaching.
Freelancing material. The part most design tutorials leave out.
How it works
01
Get access
Purchase the Creative Freelancer Kit and get instant access.
02
Learn
Work through the learning material at your own pace.
03
Build
Apply your skills through projects and portfolio work.
04
Start
Use what you've learned to begin pursuing freelance opportunities.
Is this for you?
GOOD FIT
✓ Beginners
✓ Aspiring graphic designers
✓ Students interested in freelancing
✓ Photoshop learners
✓ Illustrator learners
✓ Web design beginners
✓ Creatives who want to explore freelancing
✓ People who have skills but lack direction
NOT FOR YOU IF YOU'RE
✕ Looking for guaranteed income
✕ Looking for overnight results
✕ Looking for a magic shortcut
✕ Not willing to practice
<!-- To hide this section if you have no testimonials yet, wrap it in
-->
What learners are saying
Real feedback, shared as sent. Replace each placeholder with an anonymised screenshot.
WhatsApp feedback — replace with anonymised screenshot
WhatsApp feedback — replace with anonymised screenshot
WhatsApp feedback — replace with anonymised screenshot
Start building your creative freelancing journey
✓ Graphic Design
✓ Photoshop
✓ Illustrator
✓ Web Design
✓ Freelancing
✓ Personal Branding
✓ Video-Based Learning
SAVE ₹2,300
<!--
Offer valid until [YOUR_DATE_HERE]
-->
Get Instant Access — ₹699
Digital product • Instant access • Learn at your own pace
Before you buy
What you receive
Instant access to the full Creative Freelancer Kit as a digital product.
How access works
[YOUR_ACCESS_METHOD_HERE — e.g. login link sent by email, access via platform name]
Payment & checkout
Secure checkout via [YOUR_PAYMENT_PROVIDER_HERE]. Card, UPI and net banking supported.
Support
Questions before or after purchase: [YOUR_SUPPORT_EMAIL_HERE]
Refund policy: [YOUR_REFUND_POLICY_HERE — insert your actual policy or remove this line if not applicable]
Frequently asked questions
Is this suitable for beginners?+
Yes. The kit is built for people starting out — from creative fundamentals through to the freelancing side.
What exactly is included?+
Video-based modules covering Graphic Design, Photoshop, Illustrator, Web Design, Freelancing, and Personal Branding.
Is this a physical product?+
No. This is a digital product delivered online — nothing is shipped to you.
How will I receive access?+
[YOUR_ACCESS_METHOD_HERE — e.g. instantly after checkout, via email link]
Can I learn at my own pace?+
Yes. All material is video-based and available to revisit whenever you want.
Do I need previous experience?+
No prior experience is required. The kit starts from the fundamentals.
Will this guarantee me clients or income?+
No. No course can guarantee clients or income. This kit gives you the skills and freelancing knowledge to pursue opportunities yourself — the results depend on your effort.
What is the current price?+
The Creative Freelancer Kit is currently ₹699, reduced from a reference value of ₹2,999.
Your skill already has potential.
Now learn how to put that skill to work.
₹699
Get Instant Access — ₹699
Digital access • Learn at your own pace
(function () {
// FAQ accordion
var items = document.querySelectorAll('.cfk-page .cfk-faq-item');
items.forEach(function (item) {
var q = item.querySelector('.cfk-faq-q');
q.addEventListener('click', function () {
var wasOpen = item.classList.contains('is-open');
items.forEach(function (i) { i.classList.remove('is-open'); });
if (!wasOpen) item.classList.add('is-open');
});
});
// Sticky mobile CTA — shows after hero is scrolled past
var sticky = document.getElementById('cfk-sticky');
var hero = document.querySelector('.cfk-page .cfk-hero');
if (sticky && hero) {
var toggleSticky = function () {
var heroBottom = hero.getBoundingClientRect().bottom;
if (heroBottom < 0) {
sticky.classList.add('is-visible');
} else {
sticky.classList.remove('is-visible');
}
};
window.addEventListener('scroll', toggleSticky, { passive: true });
toggleSticky();
}
// Meta Pixel: ViewContent on load, InitiateCheckout on CTA click.
// Requires the Meta Pixel base code (with YOUR_META_PIXEL_ID) to already be
// installed on this page (e.g. via WordPress header scripts / a pixel plugin).
if (typeof fbq === 'function') {
fbq('track', 'ViewContent', {
content_name: 'Creative Freelancer Kit',
content_type: 'product',
value: 699,
currency: 'INR'
});
var ctaIds = ['cfk-cta-hero', 'cfk-cta-sticky'];
document.querySelectorAll('.cfk-page a.cfk-btn-primary').forEach(function (btn) {
btn.addEventListener('click', function () {
fbq('track', 'InitiateCheckout', {
content_name: 'Creative Freelancer Kit',
value: 699,
currency: 'INR'
});
});
});
}
})();