/* ============================================================
   CHARISMA COURSE LANDING CSS
   Path:
   /wp-content/themes/amoozeshyar/landings/charisma-course/css/charisma-course.css
============================================================ */

:root{
    --ck-bg:#050505;
    --ck-bg-2:#090806;
    --ck-surface:#11100d;
    --ck-surface-2:#171511;

    --ck-text:#ffffff;
    --ck-text-soft:rgba(255,255,255,.82);
    --ck-muted:rgba(255,255,255,.62);
    --ck-muted-2:rgba(255,255,255,.42);

    --ck-gold:#b88945;
    --ck-gold-2:#d4aa63;
    --ck-gold-3:#f2d18a;
    --ck-brown:#4d3218;

    --ck-border:rgba(255,255,255,.10);
    --ck-border-gold:rgba(184,137,69,.36);

    --ck-shadow:0 42px 130px rgba(0,0,0,.56);
    --ck-shadow-soft:0 24px 72px rgba(0,0,0,.34);
    --ck-shadow-gold:0 24px 70px rgba(184,137,69,.22);

    --ck-radius-sm:18px;
    --ck-radius-md:28px;
    --ck-radius-lg:42px;
    --ck-radius-xl:56px;

    --ck-container:1180px;
    --ck-ease:cubic-bezier(.2,.8,.2,1);
}

/* RESET */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    margin:0;
    padding:0;
    scroll-behavior:smooth;
    background:var(--ck-bg);
    overflow-x:hidden;
}

body.charisma-course-body{
    margin:0 !important;
    padding:0 !important;
    min-height:100svh;
    direction:rtl;
    overflow-x:hidden;
    background:var(--ck-bg) !important;
    color:var(--ck-text) !important;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

body.charisma-course-body a{
    color:inherit;
    text-decoration:none;
}

body.charisma-course-body img{
    max-width:100%;
}

body.charisma-course-body button,
body.charisma-course-body input{
    font-family:inherit !important;
}

.ck-page{
    position:relative;
    min-height:100svh;
    overflow:hidden;
    isolation:isolate;
    background:
        radial-gradient(circle at 50% 0%, rgba(184,137,69,.20), transparent 28%),
        radial-gradient(circle at 12% 24%, rgba(55,80,105,.10), transparent 24%),
        radial-gradient(circle at 90% 70%, rgba(184,137,69,.08), transparent 28%),
        linear-gradient(180deg,#050505 0%,#0c0a08 42%,#050505 100%);
}

.ck-bg-lines{
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.13;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size:52px 52px;
    mask-image:radial-gradient(circle at center, black 0 36%, transparent 78%);
    -webkit-mask-image:radial-gradient(circle at center, black 0 36%, transparent 78%);
}

.ck-container{
    width:min(var(--ck-container), calc(100% - 42px));
    margin:0 auto;
    position:relative;
    z-index:3;
}

/* BUTTONS */

.ck-main-btn,
.ck-ghost-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:58px;
    padding:0 32px;
    border-radius:999px;
    font-size:15px;
    line-height:1.4;
    font-weight:950;
    cursor:pointer;
    transition:
        transform .25s var(--ck-ease),
        box-shadow .25s var(--ck-ease),
        background .25s var(--ck-ease),
        border-color .25s var(--ck-ease);
}

.ck-main-btn{
    color:#15100a !important;
    background:
        linear-gradient(180deg,#f2d18a 0%,#b88945 100%);
    border:1px solid rgba(255,255,255,.20);
    box-shadow:
        0 22px 56px rgba(184,137,69,.28),
        inset 0 1px 0 rgba(255,255,255,.46);
}

.ck-main-btn:hover{
    transform:translateY(-4px);
    box-shadow:
        0 32px 78px rgba(184,137,69,.38),
        inset 0 1px 0 rgba(255,255,255,.54);
}

.ck-ghost-btn{
    color:#fff !important;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.13);
    box-shadow:0 18px 44px rgba(0,0,0,.22);
}

.ck-ghost-btn:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.08);
    border-color:rgba(212,170,99,.34);
}

.ck-main-btn-big{
    width:100%;
    min-height:68px;
    font-size:16px;
}

/* PAYMENT */

.ck-payment-message{
    position:relative;
    z-index:30;
    width:min(760px, calc(100% - 32px));
    margin:28px auto 0;
    padding:32px 26px;
    border-radius:30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
    border:1px solid rgba(255,255,255,.12);
    box-shadow:var(--ck-shadow-soft);
    text-align:center;
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}

.ck-payment-icon{
    width:64px;
    height:64px;
    margin:0 auto 16px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#15100a !important;
    background:var(--ck-gold-2);
    font-size:30px;
    font-weight:950;
}

.ck-payment-message h2{
    margin:0 0 10px;
    color:#fff !important;
    font-size:25px;
    line-height:1.6;
    font-weight:950;
}

.ck-payment-message p{
    margin:0;
    color:var(--ck-muted) !important;
    font-size:15px;
    line-height:2;
    font-weight:600;
}

.ck-payment-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    margin-top:22px;
    padding:0 26px;
    border-radius:999px;
    color:#15100a !important;
    background:var(--ck-gold-2);
    font-size:15px;
    font-weight:950;
}

/* HERO */

.ck-hero{
    position:relative;
    min-height:100svh;
    display:flex;
    align-items:center;
    padding:90px 0 105px;
    overflow:hidden;
}

.ck-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
    overflow:hidden;
}

.ck-hero-bg-image{
    position:absolute;
    inset:-34px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    filter:blur(18px) brightness(.36) saturate(.92);
    transform:scale(1.08);
    opacity:.82;
}

.ck-hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background:
        linear-gradient(90deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.72) 58%, rgba(0,0,0,.88) 100%),
        radial-gradient(circle at 58% 12%, rgba(212,170,99,.20), transparent 26%),
        linear-gradient(180deg, rgba(5,5,5,.08) 0%, rgba(5,5,5,.76) 100%);
}

.ck-hero-shell{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.02fr .98fr;
    gap:54px;
    align-items:center;
}

.ck-hero-copy{
    position:relative;
    overflow:hidden;
    padding:48px 44px;
    border-radius:var(--ck-radius-xl);
    background:
        radial-gradient(circle at 20% 0%, rgba(212,170,99,.15), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.11);
    box-shadow:var(--ck-shadow);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.ck-hero-copy::before{
    content:"";
    position:absolute;
    top:0;
    right:42px;
    left:42px;
    height:2px;
    background:linear-gradient(90deg, transparent, var(--ck-gold-2), transparent);
    box-shadow:0 0 24px rgba(212,170,99,.58);
}

.ck-kicker{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    padding:10px 18px;
    border-radius:999px;
    color:var(--ck-gold-3) !important;
    background:rgba(184,137,69,.13);
    border:1px solid rgba(184,137,69,.34);
    font-size:12px;
    line-height:1;
    font-weight:950;
    letter-spacing:1.4px;
}

.ck-hero h1{
    margin:0 0 24px;
    color:#fff !important;
    font-size:clamp(58px,8vw,112px);
    line-height:.95;
    letter-spacing:-4px;
    font-weight:950;
    text-shadow:
        0 0 42px rgba(184,137,69,.22),
        0 16px 44px rgba(0,0,0,.45);
}

.ck-hero-lead{
    max-width:680px;
    margin:0;
    color:var(--ck-text-soft) !important;
    font-size:17px;
    line-height:2.18;
    font-weight:650;
}

.ck-hero-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:34px;
}

.ck-hero-metrics{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:36px;
}

.ck-metric{
    min-height:108px;
    padding:18px 14px;
    border-radius:24px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.10);
    text-align:center;
}

.ck-metric span{
    display:block;
    margin-bottom:8px;
    color:rgba(212,170,99,.74) !important;
    font-size:22px;
    line-height:1;
    font-weight:950;
}

.ck-metric strong{
    display:block;
    color:#fff !important;
    font-size:14px;
    line-height:1.8;
    font-weight:900;
}

.ck-hero-gallery{
    position:relative;
}

.ck-poster-frame{
    position:relative;
    overflow:hidden;
    border-radius:46px;
    background:#080705;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:var(--ck-shadow);
}

.ck-poster-frame::before{
    content:"";
    position:absolute;
    inset:14px;
    z-index:2;
    pointer-events:none;
    border-radius:34px;
    border:1px solid rgba(212,170,99,.20);
}

.ck-poster-frame::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:3;
    pointer-events:none;
    background:
        linear-gradient(180deg, transparent 50%, rgba(0,0,0,.34) 100%),
        radial-gradient(circle at 50% 0%, rgba(212,170,99,.16), transparent 30%);
}

.ck-poster-frame img{
    display:block;
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
}

.ck-style-tags{
    position:absolute;
    right:-20px;
    bottom:38px;
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    width:min(360px,82%);
    padding:18px;
    border-radius:26px;
    background:rgba(5,5,5,.62);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 24px 70px rgba(0,0,0,.42);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}

.ck-style-tags span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:0 14px;
    border-radius:999px;
    color:#f2d18a !important;
    background:rgba(184,137,69,.13);
    border:1px solid rgba(184,137,69,.32);
    font-size:11px;
    font-weight:950;
    letter-spacing:1px;
}

/* GENERAL SECTION */

.ck-section{
    position:relative;
    z-index:2;
    padding:112px 0;
}

.ck-section-head{
    text-align:center;
    margin-bottom:48px;
}

.ck-section-head-right{
    text-align:right;
    margin-bottom:28px;
}

.ck-section-head span,
.ck-editorial-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
    padding:9px 16px;
    border-radius:999px;
    color:var(--ck-gold-3) !important;
    background:rgba(184,137,69,.13);
    border:1px solid rgba(184,137,69,.30);
    font-size:12px;
    line-height:1;
    font-weight:950;
}

.ck-section-head h2,
.ck-editorial-title h2{
    margin:0;
    color:#fff !important;
    font-size:clamp(34px,5vw,64px);
    line-height:1.22;
    letter-spacing:-1.8px;
    font-weight:950;
}

.ck-text-block p{
    margin:0 0 20px;
    color:var(--ck-muted) !important;
    font-size:16px;
    line-height:2.22;
    font-weight:600;
}

.ck-text-block p:last-child{
    margin-bottom:0;
}

/* INTRO EDITORIAL */

.ck-intro-section{
    background:
        radial-gradient(circle at 80% 20%, rgba(184,137,69,.09), transparent 30%);
}

.ck-editorial-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:52px;
    align-items:start;
    padding:42px;
    border-radius:var(--ck-radius-xl);
    background:
        linear-gradient(135deg, rgba(255,255,255,.072), rgba(255,255,255,.024));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--ck-shadow-soft);
}

.ck-editorial-title{
    position:sticky;
    top:34px;
}

.ck-editorial-text{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.ck-editorial-text p{
    margin:0;
    color:var(--ck-text-soft) !important;
    font-size:16px;
    line-height:2.25;
    font-weight:600;
}

/* STYLE STRIP */

.ck-style-strip{
    position:relative;
    z-index:2;
    padding:34px 0;
}

.ck-strip-wrap{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.ck-strip-item{
    min-height:124px;
    padding:24px 20px;
    border-radius:28px;
    background:
        radial-gradient(circle at 50% 0%, rgba(212,170,99,.12), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.024));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 62px rgba(0,0,0,.24);
    text-align:center;
}

.ck-strip-item strong{
    display:block;
    color:#fff !important;
    font-size:24px;
    line-height:1.5;
    font-weight:950;
    margin-bottom:6px;
}

.ck-strip-item span{
    display:block;
    color:var(--ck-muted) !important;
    font-size:13px;
    line-height:1.8;
    font-weight:600;
}

/* MODULES */

.ck-modules-section{
    background:
        radial-gradient(circle at 18% 20%, rgba(184,137,69,.08), transparent 28%);
}

.ck-modules-board{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.ck-module-card{
    position:relative;
    overflow:hidden;
    min-height:330px;
    padding:28px 24px;
    border-radius:34px;
    background:
        radial-gradient(circle at 100% 0%, rgba(212,170,99,.13), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.070), rgba(255,255,255,.025));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--ck-shadow-soft);
}

.ck-module-card::before{
    content:"";
    position:absolute;
    top:24px;
    bottom:24px;
    right:0;
    width:3px;
    border-radius:999px;
    background:linear-gradient(180deg,var(--ck-gold-3),var(--ck-gold));
}

.ck-module-card::after{
    content:"";
    position:absolute;
    left:-90px;
    bottom:-115px;
    width:230px;
    height:230px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(184,137,69,.16), transparent 68%);
}

.ck-module-large{
    grid-column:span 2;
}

.ck-module-gift{
    border-color:rgba(212,170,99,.32);
    background:
        radial-gradient(circle at 50% 0%, rgba(212,170,99,.22), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.030));
}

.ck-module-index{
    position:relative;
    z-index:2;
    color:rgba(212,170,99,.25) !important;
    font-size:60px;
    line-height:1;
    font-weight:950;
    letter-spacing:-3px;
    margin-bottom:18px;
}

.ck-module-content{
    position:relative;
    z-index:2;
}

.ck-module-content span{
    display:inline-flex;
    margin-bottom:12px;
    color:var(--ck-gold-3) !important;
    font-size:11px;
    line-height:1;
    font-weight:950;
    letter-spacing:1.2px;
}

.ck-module-content h3{
    margin:0 0 12px;
    color:#fff !important;
    font-size:22px;
    line-height:1.65;
    font-weight:950;
}

.ck-module-content p{
    margin:0;
    color:var(--ck-muted) !important;
    font-size:14.5px;
    line-height:2.05;
    font-weight:600;
}

/* IDENTITY */

.ck-identity-panel{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:42px;
    align-items:center;
    padding:38px;
    border-radius:var(--ck-radius-xl);
    background:
        radial-gradient(circle at 20% 0%, rgba(184,137,69,.11), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.024));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--ck-shadow-soft);
}

.ck-identity-image{
    position:relative;
    overflow:hidden;
    border-radius:38px;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:var(--ck-shadow-soft);
}

.ck-identity-image::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(180deg, transparent 60%, rgba(0,0,0,.44) 100%),
        radial-gradient(circle at 50% 0%, rgba(212,170,99,.16), transparent 34%);
}

.ck-identity-image img{
    display:block;
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
}

/* TRANSFORMATION */

.ck-transformation-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.ck-transform-card{
    min-height:220px;
    padding:28px 24px;
    border-radius:32px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.066), rgba(255,255,255,.025));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--ck-shadow-soft);
}

.ck-transform-card span{
    display:inline-flex;
    margin-bottom:16px;
    padding:8px 14px;
    border-radius:999px;
    color:#15100a !important;
    background:var(--ck-gold-2);
    font-size:12px;
    font-weight:950;
}

.ck-transform-card p{
    margin:0;
    color:var(--ck-text-soft) !important;
    font-size:15px;
    line-height:2.05;
    font-weight:650;
}

/* PEACOCK */

.ck-peacock-card{
    display:grid;
    grid-template-columns:100px 1fr;
    gap:28px;
    align-items:center;
    width:min(940px,100%);
    margin:0 auto;
    padding:42px;
    border-radius:var(--ck-radius-xl);
    background:
        radial-gradient(circle at 12% 0%, rgba(212,170,99,.22), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.084), rgba(255,255,255,.030));
    border:1px solid rgba(212,170,99,.30);
    box-shadow:var(--ck-shadow);
}

.ck-peacock-icon{
    width:96px;
    height:96px;
    border-radius:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#15100a !important;
    background:
        radial-gradient(circle at 35% 25%,#f2d18a,#b88945 72%);
    box-shadow:var(--ck-shadow-gold);
    font-size:38px;
    font-weight:950;
}

.ck-peacock-content span{
    display:inline-flex;
    margin-bottom:12px;
    color:var(--ck-gold-3) !important;
    font-size:12px;
    font-weight:950;
}

.ck-peacock-content h2{
    margin:0 0 12px;
    color:#fff !important;
    font-size:clamp(30px,4vw,52px);
    line-height:1.28;
    font-weight:950;
}

.ck-peacock-content p{
    margin:0;
    color:var(--ck-muted) !important;
    font-size:15.5px;
    line-height:2.1;
    font-weight:600;
}

/* FAQ */

.ck-faq-list{
    width:min(920px,100%);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.ck-faq-item{
    padding:28px 30px;
    border-radius:30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 18px 54px rgba(0,0,0,.22);
}

.ck-faq-item h3{
    margin:0 0 12px;
    color:#fff !important;
    font-size:21px;
    line-height:1.7;
    font-weight:950;
}

.ck-faq-item p{
    margin:0;
    color:var(--ck-muted) !important;
    font-size:15px;
    line-height:2.05;
    font-weight:600;
}

/* PRICING */

.ck-pricing-section{
    padding-bottom:150px;
    background:
        radial-gradient(circle at 50% 20%, rgba(212,170,99,.14), transparent 32%);
}

.ck-pricing-card{
    position:relative;
    overflow:hidden;
    width:min(900px,100%);
    margin:0 auto;
    padding:56px 48px 50px;
    border-radius:var(--ck-radius-xl);
    text-align:center;
    background:
        radial-gradient(circle at 50% 0%, rgba(212,170,99,.22), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.030));
    border:1px solid rgba(212,170,99,.28);
    box-shadow:var(--ck-shadow);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.ck-pricing-card::before{
    content:"";
    position:absolute;
    inset:auto -20% -42% -20%;
    height:360px;
    pointer-events:none;
    background:radial-gradient(circle, rgba(184,137,69,.28), transparent 72%);
}

.ck-pricing-card > *{
    position:relative;
    z-index:2;
}

.ck-pricing-kicker{
    display:inline-flex;
    margin-bottom:22px;
    padding:10px 18px;
    border-radius:999px;
    color:var(--ck-gold-3) !important;
    background:rgba(184,137,69,.13);
    border:1px solid rgba(184,137,69,.34);
    font-size:13px;
    font-weight:950;
}

.ck-pricing-card h2{
    margin:0 0 18px;
    color:#fff !important;
    font-size:clamp(40px,6vw,76px);
    line-height:1.08;
    letter-spacing:-2px;
    font-weight:950;
}

.ck-pricing-text{
    max-width:680px;
    margin:0 auto;
    color:var(--ck-text-soft) !important;
    font-size:16px;
    line-height:2.1;
    font-weight:650;
}

.ck-price-wrap{
    margin:40px 0 30px;
}

.ck-old-price{
    display:inline-block;
    margin-bottom:12px;
    color:rgba(255,255,255,.44) !important;
    font-size:34px;
    line-height:1.2;
    font-weight:950;
    text-decoration:line-through;
    text-decoration-thickness:3px;
    text-decoration-color:rgba(212,170,99,.72);
}

.ck-new-price{
    display:block;
    color:var(--ck-gold-3) !important;
    font-size:clamp(50px,7vw,84px);
    line-height:1;
    font-weight:950;
    letter-spacing:-2px;
    text-shadow:
        0 0 42px rgba(184,137,69,.28),
        0 14px 34px rgba(0,0,0,.34);
}

.ck-price-empty{
    font-size:30px;
    line-height:1.6;
}

.ck-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:34px 0;
}

.ck-benefit{
    display:flex;
    align-items:flex-start;
    gap:12px;
    min-height:78px;
    padding:18px;
    border-radius:22px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.10);
    text-align:right;
}

.ck-benefit span{
    width:30px;
    height:30px;
    min-width:30px;
    margin-top:4px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#15100a !important;
    background:var(--ck-gold-2);
    font-size:15px;
    font-weight:950;
}

.ck-benefit p{
    margin:0;
    color:#fff !important;
    font-size:14px;
    line-height:2;
    font-weight:800;
}

/* FORM */

.ck-signup-form{
    margin-top:28px;
}

.ck-form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:18px;
}

.ck-form-field{
    display:flex;
    flex-direction:column;
    gap:10px;
    text-align:right;
}

.ck-form-field span{
    color:var(--ck-text-soft) !important;
    font-size:14px;
    font-weight:800;
}

.ck-form-field input{
    width:100%;
    height:62px;
    padding:0 18px;
    border-radius:18px;
    outline:none;
    color:#fff !important;
    background:rgba(0,0,0,.24);
    border:1px solid rgba(255,255,255,.11);
    font-size:15px;
    font-weight:700;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}

.ck-form-field input::placeholder{
    color:rgba(255,255,255,.34);
}

.ck-form-field input:focus{
    border-color:rgba(212,170,99,.48);
    box-shadow:
        0 0 0 4px rgba(184,137,69,.12),
        inset 0 1px 0 rgba(255,255,255,.07);
}

.ck-form-field input[name="phone"]{
    direction:rtl;
    text-align:right;
}

/* HOVERS */

.ck-metric,
.ck-strip-item,
.ck-module-card,
.ck-transform-card,
.ck-faq-item,
.ck-benefit{
    transition:
        transform .24s var(--ck-ease),
        box-shadow .24s var(--ck-ease),
        border-color .24s var(--ck-ease),
        background .24s var(--ck-ease);
}

@media (hover:hover){
    .ck-metric:hover,
    .ck-strip-item:hover,
    .ck-module-card:hover,
    .ck-transform-card:hover,
    .ck-faq-item:hover,
    .ck-benefit:hover{
        transform:translateY(-5px);
        border-color:rgba(212,170,99,.30);
        box-shadow:0 28px 82px rgba(0,0,0,.34);
        background:linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.034));
    }
}

/* RESPONSIVE */

@media (max-width:1180px){
    .ck-modules-board{
        grid-template-columns:repeat(2,1fr);
    }

    .ck-transformation-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ck-strip-wrap{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:980px){
    .ck-hero-shell,
    .ck-editorial-grid,
    .ck-identity-panel{
        grid-template-columns:1fr;
    }

    .ck-editorial-title{
        position:relative;
        top:auto;
        text-align:center;
    }

    .ck-section-head-right{
        text-align:center;
    }

    .ck-hero-copy{
        text-align:center;
    }

    .ck-hero-actions{
        justify-content:center;
    }

    .ck-hero-gallery{
        max-width:620px;
        margin:0 auto;
    }
}

@media (max-width:768px){

    .ck-container{
        width:100%;
        max-width:100%;
        padding-left:16px;
        padding-right:16px;
    }

    .ck-hero{
        min-height:auto;
        padding:62px 0 76px;
    }

    .ck-hero-bg-image{
        filter:blur(14px) brightness(.34) saturate(.9);
        opacity:.70;
    }

    .ck-hero::before{
        background:
            linear-gradient(180deg, rgba(0,0,0,.38) 0%, rgba(0,0,0,.82) 100%),
            radial-gradient(circle at 50% 14%, rgba(212,170,99,.22), transparent 32%);
    }

    .ck-hero-shell{
        gap:28px;
    }

    .ck-hero-copy{
        padding:32px 20px 28px;
        border-radius:34px;
    }

    .ck-kicker{
        font-size:11px;
    }

    .ck-hero h1{
        font-size:clamp(48px,15vw,72px);
        line-height:1.02;
        letter-spacing:-2px;
    }

    .ck-hero-lead{
        font-size:14.5px;
        line-height:2.05;
    }

    .ck-hero-actions{
        flex-direction:column;
        width:100%;
    }

    .ck-main-btn,
    .ck-ghost-btn{
        width:100%;
        min-height:56px;
    }

    .ck-hero-metrics{
        grid-template-columns:1fr;
        gap:10px;
    }

    .ck-metric{
        min-height:auto;
        padding:14px 16px;
    }

    .ck-poster-frame{
        border-radius:34px;
    }

    .ck-style-tags{
        position:relative;
        right:auto;
        bottom:auto;
        width:100%;
        margin-top:14px;
    }

    .ck-section{
        padding:76px 0;
    }

    .ck-section-head{
        margin-bottom:32px;
    }

    .ck-section-head h2,
    .ck-editorial-title h2{
        font-size:31px;
        line-height:1.34;
        letter-spacing:-.8px;
    }

    .ck-editorial-grid,
    .ck-identity-panel,
    .ck-peacock-card,
    .ck-pricing-card{
        padding:20px;
        border-radius:32px;
    }

    .ck-editorial-text p,
    .ck-text-block p{
        font-size:14px;
        line-height:2.05;
        text-align:center;
    }

    .ck-strip-wrap{
        grid-template-columns:1fr;
        gap:12px;
    }

    .ck-strip-item{
        min-height:auto;
        padding:20px 18px;
        border-radius:24px;
    }

    .ck-modules-board{
        grid-template-columns:1fr;
        gap:14px;
    }

    .ck-module-large{
        grid-column:auto;
    }

    .ck-module-card{
        min-height:auto;
        padding:24px 20px;
        border-radius:28px;
    }

    .ck-module-index{
        font-size:44px;
        margin-bottom:12px;
    }

    .ck-module-content h3{
        font-size:19px;
    }

    .ck-module-content p{
        font-size:13.5px;
        line-height:1.95;
    }

    .ck-identity-image{
        border-radius:28px;
    }

    .ck-identity-image img{
        aspect-ratio:16/10;
    }

    .ck-transformation-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .ck-transform-card{
        min-height:auto;
        padding:22px 20px;
        border-radius:26px;
    }

    .ck-peacock-card{
        grid-template-columns:1fr;
        gap:18px;
        text-align:center;
    }

    .ck-peacock-icon{
        width:82px;
        height:82px;
        border-radius:28px;
        margin:0 auto;
        font-size:32px;
    }

    .ck-peacock-content h2{
        font-size:30px;
    }

    .ck-peacock-content p{
        font-size:14px;
        line-height:2;
    }

    .ck-faq-item{
        padding:22px 20px;
        border-radius:24px;
    }

    .ck-faq-item h3{
        font-size:18px;
    }

    .ck-faq-item p{
        font-size:14px;
    }

    .ck-pricing-section{
        padding-bottom:92px;
    }

    .ck-pricing-card h2{
        font-size:36px;
        line-height:1.2;
        letter-spacing:-1px;
    }

    .ck-pricing-text{
        font-size:14px;
        line-height:2;
    }

    .ck-old-price{
        font-size:26px;
    }

    .ck-new-price{
        font-size:44px;
        letter-spacing:-1px;
    }

    .ck-benefits{
        grid-template-columns:1fr;
        gap:12px;
    }

    .ck-form-grid{
        grid-template-columns:1fr;
    }

    .ck-form-field input{
        height:58px;
        font-size:14px;
    }
}

@media (max-width:420px){
    .ck-container{
        padding-left:12px;
        padding-right:12px;
    }

    .ck-hero-copy{
        padding:28px 16px 24px;
        border-radius:28px;
    }

    .ck-hero h1{
        font-size:46px;
    }

    .ck-section-head h2,
    .ck-editorial-title h2{
        font-size:29px;
    }

    .ck-editorial-grid,
    .ck-identity-panel,
    .ck-peacock-card,
    .ck-pricing-card{
        padding-left:16px;
        padding-right:16px;
    }
}

/* ACCESSIBILITY */

@media (prefers-reduced-motion:reduce){
    *,
    *::before,
    *::after{
        animation-duration:.001ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.001ms !important;
        scroll-behavior:auto !important;
    }
}


/* =========================
   FOOTER
   ========================= */

.pb-footer {
  position: relative;
  z-index: 2;

  padding: 38px 20px;

  border-top: 1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.015),
      rgba(255,255,255,0.03)
    );
}

.pb-footer-inner {
  max-width: 1180px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  flex-wrap: wrap;
}

.pb-footer p {
  margin: 0;

  color: var(--text-muted);

  font-size: 15px;

  line-height: 1.9;
}

.pb-footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pb-footer-links a {
  color: #dbe5ee;

  text-decoration: none;

  font-size: 15px;
  font-weight: 700;

  transition:
    opacity 0.25s ease,
    color 0.25s ease;
}

.pb-footer-links a:hover {
  color: var(--accent);
}

/* MOBILE */

@media (max-width: 768px) {

  .pb-footer-inner {
    flex-direction: column;

    text-align: center;
  }

  .pb-footer-links {
    gap: 18px;
  }

}
