 /* ── PLAN PAGE STYLES ── */
 :root {
   --yellow: #d4c800;
   --yellow-dim: rgba(212, 200, 0, 0.10);
   --green: #3ddc84;
   --red: #ff5f5f;
   --card-bg: #1a1a1a;
   --card-inner: #222;
   --border: rgba(255, 255, 255, 0.08);
   --muted: rgba(255, 255, 255, 0.45);
 }

 body {
   background: #0a0a0a;
   color: #fff;
 }

 /* PAGE HEADER */
 .plans-header {
   padding: 32px 0 28px;
   /* border-bottom: 1px solid var(--border); */
 }

 .plans-header .page-tag {
   font-size: 10px;
   letter-spacing: 0.22em;
   text-transform: uppercase;
   color: var(--yellow);
   margin-bottom: 10px;
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .plans-header .page-tag::before {
   content: '';
   width: 24px;
   height: 1px;
   background: var(--yellow);
   display: block;
 }

 .live-dot {
   width: 6px;
   height: 6px;
   background: var(--green);
   border-radius: 50%;
   animation: blink 2s infinite;
   display: inline-block;
 }

 @keyframes blink {

   0%,
   100% {
     opacity: 1
   }

   50% {
     opacity: 0.3
   }
 }

 .plans-header h1 {
   font-size: 32px;
   font-weight: 800;
   line-height: 1.05;
   letter-spacing: -0.02em;
   color: #fff;
 }

 .plans-header h1 em {
   font-style: italic;
   color: var(--yellow);
 }

 .plans-header p {
   color: var(--muted);
   font-size: 15px;
   line-height: 1.7;
   margin-top: 10px;
   max-width: 560px;
 }

 /* GUIDE STRIP */
 .guide-strip {
   background: var(--card-bg);
   border: 1px solid var(--border);
   border-radius: 0;
   padding: 20px 28px;
   display: flex;
   gap: 0;
   margin-bottom: 32px;
 }

 .guide-step {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   flex: 1;
   padding-right: 32px;
   border-right: 1px solid var(--border);
   margin-right: 32px;
 }

 .guide-step:last-child {
   border-right: none;
   margin-right: 0;
   padding-right: 0;
 }

 .guide-icon {
   width: 34px;
   height: 34px;
   flex-shrink: 0;
   background: var(--yellow-dim);
   border: 1px solid rgba(212, 200, 0, 0.3);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 15px;
   color: var(--yellow);
 }

 .guide-title {
   font-size: 18px;
   font-weight: 600;
   margin-bottom: 2px;
 }

 .guide-desc {
   font-size: 16px;
   color: var(--muted);
   line-height: 1.5;
 }

 /* FILTER TABS */
 .filter-bar {
   display: flex;
   gap: 3px;
   margin-bottom: 28px;
   flex-wrap: wrap;
 }

 .filter-btn {
   font-size: 14px;
   letter-spacing: 0.13em;
   text-transform: uppercase;
   padding: 8px 18px;
   border: 1px solid var(--border);
   background: transparent;
   color: var(--muted);
   cursor: pointer;
   transition: all 0.18s;
 }

 .filter-btn:hover {
   border-color: var(--yellow);
   color: #fff;
 }

 .filter-btn.active {
   background: var(--yellow);
   color: #000;
   border-color: var(--yellow);
   font-weight: 700;
 }

 /* TIER LABEL */
 .tier-label {

   font-size: 10px;
   letter-spacing: 0.28em;
   text-transform: uppercase;
   color: var(--muted);
   margin: 44px 0 14px;
   display: flex;
   align-items: center;
   gap: 14px;
 }

 .tier-label::after {
   content: '';
   flex: 1;
   height: 1px;
   background: var(--border);
 }

 .tier-label:first-of-type {
   margin-top: 0;
 }

 /* PLANS GRID */
 .plans-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 14px;
   opacity: 0;
   transform: translateY(16px);
   transition: opacity 0.5s, transform 0.5s;
 }

 .plans-grid.visible {
   opacity: 1;
   transform: none;
 }

 /* ── PLAN CARD ── */
 .plan-card {
   background: var(--card-bg);
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   transition: border-color 0.2s, transform 0.2s;
   overflow: hidden;
   border-radius: 5px;
   ;
 }

 .plan-card:hover {
   border-color: var(--yellow);
   transform: translateY(-4px);
 }

 /* CARD HEADER */
 .card-hd {
   background: var(--yellow);
   padding: 15px 16px 13px;
   position: relative;
 }

 .card-hd.silver {
   background: linear-gradient(135deg, #b0bec5, #78909c);
 }

 .card-hd.gold-t {
   background: linear-gradient(135deg, #d4af37, #a07820);
 }

 .card-hd.vip-t {
   background: #111;
   border-bottom: 2px solid var(--yellow);
 }

 .roi-badge {
   position: absolute;
   top: 10px;
   right: 10px;

   font-size: 9px;
   font-weight: 700;
   background: rgba(0, 0, 0, 0.2);
   color: #000;
   padding: 3px 8px;
 }

 .card-hd.silver .roi-badge,
 .card-hd.gold-t .roi-badge {
   background: rgba(0, 0, 0, 0.28);
   color: #fff;
 }

 .card-hd.vip-t .roi-badge {
   background: var(--yellow);
   color: #000;
 }

 /* Plan name — bold Playfair + underline from screenshot */
 .plan-name {

   font-size: 18px;
   font-weight: 700;
   color: #000;
   text-decoration: underline;
   text-decoration-thickness: 1.5px;
   text-underline-offset: 3px;
 }

 .card-hd.silver .plan-name,
 .card-hd.gold-t .plan-name {
   color: #fff;
   text-decoration-color: rgba(255, 255, 255, 0.5);
 }

 .card-hd.vip-t .plan-name {
   color: var(--yellow);
   text-decoration: none;
 }

 /* Large min amount */
 .plan-min {

   font-size: 24px;
   font-weight: 500;
   color: #000;
   margin-top: 4px;
 }

 .plan-min sub {
   font-size: 11px;
   font-weight: 300;
   opacity: 0.6;
   vertical-align: baseline;
 }

 .card-hd.silver .plan-min,
 .card-hd.gold-t .plan-min {
   color: #fff;
 }

 .card-hd.vip-t .plan-min {
   color: #fff;
 }

 /* CARD BODY */
 .card-bd {
   padding: 16px 16px 14px;
   flex: 1;
   display: flex;
   flex-direction: column;
 }

 .spec-list {
   list-style: none;
   padding: 0;
   margin-bottom: 14px;
 }

 .spec-list li {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 15.5px;
   padding: 5px 0;
   border-bottom: 1px solid var(--border);
   color: var(--muted);
 }

 .spec-list li:last-child {
   border-bottom: none;
 }

 .spec-list li strong {
   color: #fff;
   font-weight: 500;
 }

 .rate-val {
   color: var(--yellow) !important;

   font-size: 12px;
   font-weight: 600;
 }

 .chk {
   width: 14px;
   height: 14px;
   flex-shrink: 0;
   background: var(--yellow-dim);
   border: 1px solid rgba(212, 200, 0, 0.28);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 8px;
   color: var(--yellow);
 }

 /* SLIDER */
 .s-label {

   font-size: 9px;
   letter-spacing: 0.15em;
   text-transform: uppercase;
   color: var(--muted);
   margin-bottom: 6px;
 }

 .s-row {
   display: flex;
 }

 .s-prefix {
   background: var(--card-inner);
   border: 1px solid var(--border);
   border-right: none;
   padding: 7px 10px;

   font-size: 12px;
   color: var(--muted);
 }

 .s-input {
   flex: 1;
   background: var(--card-inner);
   border: 1px solid var(--border);
   color: #fff;
   padding: 7px 10px;

   font-size: 13px;
   outline: none;
   min-width: 0;
   transition: border-color 0.2s;
 }

 .s-input:focus {
   border-color: var(--yellow);
 }

 input[type=range] {
   width: 100%;
   appearance: none;
   height: 2px;
   background: var(--border);
   outline: none;
   margin: 8px 0 4px;
   cursor: pointer;
 }

 input[type=range]::-webkit-slider-thumb {
   appearance: none;
   width: 12px;
   height: 12px;
   background: var(--yellow);
   cursor: pointer;
 }

 .s-ends {
   display: flex;
   justify-content: space-between;

   font-size: 9px;
   color: var(--muted);
   margin-bottom: 12px;
 }

 /* RETURN BOX */
 .ret-box {
   background: var(--yellow-dim);
   border: 1px solid rgba(212, 200, 0, 0.18);
   padding: 8px 12px;
   margin-bottom: 12px;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .ret-lbl {

   font-size: 9px;
   letter-spacing: 0.13em;
   text-transform: uppercase;
   color: var(--muted);
 }

 .ret-val {

   font-size: 13px;
   font-weight: 700;
   color: var(--yellow);
 }

 /* JOIN BUTTON */
 .join-btn {
   width: 100%;
   padding: 12px;
   background: var(--yellow);
   color: #000;

   font-size: 16px;
   font-weight: 700;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 6px;
   transition: opacity 0.18s, transform 0.15s;
   margin-top: auto;
 }

 .join-btn:hover {
   opacity: 0.88;
   transform: translateY(-1px);
 }

 .join-btn.silver {
   background: #90a4ae;
   color: #fff;
 }

 .join-btn.gold {
   background: #c9a84c;
   color: #000;
 }

 .join-btn.vip {
   background: var(--yellow);
   color: #000;
 }