
/*=== RESET ===*/
.vv-scope *, .vv-scope *::before, .vv-scope *::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:70px}
.vv-scope{font-family:'Inter',system-ui,sans-serif;background:#FBF8F1;color:#2D2424;line-height:1.6;-webkit-font-smoothing:antialiased}
.vv-scope img{max-width:100%;display:block}
.vv-scope a{text-decoration:none;color:inherit}
.vv-scope ul{list-style:none}
.vv-scope button, .vv-scope input, .vv-scope textarea, .vv-scope select{font-family:inherit}
.vv-scope button{cursor:pointer}

/*=== VARIABLES ===*/
:root{
  --maroon:#7B1818;--maroon-d:#5C1010;--maroon-l:#A02020;
  --gold:#C9A84C;--gold-l:#E4D08F;--green:#2E5339;
  --bg:#FBF8F1;--card:#fff;--alt:#F3EDE0;
  --txt:#2D2424;--txt2:#6B5B5B;--on-p:#FBF8F1;
  --bdr:#E0D5C5;--r:8px;--rl:16px;
  --shadow:0 2px 16px rgba(123,24,24,.06);
  --shadow-h:0 8px 32px rgba(123,24,24,.12);
  --f-d:'Playfair Display',Georgia,serif;
}

/*=== NAVBAR ===*/
.vv-scope .nav{background:var(--card);border-bottom:1px solid var(--bdr);position:sticky;top:0;z-index:100;padding:0 24px}
.vv-scope .nav-in{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;height:68px}
.vv-scope .logo-wrap{display:flex;align-items:center}
.vv-scope .logo-wrap img{height:42px}
.vv-scope .nav-links{display:flex;align-items:center;gap:6px}
.vv-scope .nav-links a{font-size:13.5px;font-weight:500;color:var(--txt2);padding:8px 12px;border-radius:6px;transition:all .2s;white-space:nowrap}
.vv-scope .nav-links a:hover{color:var(--maroon);background:rgba(123,24,24,.04)}
.vv-scope .nav-links a.on{color:var(--maroon);font-weight:600}
.vv-scope .btn-login{padding:9px 20px!important;background:var(--maroon)!important;color:var(--on-p)!important;border-radius:var(--r)!important;font-weight:600!important;font-size:13px!important}
.vv-scope .btn-login:hover{background:var(--maroon-d)!important}
.vv-scope .mob-btn{display:none;background:none;border:none;font-size:28px;color:var(--txt)}
.vv-scope .mob-menu{display:none;flex-direction:column;background:var(--card);border-top:1px solid var(--bdr);padding:16px 24px;position:absolute;top:68px;left:0;right:0;z-index:99;box-shadow:0 8px 24px rgba(0,0,0,.1)}
.vv-scope .mob-menu.show{display:flex}
.vv-scope .mob-menu a{padding:12px 0;border-bottom:1px solid var(--bdr);font-size:15px;color:var(--txt2)}
.vv-scope .mob-menu a:last-child{border-bottom:none}

/*=== PAGE SYSTEM ===*/
.vv-scope .page{display:none}.vv-scope .page.active{display:block}

/*=== SLIDER ===*/
.vv-scope .slider{position:relative;overflow:hidden;background:#1A0505}
.vv-scope .s-track{display:flex;transition:transform .6s cubic-bezier(.4,0,.2,1)}
.vv-scope .slide{min-width:100%}
.vv-scope .slide img{width:100%;height:auto;min-height:180px;object-fit:cover}
.vv-scope .s-arr{position:absolute;top:50%;transform:translateY(-50%);z-index:10;width:44px;height:44px;border-radius:50%;border:2px solid rgba(255,255,255,.25);background:rgba(0,0,0,.35);backdrop-filter:blur(6px);color:#fff;font-size:20px;display:flex;align-items:center;justify-content:center;transition:all .2s}
.vv-scope .s-arr:hover{background:rgba(0,0,0,.6);border-color:rgba(255,255,255,.5)}
.vv-scope .al{left:16px}.vv-scope .ar{right:16px}
.vv-scope .s-dots{position:absolute;bottom:14px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:10}
.vv-scope .s-dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.35);border:1.5px solid rgba(255,255,255,.5);cursor:pointer;transition:all .25s}
.vv-scope .s-dot.on{background:var(--gold);border-color:var(--gold);transform:scale(1.25)}

/*=== FEATURES STRIP ===*/
.vv-scope .feat{background:var(--card);border-bottom:1px solid var(--bdr)}
.vv-scope .feat-in{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(5,1fr);padding:0 24px}
.vv-scope .fi{padding:28px 12px;text-align:center;border-right:1px solid var(--bdr);transition:background .2s}
.vv-scope .fi:last-child{border-right:none}
.vv-scope .fi:hover{background:#FDF4F4}
.vv-scope .fi-i{width:48px;height:48px;margin:0 auto 10px;background:#FDF4F4;border-radius:var(--r);display:flex;align-items:center;justify-content:center;font-size:22px}
.vv-scope .fi h3{font-size:13px;font-weight:700;margin-bottom:3px}
.vv-scope .fi p{font-size:11px;color:var(--txt2)}

/*=== SECTIONS ===*/
.vv-scope .section{padding:72px 24px}
.vv-scope .section.alt{background:var(--alt)}
.vv-scope .section-in{max-width:1200px;margin:0 auto}
.vv-scope .eyebrow{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--maroon);margin-bottom:8px}
.vv-scope .s-title{font-family:var(--f-d);font-size:clamp(24px,3.5vw,36px);font-weight:700;line-height:1.2;margin-bottom:16px}
.vv-scope .s-title::after{content:'';display:block;width:50px;height:3px;background:var(--maroon);margin-top:12px;border-radius:2px}
.vv-scope .s-title.center{text-align:center}.vv-scope .s-title.center::after{margin:12px auto 0}

/*=== ABOUT ===*/
.vv-scope .about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start;margin-top:32px}
.vv-scope .about-text p{color:var(--txt2);font-size:15px;line-height:1.8;margin-bottom:24px}
.vv-scope .checks{display:flex;flex-direction:column;gap:10px;margin-bottom:28px}
.vv-scope .chk{display:flex;align-items:center;gap:10px;font-size:14px;font-weight:500}
.vv-scope .chk-i{width:22px;height:22px;background:var(--maroon);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:11px;flex-shrink:0}
.vv-scope .about-right{display:flex;flex-direction:column;gap:24px}
.vv-scope .about-img{background:var(--alt);border-radius:var(--rl);padding:32px;border:1px solid var(--bdr);text-align:center}
.vv-scope .about-img .icon{font-size:64px;margin-bottom:12px}
.vv-scope .about-img .t1{font-family:var(--f-d);font-size:18px;font-weight:600}
.vv-scope .about-img .t2{font-size:13px;color:var(--txt2);margin-top:6px}
.vv-scope .about-stats{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.vv-scope .a-stat{background:var(--card);border:1px solid var(--bdr);border-radius:var(--r);padding:20px;text-align:center;box-shadow:var(--shadow)}
.vv-scope .a-stat .num{font-family:var(--f-d);font-size:28px;font-weight:700;color:var(--maroon)}
.vv-scope .a-stat .lbl{font-size:12px;color:var(--txt2);margin-top:4px}
.vv-scope .what-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:16px;margin-top:32px}
.vv-scope .what-item{background:var(--card);border:1px solid var(--bdr);border-radius:var(--r);padding:20px 12px;text-align:center;box-shadow:var(--shadow);transition:all .25s}
.vv-scope .what-item:hover{transform:translateY(-3px);box-shadow:var(--shadow-h)}
.vv-scope .what-item .wi{font-size:28px;margin-bottom:10px}
.vv-scope .what-item h4{font-size:12px;font-weight:600;line-height:1.4}
.vv-scope .vision-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:32px}
.vv-scope .v-card{background:var(--card);border:1px solid var(--bdr);border-radius:var(--rl);padding:32px;box-shadow:var(--shadow)}
.vv-scope .v-card h3{font-family:var(--f-d);font-size:20px;color:var(--maroon);margin-bottom:12px;display:flex;align-items:center;gap:10px}
.vv-scope .v-card p{font-size:14px;color:var(--txt2);line-height:1.7}

/*=== COURSES ===*/
.vv-scope .std-block{margin-bottom:40px}
.vv-scope .std-lbl{display:flex;align-items:center;gap:16px;margin-bottom:20px}
.vv-scope .std-badge{background:var(--maroon);color:var(--on-p);padding:16px 24px;border-radius:var(--r);text-align:center;min-width:130px}
.vv-scope .std-badge.gold{background:var(--gold);color:#1A1A1A}
.vv-scope .std-badge .sn{font-family:var(--f-d);font-size:36px;font-weight:700;line-height:1}
.vv-scope .std-badge .sn sup{font-size:16px}
.vv-scope .std-badge .st{font-size:11px;text-transform:uppercase;letter-spacing:.1em;margin-top:2px;font-weight:600}
.vv-scope .std-badge .ss{font-size:10px;opacity:.7;margin-top:2px}
.vv-scope .c-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.vv-scope .cc{background:var(--card);border-radius:var(--r);overflow:hidden;border:1px solid var(--bdr);box-shadow:var(--shadow);transition:all .25s}
.vv-scope .cc:hover{transform:translateY(-4px);box-shadow:var(--shadow-h)}
.vv-scope .cc-h{background:var(--maroon);padding:16px;text-align:center}
.vv-scope .cc-h h4{font-size:12px;font-weight:700;color:var(--on-p);text-transform:uppercase;letter-spacing:.04em}
.vv-scope .cc-h .ci{font-size:28px;margin-top:8px}
.vv-scope .cc-b{padding:16px}
.vv-scope .cc-b li{font-size:12px;color:var(--txt2);padding:4px 0;display:flex;align-items:center;gap:6px}
.vv-scope .cc-b li::before{content:'✓';color:var(--maroon);font-weight:700;font-size:11px}
.vv-scope .btn-card{display:block;width:100%;text-align:center;padding:10px;background:var(--maroon);color:var(--on-p);border-radius:var(--r);font-size:13px;font-weight:600;border:none;margin-top:16px;transition:all .2s}
.vv-scope .btn-card:hover{background:var(--maroon-d)}

/*=== COURSE DETAIL ===*/
.vv-scope .cd-layout{display:grid;grid-template-columns:1fr 340px;gap:32px;margin-top:32px}
.vv-scope .cd-badges{display:flex;gap:8px;margin-bottom:16px}
.vv-scope .cd-badge{font-size:11px;font-weight:600;padding:4px 12px;border-radius:20px;border:1px solid}
.vv-scope .cd-badge.red{color:var(--maroon);border-color:var(--maroon);background:rgba(123,24,24,.05)}
.vv-scope .cd-badge.grn{color:var(--green);border-color:var(--green);background:rgba(46,83,57,.05)}
.vv-scope .cd-meta{display:flex;gap:16px;margin:20px 0;flex-wrap:wrap}
.vv-scope .cd-meta span{font-size:12px;color:var(--txt2);padding:6px 14px;border:1px solid var(--bdr);border-radius:20px;display:flex;align-items:center;gap:6px}
.vv-scope .cd-tabs{display:flex;gap:0;border-bottom:2px solid var(--bdr);margin:24px 0}
.vv-scope .cd-tab{padding:10px 20px;font-size:13px;font-weight:500;color:var(--txt2);border-bottom:2px solid transparent;margin-bottom:-2px;cursor:pointer;transition:all .2s}
.vv-scope .cd-tab.on{color:var(--maroon);border-color:var(--maroon);font-weight:600}
.vv-scope .cd-tab:hover{color:var(--maroon)}
.vv-scope .cd-feat{display:flex;align-items:center;gap:6px;font-size:14px;color:var(--txt2);padding:4px 0}
.vv-scope .cd-feat::before{content:'✓';color:var(--maroon);font-weight:700}
.vv-scope .subj-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin:24px 0}
.vv-scope .subj{border:1px solid var(--bdr);border-radius:var(--r);padding:16px 8px;text-align:center;transition:all .2s}
.vv-scope .subj:hover{border-color:var(--maroon);box-shadow:var(--shadow)}
.vv-scope .subj h5{font-size:13px;font-weight:600;margin-bottom:8px}
.vv-scope .subj .si{font-size:24px;margin-bottom:8px}
.vv-scope .subj .sn{font-size:20px;font-weight:700;color:var(--maroon)}
.vv-scope .subj .sl{font-size:11px;color:var(--txt2)}
.vv-scope .cd-sidebar{position:sticky;top:80px;align-self:start}
.vv-scope .cd-price-card{background:var(--card);border:1px solid var(--bdr);border-radius:var(--rl);overflow:hidden;box-shadow:var(--shadow)}
.vv-scope .cd-price-hero{background:linear-gradient(135deg,var(--maroon),#4A0E0E);padding:24px;color:#fff;position:relative}
.vv-scope .cd-price-hero h3{font-size:20px;font-weight:700;line-height:1.3}
.vv-scope .cd-price-hero p{font-size:12px;opacity:.7;margin-top:4px}
.vv-scope .cd-price-body{padding:24px}
.vv-scope .cd-price{font-family:var(--f-d);font-size:32px;font-weight:700;margin-bottom:4px}
.vv-scope .cd-gst{font-size:12px;color:var(--txt2)}
.vv-scope .btn-buy{display:block;width:100%;padding:14px;background:var(--maroon);color:#fff;border:none;border-radius:var(--r);font-size:15px;font-weight:700;margin:16px 0 8px;transition:all .2s}
.vv-scope .btn-buy:hover{background:var(--maroon-d)}
.vv-scope .btn-cart{display:block;width:100%;padding:12px;background:transparent;color:var(--maroon);border:2px solid var(--maroon);border-radius:var(--r);font-size:14px;font-weight:600;transition:all .2s}
.vv-scope .btn-cart:hover{background:rgba(123,24,24,.05)}
.vv-scope .cd-info{margin-top:20px}
.vv-scope .cd-info-item{display:flex;align-items:flex-start;gap:10px;padding:8px 0;border-bottom:1px solid var(--bdr);font-size:13px}
.vv-scope .cd-info-item:last-child{border:none}
.vv-scope .cd-info-item .cdi-icon{font-size:16px;flex-shrink:0;margin-top:2px}
.vv-scope .cd-info-item strong{display:block;font-size:12px;font-weight:600}
.vv-scope .cd-info-item span{font-size:11px;color:var(--txt2)}

/*=== PLANNER ===*/
.vv-scope .plan-hero{background:linear-gradient(135deg,#F8F0E8,#FDF6EE);border-radius:var(--rl);padding:48px;display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;border:1px solid var(--bdr)}
.vv-scope .plan-hero .badge{display:inline-flex;padding:6px 16px;border:1.5px solid var(--maroon);border-radius:20px;font-size:12px;font-weight:600;color:var(--maroon);margin-bottom:16px}
.vv-scope .plan-hero h2{font-family:var(--f-d);font-size:clamp(28px,4vw,40px);font-weight:800;line-height:1.15;margin-bottom:8px}
.vv-scope .plan-hero .sub{font-size:16px;color:var(--txt2);margin-bottom:16px}
.vv-scope .plan-hero p{font-size:14px;color:var(--txt2);line-height:1.7}
.vv-scope .plan-check-box{background:var(--card);border:1px solid var(--bdr);border-radius:var(--rl);padding:32px;box-shadow:var(--shadow)}
.vv-scope .plan-check-box h3{font-family:var(--f-d);font-size:20px;font-style:italic;color:var(--maroon);margin-bottom:16px}
.vv-scope .plan-check{display:flex;align-items:center;gap:10px;font-size:15px;font-weight:500;padding:8px 0}
.vv-scope .plan-check .pc-i{color:var(--maroon);font-weight:700}
.vv-scope .plan-feat{display:grid;grid-template-columns:repeat(5,1fr);gap:0;background:var(--card);border-radius:var(--rl);border:1px solid var(--bdr);margin:40px 0;overflow:hidden}
.vv-scope .pf{padding:28px 16px;text-align:center;border-right:1px solid var(--bdr)}
.vv-scope .pf:last-child{border-right:none}
.vv-scope .pf .pfi{font-size:28px;margin-bottom:10px}
.vv-scope .pf h4{font-size:13px;font-weight:700}
.vv-scope .pf p{font-size:11px;color:var(--txt2);margin-top:4px}
.vv-scope .why-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;margin-top:24px}
.vv-scope .why-card{background:var(--card);border:1px solid var(--bdr);border-radius:var(--r);padding:20px 12px;text-align:center;box-shadow:var(--shadow)}
.vv-scope .why-card .wi{font-size:28px;margin-bottom:10px}
.vv-scope .why-card h4{font-size:13px;font-weight:700;margin-bottom:4px}
.vv-scope .why-card p{font-size:11px;color:var(--txt2)}
.vv-scope .plan-std{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:24px}
.vv-scope .ps{background:linear-gradient(135deg,#D6ECFF,#E8F2FF);border-radius:var(--rl);padding:32px;display:flex;align-items:center;gap:20px;border:1px solid #B8D8F8}
.vv-scope .ps:nth-child(2){background:linear-gradient(135deg,#FFE8D6,#FFF2E8);border-color:#F0C8A0}
.vv-scope .ps .ps-n{font-family:var(--f-d);font-size:36px;font-weight:700}
.vv-scope .ps .ps-n sup{font-size:16px}
.vv-scope .ps .ps-t{font-size:14px;font-weight:600}
.vv-scope .ps .ps-s{font-size:12px;color:var(--txt2);margin-top:4px}
.vv-scope .ps .ps-i{font-size:40px}
.vv-scope .incl-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:16px;margin-top:24px}
.vv-scope .incl{background:var(--card);border:1px solid var(--bdr);border-radius:var(--r);padding:20px 12px;text-align:center;box-shadow:var(--shadow)}
.vv-scope .incl .ii{font-size:28px;margin-bottom:10px}
.vv-scope .incl h4{font-size:12px;font-weight:600;line-height:1.4}
.vv-scope .steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:24px}
.vv-scope .step{text-align:center;position:relative}
.vv-scope .step-num{width:32px;height:32px;background:var(--maroon);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:700;margin:0 auto 12px}
.vv-scope .step .sti{font-size:32px;margin-bottom:10px}
.vv-scope .step h4{font-size:14px;font-weight:700;margin-bottom:4px}
.vv-scope .step p{font-size:12px;color:var(--txt2)}
.vv-scope .plan-cta{background:linear-gradient(135deg,var(--maroon),#4A0E0E);border-radius:var(--rl);padding:40px;margin-top:40px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.vv-scope .plan-cta h3{font-family:var(--f-d);font-size:24px;color:#fff;font-weight:700}
.vv-scope .plan-cta p{font-size:14px;color:rgba(255,255,255,.7);margin-top:4px}
.vv-scope .plan-cta button{padding:14px 32px;background:var(--gold);color:#1A1A1A;border:none;border-radius:var(--r);font-size:15px;font-weight:700;white-space:nowrap;transition:all .2s}
.vv-scope .plan-cta button:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.2)}

/*=== DEMO LECTURES ===*/
.vv-scope .demo-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:32px}
.vv-scope .demo-card{background:var(--card);border:1px solid var(--bdr);border-radius:var(--rl);overflow:hidden;box-shadow:var(--shadow);transition:all .25s}
.vv-scope .demo-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-h)}
.vv-scope .demo-video{background:#1A0505;aspect-ratio:16/9;display:flex;align-items:center;justify-content:center;position:relative}
.vv-scope .demo-play{width:64px;height:64px;background:rgba(255,255,255,.15);backdrop-filter:blur(8px);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:28px;border:2px solid rgba(255,255,255,.3);transition:all .25s}
.vv-scope .demo-card:hover .demo-play{background:var(--maroon);border-color:var(--maroon);transform:scale(1.1)}
.vv-scope .demo-body{padding:20px}
.vv-scope .demo-body h4{font-size:15px;font-weight:600;margin-bottom:6px}
.vv-scope .demo-body p{font-size:13px;color:var(--txt2)}
.vv-scope .demo-tags{display:flex;gap:6px;margin-top:12px;flex-wrap:wrap}
.vv-scope .demo-tag{font-size:11px;padding:4px 10px;border-radius:12px;border:1px solid var(--bdr);color:var(--txt2);font-weight:500}

/*=== CONTACT ===*/
.vv-scope .contact-hero{background:linear-gradient(135deg,var(--maroon),#4A0E0E);border-radius:var(--rl);padding:48px;color:#fff;margin-bottom:40px}
.vv-scope .contact-hero h2{font-family:var(--f-d);font-size:clamp(28px,4vw,40px);font-weight:800;margin-bottom:8px}
.vv-scope .contact-hero .sub{font-size:18px;font-weight:500;margin-bottom:12px;opacity:.9}
.vv-scope .contact-hero p{font-size:14px;opacity:.6;max-width:480px}
.vv-scope .contact-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:40px}
.vv-scope .c-card{background:var(--card);border:1px solid var(--bdr);border-radius:var(--r);padding:24px 16px;text-align:center;box-shadow:var(--shadow)}
.vv-scope .c-card .c-ic{width:48px;height:48px;background:#FDF4F4;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:22px;margin:0 auto 12px;border:1px solid rgba(123,24,24,.1)}
.vv-scope .c-card h4{font-size:14px;font-weight:600;margin-bottom:4px}
.vv-scope .c-card p{font-size:12px;color:var(--txt2)}
.vv-scope .contact-layout{display:grid;grid-template-columns:1fr 1fr;gap:32px}
.vv-scope .contact-form{background:var(--card);border:1px solid var(--bdr);border-radius:var(--rl);padding:32px;box-shadow:var(--shadow)}
.vv-scope .contact-form h3{font-family:var(--f-d);font-size:22px;margin-bottom:24px}
.vv-scope .form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.vv-scope .form-group{margin-bottom:16px}
.vv-scope .form-group label{font-size:12px;font-weight:600;color:var(--txt2);display:block;margin-bottom:6px}
.vv-scope .form-group input, .vv-scope .form-group textarea, .vv-scope .form-group select{width:100%;padding:12px 16px;border:1px solid var(--bdr);border-radius:var(--r);font-size:14px;background:var(--bg);transition:border .2s;outline:none}
.vv-scope .form-group input:focus, .vv-scope .form-group textarea:focus{border-color:var(--maroon)}
.vv-scope .form-group textarea{resize:vertical;min-height:100px}
.vv-scope .btn-send{width:100%;padding:14px;background:var(--maroon);color:#fff;border:none;border-radius:var(--r);font-size:15px;font-weight:700;transition:all .2s}
.vv-scope .btn-send:hover{background:var(--maroon-d)}
.vv-scope .contact-map{border-radius:var(--rl);overflow:hidden;border:1px solid var(--bdr);min-height:400px}
.vv-scope .contact-map iframe{width:100%;height:100%;min-height:400px;border:none}
.vv-scope .faq{margin-top:40px}
.vv-scope .faq-item{background:var(--card);border:1px solid var(--bdr);border-radius:var(--r);margin-bottom:8px;overflow:hidden}
.vv-scope .faq-q{padding:16px 20px;font-size:14px;font-weight:600;display:flex;justify-content:space-between;align-items:center;cursor:pointer;transition:background .2s}
.vv-scope .faq-q:hover{background:rgba(123,24,24,.02)}
.vv-scope .faq-q .arrow{transition:transform .2s;font-size:18px;color:var(--txt2)}
.vv-scope .faq-item.open .arrow{transform:rotate(180deg)}
.vv-scope .faq-a{max-height:0;overflow:hidden;transition:max-height .3s;padding:0 20px}
.vv-scope .faq-item.open .faq-a{max-height:200px;padding:0 20px 16px}
.vv-scope .faq-a p{font-size:13px;color:var(--txt2);line-height:1.7}

/*=== TALENT SEARCH ===*/
.vv-scope .talent-bar{background:linear-gradient(135deg,var(--maroon),#4A0E0E);border-radius:var(--rl);padding:40px;display:grid;grid-template-columns:auto 1fr auto;gap:32px;align-items:center;margin-top:48px;position:relative;overflow:hidden}
.vv-scope .talent-bar::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E") repeat}
.vv-scope .t-emb{width:100px;height:100px;background:rgba(255,255,255,.08);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:44px;position:relative;z-index:2;border:2px solid rgba(255,255,255,.1)}
.vv-scope .t-con{position:relative;z-index:2}
.vv-scope .t-con h3{font-family:var(--f-d);font-size:clamp(20px,3vw,28px);font-weight:700;color:#fff}
.vv-scope .t-con .ts{font-size:16px;color:var(--gold);font-weight:600;margin:4px 0 8px}
.vv-scope .t-con .tm{font-size:13px;color:rgba(255,255,255,.5)}
.vv-scope .t-pts{position:relative;z-index:2;display:flex;flex-direction:column;gap:10px}
.vv-scope .tp{display:flex;align-items:center;gap:8px;color:rgba(255,255,255,.8);font-size:13px;font-weight:500}
.vv-scope .tp-i{width:26px;height:26px;background:rgba(255,255,255,.08);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;flex-shrink:0}

/*=== STATS BAR ===*/
.vv-scope .stats{background:linear-gradient(135deg,var(--maroon),#4A0E0E)}
.vv-scope .stats-in{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(5,1fr);padding:0 24px}
.vv-scope .si{padding:36px 16px;text-align:center;border-right:1px solid rgba(255,255,255,.08)}
.vv-scope .si:last-child{border-right:none}
.vv-scope .si .s-ic{font-size:28px;margin-bottom:8px}
.vv-scope .si .s-n{font-family:var(--f-d);font-size:28px;font-weight:700;color:var(--gold)}
.vv-scope .si .s-l{font-size:12px;color:rgba(255,255,255,.6);margin-top:2px}

/*=== FOOTER ===*/
.vv-scope .footer{background:#1A0505;padding:56px 24px 20px}
.vv-scope .footer-in{max-width:1200px;margin:0 auto}
.vv-scope .f-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1.3fr;gap:36px;margin-bottom:36px}
.vv-scope .f-brand .f-logo{display:flex;align-items:center;gap:8px;margin-bottom:14px}
.vv-scope .f-brand .f-logo img{height:38px;background:#fff;padding:6px 12px;border-radius:8px}
.vv-scope .f-brand p{font-size:13px;color:#D4C5B0;line-height:1.7;margin-bottom:18px}
.vv-scope .socials{display:flex;gap:10px}
.vv-scope .soc{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;transition:all .25s}
.vv-scope .soc svg{width:15px;height:15px;fill:#D4C5B0;transition:fill .2s}
.vv-scope .soc:hover{background:var(--maroon-l);border-color:transparent}
.vv-scope .soc:hover svg{fill:#fff}
.vv-scope .f-col h4{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:#fff;margin-bottom:14px}
.vv-scope .f-col a{display:block;font-size:13px;color:#D4C5B0;padding:4px 0;transition:color .2s}
.vv-scope .f-col a:hover{color:var(--gold)}
.vv-scope .fc-item{display:flex;align-items:flex-start;gap:10px;margin-bottom:10px;font-size:13px;color:#D4C5B0}
.vv-scope .fc-ic{width:26px;height:26px;background:rgba(255,255,255,.06);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px}
.vv-scope .fc-ic svg{width:12px;height:12px;fill:#D4C5B0}
.vv-scope .f-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:18px;text-align:center;font-size:12px;color:rgba(255,255,255,.3)}

/*=== BUTTONS ===*/
.vv-scope .btn-p{display:inline-flex;align-items:center;gap:8px;padding:12px 24px;background:var(--maroon);color:var(--on-p);border-radius:var(--r);font-weight:600;font-size:14px;border:none;transition:all .2s}
.vv-scope .btn-p:hover{background:var(--maroon-d)}
.vv-scope .btn-o{display:inline-flex;align-items:center;gap:8px;padding:12px 24px;border:2px solid var(--maroon);color:var(--maroon);border-radius:var(--r);font-weight:600;font-size:14px;background:transparent;transition:all .2s}
.vv-scope .btn-o:hover{background:var(--maroon);color:var(--on-p)}

/*=== WHATSAPP FAB ===*/
.vv-scope .wa-fab{position:fixed;bottom:24px;right:24px;z-index:999;width:56px;height:56px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(37,211,102,.3);transition:all .25s}
.vv-scope .wa-fab:hover{transform:scale(1.1);box-shadow:0 6px 24px rgba(37,211,102,.4)}
.vv-scope .wa-fab svg{width:28px;height:28px;fill:#fff}


/*=== LANGUAGE SELECTOR ===*/
.vv-scope .lang-sel{display:flex;gap:0;border:1.5px solid var(--bdr);border-radius:6px;overflow:hidden}
.vv-scope .lang-btn{padding:6px 12px;font-size:12px;font-weight:600;border:none;background:transparent;color:var(--txt2);transition:all .2s;cursor:pointer;white-space:nowrap}
.vv-scope .lang-btn.on{background:var(--maroon);color:#fff}
.vv-scope .lang-btn:hover:not(.on){background:rgba(123,24,24,.06)}

/*=== ENHANCED RESPONSIVE ===*/
@media(max-width:1280px){
  .vv-scope .nav-links a{font-size:12.5px;padding:8px 8px}
  .vv-scope .nav-links{gap:2px}
}
@media(max-width:1024px){
  .vv-scope .nav-links{display:none}.vv-scope .mob-btn{display:block}
  .vv-scope .feat-in{grid-template-columns:repeat(3,1fr)}.vv-scope .fi:nth-child(n+4){display:none}
  .vv-scope .about-grid{grid-template-columns:1fr}.vv-scope .about-right{display:none}
  .vv-scope .c-grid{grid-template-columns:repeat(2,1fr)}
  .vv-scope .cd-layout{grid-template-columns:1fr}.vv-scope .cd-sidebar{position:static;max-width:400px}
  .vv-scope .what-grid{grid-template-columns:repeat(3,1fr)}
  .vv-scope .plan-hero{grid-template-columns:1fr;gap:24px}
  .vv-scope .plan-feat{grid-template-columns:repeat(3,1fr)}.vv-scope .pf:nth-child(n+4){display:none}
  .vv-scope .why-grid{grid-template-columns:repeat(3,1fr)}.vv-scope .why-card:nth-child(n+4){display:none}
  .vv-scope .incl-grid{grid-template-columns:repeat(3,1fr)}
  .vv-scope .steps-grid{grid-template-columns:repeat(2,1fr)}
  .vv-scope .talent-bar{grid-template-columns:1fr;text-align:center;padding:32px 24px}.vv-scope .t-emb{margin:0 auto}.vv-scope .t-pts{align-items:center}
  .vv-scope .stats-in{grid-template-columns:repeat(3,1fr)}.vv-scope .si:nth-child(n+4){display:none}
  .vv-scope .contact-cards{grid-template-columns:repeat(2,1fr)}
  .vv-scope .contact-layout{grid-template-columns:1fr}
  .vv-scope .vision-grid{grid-template-columns:1fr}
  .vv-scope .f-grid{grid-template-columns:repeat(2,1fr)}
  .vv-scope .demo-grid{grid-template-columns:1fr}
  .vv-scope .plan-std{grid-template-columns:1fr}
  .vv-scope .plan-cta{flex-direction:column;text-align:center;padding:28px}
  .vv-scope .subj-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:768px){
  .vv-scope .section{padding:48px 16px}
  .vv-scope .s-title{font-size:clamp(22px,5vw,28px)}
  .vv-scope .feat-in{grid-template-columns:repeat(2,1fr)}.vv-scope .fi:nth-child(n+3){display:none}
  .vv-scope .c-grid{grid-template-columns:1fr}
  .vv-scope .std-lbl{flex-direction:column;text-align:center}
  .vv-scope .stats-in{grid-template-columns:repeat(2,1fr)}.vv-scope .si:nth-child(n+3){display:none}
  .vv-scope .f-grid{grid-template-columns:1fr;gap:28px}
  .vv-scope .what-grid{grid-template-columns:repeat(2,1fr)}.vv-scope .what-item:nth-child(n+5){display:none}
  .vv-scope .contact-cards{grid-template-columns:1fr}
  .vv-scope .form-row{grid-template-columns:1fr}
  .vv-scope .incl-grid{grid-template-columns:repeat(2,1fr)}.vv-scope .incl:nth-child(n+5){display:none}
  .vv-scope .s-arr{width:34px;height:34px;font-size:16px}.vv-scope .al{left:8px}.vv-scope .ar{right:8px}
  .vv-scope .plan-cta h3{font-size:20px}
  .vv-scope .subj-grid{grid-template-columns:repeat(2,1fr)}.vv-scope .subj:nth-child(n+5){display:none}
  .vv-scope .plan-feat{grid-template-columns:repeat(2,1fr)}.vv-scope .pf:nth-child(n+3){display:none}
  .vv-scope .why-grid{grid-template-columns:repeat(2,1fr)}.vv-scope .why-card:nth-child(n+3){display:none}
  .vv-scope .steps-grid{grid-template-columns:1fr 1fr}
  .vv-scope .cd-meta{flex-direction:column;gap:8px}
  .vv-scope .cd-tabs{overflow-x:auto;-webkit-overflow-scrolling:touch}
  .vv-scope .cd-tab{white-space:nowrap;flex-shrink:0}
  .vv-scope .wa-fab{width:50px;height:50px;bottom:16px;right:16px}
  .vv-scope .wa-fab svg{width:24px;height:24px}
}
@media(max-width:480px){
  .vv-scope{font-size:14px}
  .vv-scope .nav-in{height:58px}
  .vv-scope .logo-wrap img{height:34px}
  .vv-scope .section{padding:36px 12px}
  .vv-scope .s-title{font-size:22px}
  .vv-scope .feat-in{grid-template-columns:1fr}.vv-scope .fi:nth-child(n+2){display:none}
  .vv-scope .c-grid{grid-template-columns:1fr}
  .vv-scope .stats-in{grid-template-columns:1fr}.vv-scope .si:nth-child(n+2){display:none}
  .vv-scope .contact-hero{padding:28px 20px}
  .vv-scope .contact-hero h2{font-size:24px}
  .vv-scope .plan-hero{padding:24px}
  .vv-scope .plan-hero h2{font-size:26px}
  .vv-scope .talent-bar{padding:24px 16px}
  .vv-scope .t-con h3{font-size:20px}
  .vv-scope .steps-grid{grid-template-columns:1fr}
  .vv-scope .demo-play{width:48px;height:48px;font-size:22px}
  .vv-scope .what-grid{grid-template-columns:1fr}
  .vv-scope .incl-grid{grid-template-columns:1fr}
  .vv-scope .subj-grid{grid-template-columns:1fr}
  .vv-scope .plan-feat{grid-template-columns:1fr}
  .vv-scope .why-grid{grid-template-columns:1fr}
}


/* ---- Vidyavikas: floating WhatsApp button (global, outside .vv-scope) ---- */
.wa-fab{position:fixed;right:20px;bottom:20px;z-index:1000;width:56px;height:56px;border-radius:50%;background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;font-size:30px;text-decoration:none;box-shadow:0 6px 20px rgba(37,211,102,.45);transition:transform .15s ease,box-shadow .15s ease}
.wa-fab:hover{transform:scale(1.08);box-shadow:0 8px 26px rgba(37,211,102,.55);color:#fff}
@media (max-width:640px){.wa-fab{right:16px;bottom:16px;width:52px;height:52px;font-size:27px}}
