/* ============================================================
   BASE COURSE LANDING CSS
   Path:
   /wp-content/themes/amoozeshyar/landings/base-course/css/base-course.css
============================================================ */

:root{
    --bc-bg:#f3eadb;
    --bc-bg-soft:#fff8eb;
    --bc-bg-paper:#efe1c8;
    --bc-ink:#201d19;
    --bc-ink-soft:rgba(32,29,25,.78);
    --bc-muted:rgba(32,29,25,.58);
    --bc-muted-2:rgba(32,29,25,.42);

    --bc-gold:#a9823e;
    --bc-gold-2:#c69a4c;
    --bc-brown:#5a3d1d;
    --bc-brown-soft:#7a5a2a;
    --bc-line:rgba(70,47,21,.18);
    --bc-line-strong:rgba(70,47,21,.30);

    --bc-white:rgba(255,255,255,.66);
    --bc-shadow:0 30px 90px rgba(66,44,18,.18);
    --bc-shadow-soft:0 18px 50px rgba(66,44,18,.12);

    --bc-radius-sm:18px;
    --bc-radius-md:28px;
    --bc-radius-lg:42px;
    --bc-radius-xl:56px;

    --bc-container:1180px;
    --bc-ease:cubic-bezier(.2,.8,.2,1);
}

/* RESET */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    margin:0;
    padding:0;
    scroll-behavior:smooth;
    overflow-x:hidden;
    background:var(--bc-bg);
}

body.base-course-body{
    margin:0 !important;
    padding:0 !important;
    min-height:100svh;
    direction:rtl;
    overflow-x:hidden;
    background:var(--bc-bg) !important;
    color:var(--bc-ink) !important;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

body.base-course-body a{
    color:inherit;
    text-decoration:none;
}

body.base-course-body img{
    max-width:100%;
}

body.base-course-body button,
body.base-course-body input{
    font-family:inherit !important;
}

.bc-page{
    position:relative;
    min-height:100svh;
    overflow:hidden;
    isolation:isolate;
    background:
        radial-gradient(circle at 50% 0%, rgba(198,154,76,.20), transparent 30%),
        radial-gradient(circle at 8% 30%, rgba(90,61,29,.08), transparent 26%),
        linear-gradient(180deg,#f5eddf 0%,#efe1c8 48%,#f8f0e3 100%);
}

.bc-paper-texture{
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.23;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(80,55,24,.16) 0 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, rgba(80,55,24,.12) 0 1px, transparent 1px);
    background-size:8px 8px, 13px 13px;
    mix-blend-mode:multiply;
}

.bc-container{
    width:min(var(--bc-container), calc(100% - 42px));
    margin:0 auto;
    position:relative;
    z-index:3;
}

/* BUTTONS */

.bc-main-btn,
.bc-secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:58px;
    padding:0 30px;
    border-radius:999px;
    font-size:15px;
    line-height:1.4;
    font-weight:950;
    cursor:pointer;
    border:none;
    transition:
        transform .25s var(--bc-ease),
        box-shadow .25s var(--bc-ease),
        background .25s var(--bc-ease);
}

.bc-main-btn{
    color:#fff !important;
    background:
        linear-gradient(180deg,#c49a4c,#8f692d);
    box-shadow:
        0 18px 44px rgba(129,89,35,.28),
        inset 0 1px 0 rgba(255,255,255,.30);
}

.bc-main-btn:hover{
    transform:translateY(-4px);
    box-shadow:
        0 28px 66px rgba(129,89,35,.36),
        inset 0 1px 0 rgba(255,255,255,.36);
}

.bc-secondary-btn{
    color:var(--bc-ink) !important;
    background:rgba(255,255,255,.36);
    border:1px solid var(--bc-line);
    box-shadow:var(--bc-shadow-soft);
}

.bc-secondary-btn:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.56);
}

.bc-main-btn-big{
    width:100%;
    min-height:66px;
    font-size:16px;
}

/* HERO */

.bc-hero{
    position:relative;
    min-height:100svh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:80px 0 90px;
}

.bc-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
    overflow:hidden;
}

.bc-hero-bg-image{
    position:absolute;
    inset:-30px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    filter:blur(20px) brightness(1.05) saturate(.94);
    transform:scale(1.08);
    opacity:.34;
}

.bc-hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background:
        linear-gradient(180deg,rgba(245,237,223,.72),rgba(239,225,200,.88)),
        radial-gradient(circle at 50% 22%,rgba(198,154,76,.18),transparent 32%);
}

.bc-hero-layout{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:54px;
    align-items:center;
}

.bc-hero-content{
    position:relative;
    padding:46px 42px;
    border-radius:var(--bc-radius-xl);
    background:
        linear-gradient(135deg,rgba(255,255,255,.58),rgba(255,255,255,.24));
    border:1px solid var(--bc-line);
    box-shadow:var(--bc-shadow);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.bc-hero-content::before{
    content:"";
    position:absolute;
    top:0;
    right:42px;
    left:42px;
    height:2px;
    background:linear-gradient(90deg,transparent,var(--bc-gold),transparent);
}

.bc-hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    padding:10px 18px;
    border-radius:999px;
    color:var(--bc-brown) !important;
    background:rgba(198,154,76,.12);
    border:1px solid rgba(169,130,62,.28);
    font-size:13px;
    line-height:1;
    font-weight:950;
}

.bc-hero h1{
    margin:0 0 22px;
    color:var(--bc-ink) !important;
    font-size:clamp(68px,9vw,122px);
    line-height:.92;
    letter-spacing:-4px;
    font-weight:950;
}

.bc-hero h1::first-letter{
    color:var(--bc-gold);
}

.bc-hero-subtitle{
    max-width:680px;
    margin:0;
    color:var(--bc-ink-soft) !important;
    font-size:17px;
    line-height:2.15;
    font-weight:650;
}

.bc-hero-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:34px;
}

.bc-hero-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:34px;
}

.bc-hero-stat{
    min-height:112px;
    padding:18px 14px;
    border-radius:24px;
    background:rgba(255,255,255,.34);
    border:1px solid var(--bc-line);
    text-align:center;
    box-shadow:0 14px 36px rgba(66,44,18,.08);
}

.bc-hero-stat strong{
    display:block;
    margin-bottom:6px;
    color:var(--bc-ink) !important;
    font-size:17px;
    line-height:1.6;
    font-weight:950;
}

.bc-hero-stat span{
    display:block;
    color:var(--bc-muted) !important;
    font-size:12.5px;
    line-height:1.8;
    font-weight:650;
}

.bc-hero-visual{
    position:relative;
}

.bc-poster-card{
    position:relative;
    overflow:hidden;
    border-radius:44px;
    background:#ead8b8;
    border:1px solid rgba(90,61,29,.18);
    box-shadow:
        0 34px 95px rgba(66,44,18,.24),
        inset 0 1px 0 rgba(255,255,255,.42);
}

.bc-poster-card::before{
    content:"";
    position:absolute;
    inset:14px;
    z-index:2;
    pointer-events:none;
    border-radius:34px;
    border:1px solid rgba(90,61,29,.14);
}

.bc-poster-card img{
    display:block;
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
}

.bc-sketch-note{
    position:absolute;
    right:-22px;
    bottom:34px;
    width:min(310px,78%);
    padding:20px 22px;
    border-radius:26px;
    background:rgba(255,255,255,.72);
    border:1px solid var(--bc-line);
    box-shadow:0 22px 60px rgba(66,44,18,.16);
    backdrop-filter:blur(10px);
}

.bc-sketch-note span{
    display:block;
    margin-bottom:7px;
    color:var(--bc-gold) !important;
    font-size:11px;
    font-weight:950;
    letter-spacing:1px;
}

.bc-sketch-note strong{
    display:block;
    color:var(--bc-ink) !important;
    font-size:15px;
    line-height:1.8;
    font-weight:900;
}

/* SECTIONS */

.bc-section{
    position:relative;
    z-index:2;
    padding:110px 0;
}

.bc-section-head{
    text-align:center;
    margin-bottom:48px;
}

.bc-section-head-right{
    text-align:right;
    margin-bottom:28px;
}

.bc-section-head span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
    padding:9px 16px;
    border-radius:999px;
    color:var(--bc-brown) !important;
    background:rgba(169,130,62,.12);
    border:1px solid rgba(169,130,62,.24);
    font-size:12px;
    line-height:1;
    font-weight:950;
}

.bc-section-head h2{
    margin:0;
    color:var(--bc-ink) !important;
    font-size:clamp(34px,5vw,64px);
    line-height:1.22;
    letter-spacing:-1.6px;
    font-weight:950;
}

.bc-text-block p{
    margin:0 0 20px;
    color:var(--bc-ink-soft) !important;
    font-size:16px;
    line-height:2.25;
    font-weight:600;
}

.bc-text-block p:last-child{
    margin-bottom:0;
}

/* SPLIT */

.bc-split-panel{
    position:relative;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:42px;
    align-items:center;
    padding:38px;
    border-radius:var(--bc-radius-xl);
    background:
        linear-gradient(135deg,rgba(255,255,255,.62),rgba(255,255,255,.26));
    border:1px solid var(--bc-line);
    box-shadow:var(--bc-shadow);
    overflow:hidden;
}

.bc-split-panel::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.18;
    background-image:
        linear-gradient(rgba(90,61,29,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90,61,29,.12) 1px, transparent 1px);
    background-size:46px 46px;
}

.bc-split-content,
.bc-split-visual{
    position:relative;
    z-index:2;
}

.bc-split-panel-reverse{
    grid-template-columns:.95fr 1.05fr;
}

.bc-split-panel-reverse .bc-split-content{
    order:2;
}

.bc-split-panel-reverse .bc-personality-board{
    order:1;
}

.bc-sketch-frame{
    position:relative;
    overflow:hidden;
    border-radius:38px;
    background:#ead8b8;
    border:1px solid var(--bc-line);
    box-shadow:0 24px 70px rgba(66,44,18,.16);
}

.bc-sketch-frame img{
    display:block;
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

/* FOUNDATION */

.bc-foundation-section{
    background:
        radial-gradient(circle at 80% 18%,rgba(198,154,76,.13),transparent 28%);
}

.bc-foundation-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.bc-foundation-card{
    position:relative;
    overflow:hidden;
    min-height:310px;
    padding:30px 24px;
    border-radius:32px;
    background:
        linear-gradient(180deg,rgba(255,255,255,.62),rgba(255,255,255,.24));
    border:1px solid var(--bc-line);
    box-shadow:var(--bc-shadow-soft);
}

.bc-foundation-card::before{
    content:"";
    position:absolute;
    right:0;
    top:24px;
    bottom:24px;
    width:3px;
    border-radius:999px;
    background:var(--bc-gold);
}

.bc-foundation-card::after{
    content:"";
    position:absolute;
    left:-90px;
    bottom:-115px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(198,154,76,.18),transparent 68%);
}

.bc-wide-card{
    grid-column:span 4;
    min-height:220px;
}

.bc-card-number{
    position:relative;
    z-index:2;
    color:rgba(169,130,62,.30) !important;
    font-size:58px;
    line-height:1;
    font-weight:950;
    letter-spacing:-3px;
    margin-bottom:18px;
}

.bc-foundation-card h3{
    position:relative;
    z-index:2;
    margin:0 0 12px;
    color:var(--bc-ink) !important;
    font-size:22px;
    line-height:1.6;
    font-weight:950;
}

.bc-foundation-card p{
    position:relative;
    z-index:2;
    margin:0;
    color:var(--bc-ink-soft) !important;
    font-size:14.5px;
    line-height:2.05;
    font-weight:600;
}

/* ROADMAP */

.bc-map-panel{
    position:relative;
    overflow:hidden;
    padding:44px;
    border-radius:var(--bc-radius-xl);
    background:
        radial-gradient(circle at 50% 0%,rgba(198,154,76,.18),transparent 30%),
        linear-gradient(135deg,rgba(255,255,255,.60),rgba(255,255,255,.24));
    border:1px solid var(--bc-line);
    box-shadow:var(--bc-shadow);
}

.bc-roadmap{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:18px;
    width:min(860px,100%);
    margin:0 auto;
}

.bc-roadmap::before{
    content:"";
    position:absolute;
    top:38px;
    bottom:38px;
    right:36px;
    width:3px;
    border-radius:999px;
    background:
        linear-gradient(180deg,var(--bc-gold),rgba(90,61,29,.22));
}

.bc-roadmap-item{
    position:relative;
    display:grid;
    grid-template-columns:72px 1fr;
    gap:18px;
    align-items:center;
    min-height:130px;
    padding:22px;
    border-radius:30px;
    background:rgba(255,255,255,.42);
    border:1px solid var(--bc-line);
    box-shadow:0 14px 40px rgba(66,44,18,.10);
}

.bc-roadmap-marker{
    position:relative;
    z-index:3;
    width:72px;
    height:72px;
    border-radius:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff !important;
    background:
        radial-gradient(circle at 35% 25%,#d2ad65,#8f692d 72%);
    box-shadow:
        0 16px 38px rgba(129,89,35,.28),
        inset 0 1px 0 rgba(255,255,255,.34);
    font-size:15px;
    font-weight:950;
}

.bc-roadmap-item span{
    display:inline-flex;
    margin-bottom:8px;
    color:var(--bc-gold) !important;
    font-size:12px;
    font-weight:950;
}

.bc-roadmap-item h3{
    margin:0 0 8px;
    color:var(--bc-ink) !important;
    font-size:21px;
    line-height:1.5;
    font-weight:950;
}

.bc-roadmap-item p{
    margin:0;
    color:var(--bc-ink-soft) !important;
    font-size:14px;
    line-height:1.95;
    font-weight:600;
}

.bc-roadmap-final{
    border-color:rgba(169,130,62,.34);
    background:rgba(255,248,235,.64);
}

/* PERSONALITY */

.bc-personality-board{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.bc-personality-card{
    min-height:170px;
    padding:24px;
    border-radius:30px;
    background:
        linear-gradient(180deg,rgba(255,255,255,.64),rgba(255,255,255,.28));
    border:1px solid var(--bc-line);
    box-shadow:var(--bc-shadow-soft);
}

.bc-personality-card:nth-child(2),
.bc-personality-card:nth-child(3){
    transform:translateY(28px);
}

.bc-personality-card span{
    display:block;
    margin-bottom:14px;
    color:var(--bc-gold) !important;
    font-size:12px;
    font-weight:950;
    letter-spacing:1px;
}

.bc-personality-card strong{
    display:block;
    color:var(--bc-ink) !important;
    font-size:20px;
    line-height:1.7;
    font-weight:950;
}

/* GIFT */

.bc-gift-card{
    position:relative;
    display:grid;
    grid-template-columns:100px 1fr;
    gap:28px;
    align-items:center;
    width:min(920px,100%);
    margin:0 auto;
    padding:42px;
    border-radius:var(--bc-radius-xl);
    background:
        radial-gradient(circle at 12% 0%,rgba(198,154,76,.20),transparent 30%),
        linear-gradient(135deg,rgba(255,255,255,.70),rgba(255,255,255,.30));
    border:1px solid rgba(169,130,62,.26);
    box-shadow:var(--bc-shadow);
}

.bc-gift-icon{
    width:96px;
    height:96px;
    border-radius:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff !important;
    background:
        radial-gradient(circle at 35% 25%,#d2ad65,#8f692d 72%);
    box-shadow:0 24px 60px rgba(129,89,35,.26);
    font-size:38px;
    font-weight:950;
}

.bc-gift-content span{
    display:inline-flex;
    margin-bottom:12px;
    color:var(--bc-gold) !important;
    font-size:12px;
    font-weight:950;
}

.bc-gift-content h2{
    margin:0 0 12px;
    color:var(--bc-ink) !important;
    font-size:clamp(30px,4vw,52px);
    line-height:1.25;
    font-weight:950;
}

.bc-gift-content p{
    margin:0;
    color:var(--bc-ink-soft) !important;
    font-size:15.5px;
    line-height:2.1;
    font-weight:600;
}

/* MENTOR */

.bc-mentor-panel{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:40px;
    align-items:center;
    padding:38px;
    border-radius:var(--bc-radius-xl);
    background:
        linear-gradient(135deg,rgba(255,255,255,.62),rgba(255,255,255,.24));
    border:1px solid var(--bc-line);
    box-shadow:var(--bc-shadow);
}

.bc-mentor-content,
.bc-mentor-visual{
    position:relative;
    z-index:2;
}

.bc-mentor-visual{
    overflow:hidden;
    border-radius:38px;
    background:#ead8b8;
    border:1px solid var(--bc-line);
    box-shadow:var(--bc-shadow-soft);
}

.bc-mentor-visual img{
    display:block;
    width:100%;
    height:580px;
    object-fit:cover;
    object-position:center;
    filter:saturate(.95) contrast(1.02);
}

/* AFTER */

.bc-after-list{
    width:min(860px,100%);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.bc-after-row{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:22px 24px;
    border-radius:26px;
    background:rgba(255,255,255,.46);
    border:1px solid var(--bc-line);
    box-shadow:0 14px 40px rgba(66,44,18,.08);
}

.bc-after-row span{
    width:32px;
    height:32px;
    min-width:32px;
    margin-top:6px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff !important;
    background:var(--bc-gold);
    font-size:16px;
    font-weight:950;
}

.bc-after-row p{
    margin:0;
    color:var(--bc-ink-soft) !important;
    font-size:15.5px;
    line-height:2;
    font-weight:700;
}

/* FAQ */

.bc-faq-wrap{
    width:min(900px,100%);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.bc-faq-item{
    padding:28px 30px;
    border-radius:30px;
    background:rgba(255,255,255,.48);
    border:1px solid var(--bc-line);
    box-shadow:0 14px 42px rgba(66,44,18,.08);
}

.bc-faq-item h3{
    margin:0 0 12px;
    color:var(--bc-ink) !important;
    font-size:21px;
    line-height:1.7;
    font-weight:950;
}

.bc-faq-item p{
    margin:0;
    color:var(--bc-ink-soft) !important;
    font-size:15px;
    line-height:2.05;
    font-weight:600;
}

/* PRICING */

.bc-pricing-section{
    padding-bottom:140px;
}

.bc-pricing-card{
    position:relative;
    overflow:hidden;
    width:min(900px,100%);
    margin:0 auto;
    padding:54px 46px 48px;
    border-radius:var(--bc-radius-xl);
    text-align:center;
    background:
        radial-gradient(circle at 50% 0%,rgba(198,154,76,.24),transparent 32%),
        linear-gradient(135deg,rgba(255,255,255,.72),rgba(255,255,255,.30));
    border:1px solid rgba(169,130,62,.28);
    box-shadow:var(--bc-shadow);
}

.bc-pricing-kicker{
    display:inline-flex;
    margin-bottom:20px;
    padding:10px 18px;
    border-radius:999px;
    color:var(--bc-brown) !important;
    background:rgba(169,130,62,.12);
    border:1px solid rgba(169,130,62,.26);
    font-size:13px;
    font-weight:950;
}

.bc-pricing-card h2{
    margin:0 0 18px;
    color:var(--bc-ink) !important;
    font-size:clamp(40px,6vw,76px);
    line-height:1.08;
    letter-spacing:-2px;
    font-weight:950;
}

.bc-pricing-text{
    max-width:680px;
    margin:0 auto;
    color:var(--bc-ink-soft) !important;
    font-size:16px;
    line-height:2.1;
    font-weight:650;
}

.bc-price-wrap{
    margin:38px 0 28px;
}

.bc-old-price{
    display:inline-block;
    margin-bottom:10px;
    color:rgba(90,61,29,.48) !important;
    font-size:34px;
    line-height:1.2;
    font-weight:950;
    text-decoration:line-through;
    text-decoration-thickness:3px;
    text-decoration-color:rgba(90,61,29,.42);
}

.bc-new-price{
    display:block;
    color:var(--bc-brown) !important;
    font-size:clamp(48px,7vw,82px);
    line-height:1;
    font-weight:950;
    letter-spacing:-2px;
    text-shadow:0 10px 28px rgba(129,89,35,.14);
}

.bc-price-empty{
    font-size:30px;
    line-height:1.6;
}

.bc-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:32px 0;
}

.bc-benefit{
    display:flex;
    align-items:flex-start;
    gap:12px;
    min-height:78px;
    padding:18px;
    border-radius:22px;
    background:rgba(255,255,255,.44);
    border:1px solid var(--bc-line);
    text-align:right;
}

.bc-benefit-dot{
    width:30px;
    height:30px;
    min-width:30px;
    margin-top:4px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff !important;
    background:var(--bc-gold);
    font-size:15px;
    font-weight:950;
}

.bc-benefit p{
    margin:0;
    color:var(--bc-ink) !important;
    font-size:14px;
    line-height:2;
    font-weight:800;
}

/* FORM */

.bc-signup-form{
    margin-top:28px;
}

.bc-form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:18px;
}

.bc-form-field{
    display:flex;
    flex-direction:column;
    gap:10px;
    text-align:right;
}

.bc-form-field span{
    color:var(--bc-ink-soft) !important;
    font-size:14px;
    font-weight:800;
}

.bc-form-field input{
    width:100%;
    height:62px;
    padding:0 18px;
    border-radius:18px;
    outline:none;
    color:var(--bc-ink) !important;
    background:rgba(255,255,255,.54);
    border:1px solid var(--bc-line);
    font-size:15px;
    font-weight:700;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.36);
}

.bc-form-field input::placeholder{
    color:rgba(32,29,25,.36);
}

.bc-form-field input:focus{
    border-color:rgba(169,130,62,.54);
    box-shadow:
        0 0 0 4px rgba(169,130,62,.12),
        inset 0 1px 0 rgba(255,255,255,.42);
}

.bc-form-field input[name="phone"]{
    direction:rtl;
    text-align:right;
}

/* PAYMENT MESSAGE */

.bc-payment-message{
    position:relative;
    z-index:20;
    width:min(760px,calc(100% - 32px));
    margin:28px auto 0;
    padding:32px 26px;
    border-radius:28px;
    background:rgba(255,255,255,.72);
    border:1px solid rgba(169,130,62,.26);
    box-shadow:var(--bc-shadow);
    text-align:center;
}

.bc-payment-icon{
    width:64px;
    height:64px;
    margin:0 auto 16px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(169,130,62,.12);
    color:var(--bc-brown);
    font-size:30px;
    font-weight:950;
}

.bc-payment-message h2{
    margin:0 0 10px;
    color:var(--bc-ink) !important;
    font-size:25px;
    line-height:1.6;
    font-weight:950;
}

.bc-payment-message p{
    margin:0;
    color:var(--bc-ink-soft) !important;
    font-size:15px;
    line-height:2;
    font-weight:600;
}

.bc-payment-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:22px;
    min-height:52px;
    padding:0 26px;
    border-radius:999px;
    color:#fff !important;
    background:var(--bc-gold);
    font-size:15px;
    font-weight:950;
}

/* HOVERS */

.bc-foundation-card,
.bc-roadmap-item,
.bc-personality-card,
.bc-after-row,
.bc-faq-item,
.bc-benefit,
.bc-hero-stat{
    transition:
        transform .24s var(--bc-ease),
        box-shadow .24s var(--bc-ease),
        border-color .24s var(--bc-ease),
        background .24s var(--bc-ease);
}

@media (hover:hover){
    .bc-foundation-card:hover,
    .bc-roadmap-item:hover,
    .bc-personality-card:hover,
    .bc-after-row:hover,
    .bc-faq-item:hover,
    .bc-benefit:hover,
    .bc-hero-stat:hover{
        transform:translateY(-5px);
        border-color:var(--bc-line-strong);
        box-shadow:0 24px 70px rgba(66,44,18,.16);
        background:rgba(255,255,255,.62);
    }
}

/* RESPONSIVE */

@media (max-width:1180px){
    .bc-foundation-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .bc-wide-card{
        grid-column:span 2;
    }
}

@media (max-width:980px){
    .bc-hero-layout,
    .bc-split-panel,
    .bc-split-panel-reverse,
    .bc-mentor-panel{
        grid-template-columns:1fr;
    }

    .bc-split-panel-reverse .bc-split-content,
    .bc-split-panel-reverse .bc-personality-board{
        order:initial;
    }

    .bc-section-head-right{
        text-align:center;
    }

    .bc-hero-content{
        text-align:center;
    }

    .bc-hero-actions{
        justify-content:center;
    }

    .bc-hero-visual{
        max-width:620px;
        margin:0 auto;
    }

    .bc-mentor-visual img{
        height:500px;
    }
}

@media (max-width:768px){

    .bc-container{
        width:100%;
        max-width:100%;
        padding-left:16px;
        padding-right:16px;
    }

    .bc-page{
        background:
            radial-gradient(circle at 50% 0%, rgba(198,154,76,.20), transparent 32%),
            linear-gradient(180deg,#f5eddf 0%,#efe1c8 100%);
    }

    .bc-hero{
        min-height:auto;
        padding:62px 0 70px;
    }

    .bc-hero-bg-image{
        filter:blur(16px) brightness(1.08) saturate(.9);
        opacity:.28;
    }

    .bc-hero-layout{
        gap:28px;
    }

    .bc-hero-content{
        padding:32px 20px 26px;
        border-radius:34px;
    }

    .bc-hero h1{
        font-size:clamp(58px,18vw,76px);
        letter-spacing:-2px;
    }

    .bc-hero-subtitle{
        font-size:14.5px;
        line-height:2.05;
    }

    .bc-hero-actions{
        flex-direction:column;
        width:100%;
    }

    .bc-main-btn,
    .bc-secondary-btn{
        width:100%;
        min-height:56px;
    }

    .bc-hero-stats{
        grid-template-columns:1fr;
        gap:10px;
    }

    .bc-hero-stat{
        min-height:auto;
        padding:14px 16px;
    }

    .bc-sketch-note{
        position:relative;
        right:auto;
        bottom:auto;
        width:100%;
        margin-top:14px;
    }

    .bc-section{
        padding:76px 0;
    }

    .bc-section-head{
        margin-bottom:32px;
    }

    .bc-section-head h2{
        font-size:31px;
        line-height:1.35;
        letter-spacing:-.8px;
    }

    .bc-text-block p{
        font-size:14px;
        line-height:2.05;
        text-align:center;
    }

    .bc-split-panel,
    .bc-map-panel,
    .bc-mentor-panel{
        padding:18px;
        border-radius:32px;
    }

    .bc-foundation-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .bc-wide-card{
        grid-column:auto;
    }

    .bc-foundation-card{
        min-height:auto;
        padding:24px 20px;
        border-radius:26px;
    }

    .bc-card-number{
        font-size:44px;
        margin-bottom:12px;
    }

    .bc-foundation-card h3{
        font-size:19px;
    }

    .bc-foundation-card p{
        font-size:13.5px;
        line-height:1.95;
    }

    .bc-roadmap::before{
        right:28px;
    }

    .bc-roadmap-item{
        grid-template-columns:58px 1fr;
        gap:14px;
        min-height:auto;
        padding:18px;
        border-radius:24px;
    }

    .bc-roadmap-marker{
        width:58px;
        height:58px;
        border-radius:20px;
        font-size:13px;
    }

    .bc-roadmap-item h3{
        font-size:18px;
    }

    .bc-roadmap-item p{
        font-size:13px;
    }

    .bc-personality-board{
        grid-template-columns:1fr;
    }

    .bc-personality-card:nth-child(2),
    .bc-personality-card:nth-child(3){
        transform:none;
    }

    .bc-personality-card{
        min-height:auto;
        padding:22px;
        border-radius:24px;
    }

    .bc-gift-card{
        grid-template-columns:1fr;
        gap:18px;
        padding:28px 20px;
        border-radius:32px;
        text-align:center;
    }

    .bc-gift-icon{
        margin:0 auto;
        width:82px;
        height:82px;
        border-radius:28px;
        font-size:32px;
    }

    .bc-gift-content h2{
        font-size:30px;
    }

    .bc-gift-content p{
        font-size:14px;
        line-height:2;
    }

    .bc-mentor-visual{
        border-radius:28px;
    }

    .bc-mentor-visual img{
        height:420px;
    }

    .bc-after-row{
        padding:18px;
        border-radius:22px;
    }

    .bc-after-row p{
        font-size:14px;
        line-height:1.95;
    }

    .bc-faq-item{
        padding:22px 20px;
        border-radius:24px;
    }

    .bc-faq-item h3{
        font-size:18px;
    }

    .bc-faq-item p{
        font-size:14px;
    }

    .bc-pricing-section{
        padding-bottom:92px;
    }

    .bc-pricing-card{
        padding:36px 20px 30px;
        border-radius:32px;
    }

    .bc-pricing-card h2{
        font-size:36px;
        line-height:1.2;
        letter-spacing:-1px;
    }

    .bc-pricing-text{
        font-size:14px;
        line-height:2;
    }

    .bc-old-price{
        font-size:26px;
    }

    .bc-new-price{
        font-size:44px;
        letter-spacing:-1px;
    }

    .bc-benefits{
        grid-template-columns:1fr;
        gap:12px;
    }

    .bc-form-grid{
        grid-template-columns:1fr;
    }

    .bc-form-field input{
        height:58px;
        font-size:14px;
    }
}

@media (max-width:420px){
    .bc-container{
        padding-left:12px;
        padding-right:12px;
    }

    .bc-hero-content{
        padding:28px 16px 24px;
        border-radius:28px;
    }

    .bc-hero h1{
        font-size:54px;
    }

    .bc-section-head h2{
        font-size:29px;
    }

    .bc-roadmap-item{
        grid-template-columns:52px 1fr;
        padding:16px;
    }

    .bc-roadmap-marker{
        width:52px;
        height:52px;
    }

    .bc-gift-card,
    .bc-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;
  }

}
