*{box-sizing:border-box;margin:0;padding:0;}

:root{
  --p1:#5b21b6;
  --p2:#7c3aed;
  --p3:#a78bfa;
  --p4:#ede9fe;
  --p5:#f5f3ff;
  --white:#ffffff;
  --text:#1e1030;
  --text2:#6b5c8a;
  --text3:#a899c0;
  --border:rgba(124,58,237,0.12);
  --shadow:rgba(91,33,182,0.12);
  --r:18px;
}

body{
  font-family:'Cairo',sans-serif;
  background:var(--p5);
  min-height:100vh;
  overflow-x:hidden;
}

body::before{
  content:'';position:fixed;inset:0;
  background:
    radial-gradient(ellipse 65% 40% at 0% 0%,rgba(124,58,237,0.09) 0%,transparent 60%),
    radial-gradient(ellipse 50% 35% at 100% 100%,rgba(91,33,182,0.07) 0%,transparent 55%);
  pointer-events:none;z-index:0;
}

/* ── HEADER ── */
.header{
  position:relative;z-index:10;
  background:linear-gradient(135deg,#3b0764 0%,#5b21b6 45%,#7c3aed 100%);
  overflow:hidden;
}
.header::before{
  content:'';position:absolute;top:-80px;right:-80px;
  width:280px;height:280px;border-radius:50%;
  background:rgba(255,255,255,0.06);pointer-events:none;
}
.header::after{
  content:'';position:absolute;bottom:-100px;left:-60px;
  width:320px;height:320px;border-radius:50%;
  background:rgba(255,255,255,0.04);pointer-events:none;
}
.header-inner{
  position:relative;z-index:2;
  max-width:960px;margin:0 auto;
  padding:44px 24px 36px;
  display:flex;flex-direction:column;align-items:center;
}

.logo-ring{
  position:relative;width:96px;height:96px;margin-bottom:16px;
}
.logo-ring::before{
  content:'';position:absolute;inset:-5px;border-radius:50%;
  background:conic-gradient(rgba(255,255,255,0.55),rgba(255,255,255,0.08),rgba(255,255,255,0.55));
  animation:spin-ring 7s linear infinite;
}
@keyframes spin-ring{to{transform:rotate(360deg);}}
.logo-ring::after{
  content:'';position:absolute;inset:-2px;border-radius:50%;
  background:linear-gradient(135deg,#5b21b6,#7c3aed);
}
.logo{
  position:relative;z-index:1;
  width:96px;height:96px;border-radius:50%;object-fit:cover;
  border:3px solid rgba(255,255,255,0.4);
  box-shadow:0 8px 30px rgba(0,0,0,0.25);
}

.main-title{
  font-size:32px;font-weight:900;color:#fff;
  letter-spacing:1.5px;text-shadow:0 2px 12px rgba(0,0,0,0.2);
}
.sub-title{font-size:12.5px;color:rgba(255,255,255,0.6);margin-top:5px;}

/* ── WELCOME BANNER ── */
#welcomeBanner{
  display:none;
  margin-top:18px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.25);
  border-radius:16px;
  padding:14px 22px;
  text-align:center;
  animation:fadeInWelcome .6s ease both;
  backdrop-filter:blur(6px);
  max-width:460px;
  width:100%;
}
@keyframes fadeInWelcome{
  from{opacity:0;transform:translateY(10px);}
  to{opacity:1;transform:translateY(0);}
}
.welcome-greeting{
  font-size:12px;
  color:rgba(255,255,255,0.6);
  margin-bottom:4px;
  letter-spacing:0.5px;
}
.welcome-name{
  font-size:20px;
  font-weight:900;
  color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,0.2);
}
.welcome-title{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:6px;
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:100px;
  padding:4px 14px;
  font-size:12px;
  font-weight:700;
  color:rgba(255,255,255,0.9);
}
.welcome-title i{font-size:11px;color:#a78bfa;}

/* Skeleton loader */
#welcomeSkeleton{
  display:none;
  margin-top:18px;
  width:260px;height:72px;border-radius:16px;
  background:rgba(255,255,255,0.1);
  position:relative;overflow:hidden;
}
#welcomeSkeleton::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(90deg,transparent 0%,rgba(255,255,255,0.12) 50%,transparent 100%);
  animation:shimmer 1.4s infinite;
  transform:translateX(-100%);
}
@keyframes shimmer{to{transform:translateX(100%);}}

.header-pills{
  display:flex;align-items:center;gap:8px;
  margin-top:18px;flex-wrap:wrap;justify-content:center;
}
.pill{
  display:inline-flex;align-items:center;gap:7px;
  padding:7px 16px;border-radius:100px;
  font-family:'Cairo',sans-serif;font-size:12.5px;font-weight:700;
  cursor:pointer;border:none;transition:all 0.2s;
}
.pill-ghost{
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.25);color:#fff;
}
.pill-ghost:hover{background:rgba(255,255,255,0.22);border-color:rgba(255,255,255,0.4);}

/* Wave */
.wave{display:block;width:100%;line-height:0;
  background:linear-gradient(135deg,#3b0764,#7c3aed);}
.wave svg{display:block;width:100%;}

/* Section head */
.section-head{
  position:relative;z-index:1;
  max-width:960px;margin:0 auto;
  padding:1.75rem 24px 1rem;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px;
}
.section-head h2{
  font-size:1.1rem;font-weight:800;color:var(--text);
  display:flex;align-items:center;gap:8px;
}
.section-head h2 i{color:var(--p2);}
.count-badge{
  background:var(--p4);border:1px solid var(--border);
  color:var(--p2);font-size:0.75rem;font-weight:700;
  padding:3px 11px;border-radius:100px;
}

/* ── CARDS ── */
.container{position:relative;z-index:1;max-width:960px;margin:0 auto;padding:0 20px 60px;}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px;}

.card-link{text-decoration:none;}
.card-link:nth-child(1) .card{animation-delay:.05s}
.card-link:nth-child(2) .card{animation-delay:.10s}
.card-link:nth-child(3) .card{animation-delay:.15s}
.card-link:nth-child(4) .card{animation-delay:.20s}
.card-link:nth-child(5) .card{animation-delay:.25s}
.card-link:nth-child(6) .card{animation-delay:.30s}
.card-link:nth-child(7) .card{animation-delay:.35s}

@keyframes cardIn{from{opacity:0;transform:translateY(18px);}to{opacity:1;transform:translateY(0);}}

.card{
  background:var(--white);border-radius:var(--r);
  padding:24px 22px 20px;
  border:1px solid var(--border);
  box-shadow:0 2px 14px var(--shadow);
  transition:transform .26s,box-shadow .26s,border-color .26s;
  display:flex;flex-direction:column;gap:10px;
  cursor:pointer;position:relative;overflow:hidden;
  animation:cardIn .5s ease both;
}
.card::before{
  content:'';position:absolute;top:0;right:0;left:0;height:3px;
  background:linear-gradient(90deg,var(--p2),var(--p3));
  border-radius:var(--r) var(--r) 0 0;
}
.card::after{
  content:'';position:absolute;bottom:-50px;left:-50px;
  width:140px;height:140px;border-radius:50%;
  background:rgba(124,58,237,0.04);
  transition:transform .4s,opacity .4s;opacity:0;
}
.card:hover{transform:translateY(-5px);box-shadow:0 12px 36px rgba(91,33,182,.16);border-color:rgba(124,58,237,.28);}
.card:hover::after{opacity:1;transform:scale(1.6);}

.icon-wrap{
  width:52px;height:52px;border-radius:14px;
  background:linear-gradient(135deg,var(--p4),#f0ebff);
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:2px;transition:transform .2s;
}
.card:hover .icon-wrap{transform:scale(1.06);}
.icon-wrap i{font-size:22px;color:var(--p2);}

.card h2{color:var(--text);font-size:17px;font-weight:800;}
.card p{color:var(--text2);font-size:13px;line-height:1.75;flex:1;}

.btn{
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:10px 16px;border-radius:11px;
  background:linear-gradient(135deg,var(--p2),#9333ea);
  color:#fff;font-family:'Cairo',sans-serif;font-weight:700;font-size:13.5px;
  margin-top:4px;transition:opacity .2s,transform .15s;
  box-shadow:0 3px 10px rgba(124,58,237,.28);
}
.btn:hover{opacity:.88;transform:translateY(-1px);}

/* Special orange */
.card.special::before{background:linear-gradient(90deg,#ea580c,#fb923c);}
.card.special .icon-wrap{background:linear-gradient(135deg,#fff3ee,#fff8f5);border-color:rgba(234,88,12,.15);}
.card.special .icon-wrap i{color:#ea580c;}
.card.special .btn{background:linear-gradient(135deg,#ea580c,#fb923c);box-shadow:0 3px 10px rgba(234,88,12,.28);}
.card.special:hover{box-shadow:0 12px 36px rgba(234,88,12,.14);}

.new-badge{
  position:absolute;top:14px;left:14px;
  background:linear-gradient(135deg,#ea580c,#fb923c);
  color:#fff;font-size:10.5px;font-weight:900;
  padding:3px 10px;border-radius:20px;
  animation:pulse-badge 2s infinite;
}
@keyframes pulse-badge{0%,100%{box-shadow:0 0 0 0 rgba(234,88,12,.45);}50%{box-shadow:0 0 0 7px rgba(234,88,12,0);}}

/* ── FOOTER ── */
footer{
  position:relative;z-index:1;text-align:center;
  padding:20px;color:var(--text3);font-size:12.5px;
  border-top:1px solid var(--border);background:var(--white);margin-top:8px;
}
.footer-logo{width:36px;border-radius:50%;margin-bottom:6px;opacity:.7;}
footer span{color:var(--p2);font-weight:700;}

/* ── ABOUT MODAL ── */
.about-overlay{
  position:fixed;inset:0;
  background:rgba(20,5,45,.6);
  display:none;justify-content:center;align-items:center;
  z-index:9998;backdrop-filter:blur(6px);
}
.about-overlay.active{display:flex;}
.about-modal{
  background:var(--white);border-radius:22px;
  width:92%;max-width:480px;max-height:90vh;overflow-y:auto;
  box-shadow:0 28px 70px rgba(0,0,0,.28);
  border:1px solid var(--border);
  animation:popIn .42s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn{from{transform:scale(.84) translateY(16px);opacity:0;}to{transform:scale(1) translateY(0);opacity:1;}}

.about-modal-header{
  background:linear-gradient(135deg,#3b0764,#5b21b6,#7c3aed);
  padding:28px 24px 22px;text-align:center;
  position:relative;overflow:hidden;
}
.about-modal-header::before{
  content:'';position:absolute;top:-50px;right:-50px;
  width:180px;height:180px;border-radius:50%;background:rgba(255,255,255,.06);
}
.about-logo{
  width:68px;height:68px;border-radius:50%;
  border:3px solid rgba(255,255,255,.4);object-fit:cover;
  margin-bottom:10px;position:relative;z-index:1;
}
.about-modal-header h2{color:#fff;font-size:21px;font-weight:900;margin-bottom:3px;position:relative;z-index:1;}
.about-modal-header .tagline{color:rgba(255,255,255,.65);font-size:12px;position:relative;z-index:1;}

.about-body{padding:24px 22px 20px;text-align:right;}
.about-section-title{
  color:var(--text);font-size:15px;font-weight:800;
  margin-bottom:10px;display:flex;align-items:center;gap:8px;
}
.about-section-title i{color:var(--p2);font-size:16px;}
.about-body > p{color:var(--text2);font-size:13.5px;line-height:1.85;margin-bottom:18px;}
.about-features{list-style:none;padding:0;margin-bottom:20px;}
.about-features li{
  color:var(--text2);font-size:13.5px;padding:9px 0;
  border-bottom:1px solid #f0ebff;
  display:flex;align-items:flex-start;gap:10px;
}
.about-features li:last-child{border-bottom:none;}
.about-features li i{color:var(--p2);margin-top:2px;flex-shrink:0;}

.team-section{
  background:var(--p5);border:1px solid var(--border);
  border-radius:14px;padding:14px 16px;margin-bottom:20px;
}
.team-member{display:flex;align-items:center;gap:12px;padding:9px 0;}
.team-member:not(:last-child){border-bottom:1px solid #ede9fe;}
.team-avatar{
  width:40px;height:40px;border-radius:50%;flex-shrink:0;
  background:linear-gradient(135deg,var(--p2),#9333ea);
  display:flex;align-items:center;justify-content:center;
}
.team-avatar i{color:#fff;font-size:17px;}
.team-info .name{color:var(--text);font-size:14px;font-weight:700;}
.team-info .role{color:var(--text3);font-size:12px;}

.about-close-btn{
  width:100%;padding:12px;border:none;border-radius:12px;
  background:linear-gradient(135deg,var(--p2),#9333ea);
  color:#fff;font-family:'Cairo',sans-serif;font-weight:700;font-size:14.5px;
  cursor:pointer;box-shadow:0 5px 16px rgba(124,58,237,.3);
  transition:opacity .2s,transform .15s;
}
.about-close-btn:hover{opacity:.88;transform:translateY(-1px);}

/* ── COMING SOON ── */
.coming-modal{
  display:none;position:fixed;inset:0;
  background:rgba(20,5,45,.5);z-index:1000;
  align-items:center;justify-content:center;backdrop-filter:blur(4px);
}
.coming-modal.active{display:flex;}
.coming-content{
  background:var(--white);padding:32px 28px;border-radius:20px;
  width:90%;max-width:360px;text-align:center;
  box-shadow:0 20px 50px rgba(0,0,0,.18);
  animation:popIn .32s ease;border-top:4px solid #f59e0b;
}
.coming-content i{font-size:46px;color:#f59e0b;margin-bottom:14px;}
.coming-content h3{color:var(--text);font-size:17px;font-weight:800;margin-bottom:7px;}
.coming-content p{color:var(--text2);font-size:13.5px;line-height:1.7;}
.modal-close{
  background:linear-gradient(135deg,var(--p2),#9333ea);
  color:#fff;border:none;padding:10px 28px;border-radius:11px;
  cursor:pointer;font-family:'Cairo',sans-serif;font-weight:700;font-size:13.5px;
  margin-top:18px;box-shadow:0 4px 12px rgba(124,58,237,.28);transition:opacity .2s;
}
.modal-close:hover{opacity:.88;}

@media(max-width:520px){
  .cards{grid-template-columns:1fr;}
  .main-title{font-size:26px;}
  .header-inner{padding:34px 20px 28px;}
  #welcomeBanner{padding:12px 16px;}
  .welcome-name{font-size:17px;}
}

/* ── SEARCH BAR ── */
.search-wrap{
  position:relative;z-index:1;
  max-width:960px;margin:0 auto;
  padding:0 20px 0;
}
.search-box{
  position:relative;
  display:flex;align-items:center;
}
.search-box input{
  width:100%;
  padding:14px 52px 14px 20px;
  border-radius:14px;
  border:1.5px solid var(--border);
  background:#fff;
  font-family:'Cairo',sans-serif;
  font-size:14px;
  color:var(--text);
  outline:none;
  box-shadow:0 2px 12px var(--shadow);
  transition:border-color .2s, box-shadow .2s;
  direction:rtl;
}
.search-box input::placeholder{color:var(--text3);}
.search-box input:focus{
  border-color:var(--p2);
  box-shadow:0 4px 18px rgba(124,58,237,.18);
}
.search-icon{
  position:absolute;right:16px;
  color:var(--p2);font-size:17px;
  pointer-events:none;
}
.search-clear{
  position:absolute;left:14px;
  background:none;border:none;cursor:pointer;
  color:var(--text3);font-size:15px;
  display:none;transition:color .2s;
  padding:4px;
}
.search-clear:hover{color:var(--p2);}

.search-no-result{
  display:none;
  text-align:center;
  padding:32px 20px;
  color:var(--text2);
  font-size:14.5px;
}
.search-no-result i{font-size:36px;color:var(--p3);display:block;margin-bottom:10px;}
/* ── DEEP SEARCH RESULTS ── */
.deep-results{
  margin-top:10px;
  background:#fff;
  border:1.5px solid var(--border);
  border-radius:14px;
  box-shadow:0 6px 24px rgba(91,33,182,.12);
  overflow:hidden;
  max-height:420px;
  overflow-y:auto;
}
.deep-results-header{
  padding:10px 18px;
  background:var(--p4);
  font-size:12px;
  font-weight:700;
  color:var(--p1);
  border-bottom:1px solid var(--border);
  display:flex;align-items:center;gap:6px;
}
.deep-result-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 18px;
  border-bottom:1px solid rgba(124,58,237,0.07);
  text-decoration:none;
  transition:background .18s;
}
.deep-result-item:last-child{border-bottom:none;}
.deep-result-item:hover{background:var(--p5);}
.dr-icon{
  width:36px;height:36px;border-radius:10px;
  background:var(--p4);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  color:var(--p2);font-size:14px;
}
.dr-body{flex:1;min-width:0;}
.dr-title{
  font-size:13.5px;font-weight:700;color:var(--text);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.dr-section{
  font-size:11px;color:var(--p2);font-weight:600;
  background:var(--p4);padding:2px 8px;border-radius:100px;
  display:inline-block;margin-top:2px;
}
.dr-snippet{
  font-size:12px;color:var(--text2);margin-top:3px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  line-height:1.6;
}
.dr-snippet mark{
  background:rgba(124,58,237,.18);color:var(--p1);
  border-radius:3px;padding:0 2px;font-weight:700;
}
.deep-results::-webkit-scrollbar{width:5px;}
.deep-results::-webkit-scrollbar-track{background:transparent;}
.deep-results::-webkit-scrollbar-thumb{background:var(--p3);border-radius:10px;}


/* ── INSTRUCTIONS MODAL ── */
.instr-overlay{
  position:fixed;inset:0;
  background:rgba(20,5,45,.65);
  display:none;justify-content:center;align-items:center;
  z-index:9999;backdrop-filter:blur(7px);
}
.instr-overlay.active{display:flex;}

.instr-modal{
  background:var(--white);border-radius:22px;
  width:94%;max-width:600px;max-height:92vh;
  overflow:hidden;display:flex;flex-direction:column;
  box-shadow:0 32px 80px rgba(0,0,0,.32);
  border:1px solid var(--border);
  animation:popIn .42s cubic-bezier(.34,1.56,.64,1);
}

.instr-modal-header{
  background:linear-gradient(135deg,#3b0764,#5b21b6,#7c3aed);
  padding:24px 24px 20px;
  display:flex;align-items:center;gap:14px;
  position:relative;overflow:hidden;flex-shrink:0;
}
.instr-modal-header::before{
  content:'';position:absolute;top:-40px;right:-40px;
  width:160px;height:160px;border-radius:50%;background:rgba(255,255,255,.07);
}
.instr-header-icon{
  width:52px;height:52px;border-radius:14px;
  background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.25);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.instr-header-icon i{color:#fff;font-size:22px;}
.instr-header-text{position:relative;z-index:1;}
.instr-header-text h2{color:#fff;font-size:20px;font-weight:900;margin-bottom:2px;}
.instr-header-text p{color:rgba(255,255,255,.65);font-size:12px;}

.instr-close-x{
  margin-right:auto;background:rgba(255,255,255,.15);border:none;
  width:36px;height:36px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:#fff;font-size:16px;
  transition:background .2s;position:relative;z-index:1;
}
.instr-close-x:hover{background:rgba(255,255,255,.28);}

/* Tabs */
.instr-tabs{
  display:flex;gap:0;padding:0 20px;
  background:#fff;border-bottom:2px solid var(--p4);
  overflow-x:auto;flex-shrink:0;
}
.instr-tab{
  padding:13px 18px;border:none;background:transparent;
  font-family:'Cairo',sans-serif;font-size:13px;font-weight:700;
  color:var(--text2);cursor:pointer;white-space:nowrap;
  border-bottom:3px solid transparent;margin-bottom:-2px;
  transition:color .2s,border-color .2s;
}
.instr-tab.active{color:var(--p2);border-bottom-color:var(--p2);}
.instr-tab i{margin-left:6px;}

/* Body */
.instr-body{
  overflow-y:auto;padding:24px 22px 28px;flex:1;
  scroll-behavior:smooth;
}

.instr-section{display:none;}
.instr-section.active{display:block;animation:fadeInWelcome .3s ease both;}

/* Welcome card */
.instr-welcome-card{
  background:linear-gradient(135deg,var(--p5),#ede9fe);
  border:1px solid var(--border);border-radius:16px;
  padding:20px;margin-bottom:20px;text-align:center;
}
.instr-welcome-card h3{color:var(--p1);font-size:17px;font-weight:900;margin-bottom:6px;}
.instr-welcome-card p{color:var(--text2);font-size:13px;line-height:1.8;}

/* Rule blocks */
.instr-block{
  background:var(--p5);border:1px solid var(--border);
  border-radius:14px;padding:18px 18px 14px;margin-bottom:16px;
}
.instr-block-title{
  color:var(--p1);font-size:14px;font-weight:800;
  display:flex;align-items:center;gap:8px;margin-bottom:12px;
}
.instr-block-title i{color:var(--p2);font-size:15px;}

.instr-list{list-style:none;padding:0;display:flex;flex-direction:column;gap:9px;}
.instr-list li{
  display:flex;align-items:flex-start;gap:10px;
  color:var(--text2);font-size:13px;line-height:1.75;
  padding-bottom:9px;border-bottom:1px solid #ede9fe;
}
.instr-list li:last-child{border-bottom:none;padding-bottom:0;}
.instr-list li i{color:var(--p2);margin-top:3px;flex-shrink:0;font-size:13px;}

/* Sales rules numbered */
.sales-rule{
  background:#fff;border:1px solid var(--border);border-radius:14px;
  padding:18px 18px 14px;margin-bottom:14px;
  position:relative;overflow:hidden;
}
.sales-rule::before{
  content:'';position:absolute;top:0;right:0;left:0;height:3px;
  background:linear-gradient(90deg,var(--p2),var(--p3));
}
.sales-rule-num{
  position:absolute;top:14px;left:14px;
  width:28px;height:28px;border-radius:50%;
  background:linear-gradient(135deg,var(--p2),#9333ea);
  color:#fff;font-size:12px;font-weight:900;
  display:flex;align-items:center;justify-content:center;
}
.sales-rule h4{
  color:var(--p1);font-size:14px;font-weight:800;margin-bottom:7px;
  padding-left:38px;
}
.sales-rule p{color:var(--text2);font-size:13px;line-height:1.75;}

/* Golden rules */
.golden-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px;
}
.golden-item{
  background:#fff;border:1px solid var(--border);border-radius:12px;
  padding:14px;text-align:center;font-size:13px;font-weight:700;
  color:var(--text);display:flex;flex-direction:column;gap:6px;
}
.golden-item .g-emoji{font-size:24px;}
.golden-item p{font-size:11.5px;font-weight:500;color:var(--text2);}

/* Upselling */
.upsell-tip{
  background:#fff;border:1px solid var(--border);border-radius:12px;
  padding:16px;margin-bottom:12px;
}
.upsell-tip h4{
  color:var(--p1);font-size:13.5px;font-weight:800;
  margin-bottom:8px;display:flex;align-items:center;gap:7px;
}
.upsell-tip h4 i{color:var(--p2);}
.upsell-tip p{color:var(--text2);font-size:13px;line-height:1.75;}

.compare-box{
  display:flex;gap:10px;margin-top:10px;
}
.compare-item{
  flex:1;padding:12px;border-radius:10px;font-size:12.5px;line-height:1.6;
  font-weight:600;text-align:center;
}
.compare-bad{background:#fef2f2;border:1px solid #fca5a5;color:#991b1b;}
.compare-good{background:#f0fdf4;border:1px solid #86efac;color:#166534;}

.cross-table{width:100%;border-collapse:separate;border-spacing:0;border-radius:12px;overflow:hidden;margin:12px 0;}
.cross-table th{background:var(--p2);color:#fff;padding:10px 14px;font-size:12.5px;text-align:right;}
.cross-table td{padding:10px 14px;background:#fff;border-bottom:1px solid var(--p4);font-size:12.5px;color:var(--text2);}
.cross-table tr:last-child td{border-bottom:none;}
.cross-table tr:hover td{background:var(--p5);}

.mistake-tag{
  display:inline-flex;align-items:center;gap:7px;
  background:#fef2f2;border:1px solid #fca5a5;color:#991b1b;
  border-radius:8px;padding:7px 12px;font-size:12.5px;font-weight:700;
  margin:4px;
}

.golden-formula{
  background:linear-gradient(135deg,var(--p1),var(--p2));
  border-radius:14px;padding:20px;color:#fff;text-align:center;margin-top:16px;
}
.golden-formula h4{font-size:15px;font-weight:900;margin-bottom:8px;}
.golden-formula p{font-size:13px;opacity:.85;line-height:1.7;}

.instr-quote{
  background:linear-gradient(135deg,var(--p5),#ede9fe);
  border-right:4px solid var(--p2);border-radius:0 12px 12px 0;
  padding:16px 18px;margin-top:16px;
  color:var(--p1);font-size:13.5px;font-weight:700;
  font-style:italic;line-height:1.8;
}

.instr-close-btn{
  width:100%;padding:13px;border:none;border-radius:12px;
  background:linear-gradient(135deg,var(--p2),#9333ea);
  color:#fff;font-family:'Cairo',sans-serif;font-weight:700;font-size:14px;
  cursor:pointer;box-shadow:0 5px 16px rgba(124,58,237,.3);
  transition:opacity .2s,transform .15s;margin-top:20px;
}
.instr-close-btn:hover{opacity:.88;transform:translateY(-1px);}

@media(max-width:520px){
  .golden-grid{grid-template-columns:1fr;}
  .instr-tab{padding:11px 12px;font-size:12px;}
}
 /* WHAT'S NEW  */
 .wnew-overlay{
  position:fixed;inset:0;
  background:rgba(20,5,45,.65);
  display:none;justify-content:center;align-items:center;
  z-index:9999;backdrop-filter:blur(7px);
}
.wnew-overlay.active{display:flex;}

.wnew-modal{
  background:var(--white);border-radius:22px;
  width:94%;max-width:520px;max-height:90vh;
  overflow:hidden;display:flex;flex-direction:column;
  box-shadow:0 32px 80px rgba(0,0,0,.32);
  border:1px solid var(--border);
  animation:popIn .42s cubic-bezier(.34,1.56,.64,1);
}

.wnew-header{
  background:linear-gradient(135deg,#3b0764,#5b21b6,#7c3aed);
  padding:24px 24px 20px;
  display:flex;align-items:center;gap:14px;
  position:relative;overflow:hidden;flex-shrink:0;
}
.wnew-header::before{
  content:'';position:absolute;top:-40px;right:-40px;
  width:160px;height:160px;border-radius:50%;background:rgba(255,255,255,.07);
}
.wnew-header-icon{
  width:52px;height:52px;border-radius:14px;
  background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.25);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.wnew-header-icon i{color:#ffd54f;font-size:22px;}
.wnew-header-text{position:relative;z-index:1;flex:1;}
.wnew-header-text h2{color:#fff;font-size:20px;font-weight:900;margin-bottom:2px;}
.wnew-header-text p{color:rgba(255,255,255,.65);font-size:12px;}

.wnew-close-x{
  background:rgba(255,255,255,.15);border:none;
  width:36px;height:36px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:#fff;font-size:16px;
  transition:background .2s;position:relative;z-index:1;flex-shrink:0;
}
.wnew-close-x:hover{background:rgba(255,255,255,.28);}

.wnew-body{
  overflow-y:auto;padding:24px 22px 28px;flex:1;
}

.wnew-item{
  background:var(--p5);
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
  margin-bottom:16px;
  position:relative;
  overflow:hidden;
  transition:box-shadow .2s;
}
.wnew-item:last-child{margin-bottom:0;}
.wnew-item::before{
  content:'';position:absolute;top:0;right:0;left:0;height:3px;
  background:linear-gradient(90deg,var(--p2),var(--p3));
}
.wnew-item:hover{box-shadow:0 6px 20px rgba(91,33,182,.12);}

.wnew-item-top{
  display:flex;align-items:flex-start;gap:14px;margin-bottom:14px;
}
.wnew-item-icon{
  width:46px;height:46px;border-radius:12px;
  background:linear-gradient(135deg,var(--p4),#f0ebff);
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.wnew-item-icon i{font-size:20px;color:var(--p2);}

.wnew-item-info{flex:1;}
.wnew-item-badge{
  display:inline-flex;align-items:center;gap:5px;
  background:linear-gradient(135deg,#ea580c,#fb923c);
  color:#fff;font-size:10px;font-weight:900;
  padding:3px 10px;border-radius:20px;
  margin-bottom:6px;
  animation:pulse-badge 2s infinite;
}
.wnew-item-title{
  color:var(--text);font-size:16px;font-weight:800;
  margin-bottom:4px;
}
.wnew-item-desc{
  color:var(--text2);font-size:13px;line-height:1.75;
}

.wnew-steps{
  background:#fff;border:1px solid var(--border);
  border-radius:12px;padding:14px 16px;
  margin-bottom:14px;
}
.wnew-steps h4{
  color:var(--p1);font-size:13px;font-weight:800;
  margin-bottom:10px;
  display:flex;align-items:center;gap:7px;
}
.wnew-steps h4 i{color:var(--p2);}
.wnew-steps ul{
  list-style:none;padding:0;
  display:flex;flex-direction:column;gap:8px;
}
.wnew-steps ul li{
  display:flex;align-items:flex-start;gap:9px;
  color:var(--text2);font-size:12.5px;line-height:1.65;
}
.wnew-steps ul li i{color:var(--p2);margin-top:2px;font-size:12px;flex-shrink:0;}

.wnew-cta{
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 20px;border-radius:12px;
  background:linear-gradient(135deg,var(--p2),#9333ea);
  color:#fff;font-family:'Cairo',sans-serif;font-weight:700;font-size:14px;
  text-decoration:none;
  box-shadow:0 4px 14px rgba(124,58,237,.28);
  transition:opacity .2s,transform .15s;
  margin-top:4px;
}
.wnew-cta:hover{opacity:.88;transform:translateY(-1px);}

.wnew-close-btn{
  width:100%;padding:12px;border:none;border-radius:12px;
  background:linear-gradient(135deg,var(--p2),#9333ea);
  color:#fff;font-family:'Cairo',sans-serif;font-weight:700;font-size:14px;
  cursor:pointer;box-shadow:0 4px 14px rgba(124,58,237,.28);
  transition:opacity .2s,transform .15s;
  margin-top:20px;
}
.wnew-close-btn:hover{opacity:.88;transform:translateY(-1px);}