.stages{
    margin:0;
    font-family:'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    background:#FBFAFD;
    -webkit-font-smoothing:antialiased;
	  --purple: #4A1A7A;
    --purple-dark: #35105A;
    --purple-tint: #F4EFFA;
    --ink: #1E1B24;
    --muted: #6B6577;
    --line: #E7E1F0;
    --orange: #FF7A50;
    --orange-tint: #FFEDE6;
    --white: #FFFFFF;
	 --night-blue: #001441;
    --purple: #6958C2;
    --purple-light: #f0eefb;
    --white: #FFFFFF;
    --gray-border: #e5e7eb;
    --gray-text: #6b7a99;
    font-size: 1.2em;
    color: var(--night-blue);
  }

  .stages{
    display:grid;gap:0;
    border:1px solid var(--line);border-radius:20px;overflow:hidden;background:var(--white);
  }
.stages.stag-two-third{
	grid-template-columns:2fr 1fr;
}
.stages.stag-one-half{
	grid-template-columns:1fr 1fr;
}
.stages.stag-full{
	grid-template-columns:1fr;
}
  .stage{padding:36px 32px;}
  .stage:first-child{background:var(--purple-tint);}
  .stage:last-child{border-left:1px solid var(--line);}
  .stage-intro .stage-head{min-height:190px;}
.stage-intro .stage-head.no-head{
	min-height:unset;
}
  .stage-head{margin-bottom:6px;}
  .stage-tag{
        background: var(--purple);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: .5px;
	  text-transform:uppercase;
  }
  .stage-head.center{text-align:center;}
  .stage-head.center .stage-sub{margin-left:auto;margin-right:auto;}
  .stage-head h2{font-size:19px;margin:12px 0 0;font-weight:700;line-height:1.3;}
  .stage-sub{   
	      margin: 10px 0 28px;
    max-width: 420px;
    color: var(--gray-text);
    margin-bottom: 10px;
    font-size: 1.08rem;
}

  /* Grid */
  .cards{display:grid;gap:22px;}
  .cards.one{grid-template-columns:minmax(0,1fr);}
  .cards.two{grid-template-columns:repeat(2,minmax(0,1fr));}
.cards.three{grid-template-columns:repeat(3,minmax(0,1fr));}
.cards.four{grid-template-columns:repeat(4,minmax(0,1fr));}

  /* Card */
  .card{
    position:relative;background:var(--white);border:1px solid var(--line);
    border-radius:16px;padding:32px 28px 28px;display:flex;flex-direction:column;
    transition:box-shadow .2s ease, transform .2s ease;
  }
  .card:hover{box-shadow:0 12px 32px rgba(74,26,122,.10);transform:translateY(-2px);}
  .card.featured{border:2px solid var(--purple);box-shadow:0 16px 40px rgba(74,26,122,.14);}
  .card.urgent{border:2px solid var(--purple);box-shadow:0 16px 40px rgba(74,26,122,.14);}

  .badge-top{
    position:absolute;top:-13px;left:28px;font-size:11px;font-weight:700;
    letter-spacing:.06em;text-transform:uppercase;color:var(--white);
    padding:5px 14px;border-radius:20px;
  }
  .badge-top.purple{background:var(--purple);}
  .badge-top.orange{background:var(--purple);}
  
  .card-eyebrow{
	      font-size: 0.936rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--night-blue);
    margin-bottom: 12px;
   }
  .card h3{
	  font-size:19px;margin:0 0 8px;font-weight:700; min-height:46px;}
  .card .desc{
	      font-size: 0.96rem;
    color: var(--gray-text);
    line-height: 1.5;
    margin-bottom: 18px;
    min-height: 81px;}

  .price-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

  .strike{
	      display: block;
    font-size: 1.02rem;
    color: #9ca3af;
    text-decoration: line-through;
    min-height: 20px;
	  margin-right:0px;
    margin-bottom: 2px;
}
  .off-pill{
        background: #FAA18F;
    width: 100px;
    border-radius: 14px;
    font-size: 14px;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
	  text-align:center;
  }
  .stages .price-main {
	  display:flex;align-items:baseline;gap:6px;margin:10px 0 2px;}
  .price-main .cur{
	      font-size: 1.14rem;
    font-weight: 600;
    vertical-align: top;
    margin-top: 7px;
    display: inline-block;
   }
  .price-main .amt{
	     font-size: 2.64rem;
    font-weight: 800;
    color: var(--night-blue);
    line-height: 1;
}
  .price-note{
	      font-size: 0.864rem;
    color: var(--gray-text);
    margin-bottom: 20px;
}
  .price-note .vat{color:var(--muted);}

  .stages .cta{
        display: block;
    width: 100%;
    padding: 13px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.056rem;
    cursor: pointer;
    border: none;
    transition: .2s;
    text-align: center;
	      background: white;
    border: 2px solid var(--purple);
    color: var(--purple);
	   margin-bottom:26px;
  }
  .stages .cta:hover{
	 background:#6858c2;
	     color: var(--white);
}
  .stages .cta.solid{
	      background: var(--purple);
    color: var(--white);
	 
}
  .stages .cta.solid:hover{
	      background: var(--purple-dark);
}
  .cta.orange-solid{background:var(--orange);border-color:var(--orange);color:var(--white);}
  .cta.orange-solid:hover{background:#E8663D;}

  .who-for{
    background:var(--purple-tint);border-radius:10px;padding:12px 14px;margin-bottom:20px;
  }
  .who-for .label{
    font-size:10.5px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;
    color:var(--purple);margin-bottom:4px;display:flex;align-items:center;gap:6px;
  }
  .who-for .label::before{}
  .who-for p{margin:0;font-size:12.5px;line-height:1.5;color:var(--ink);}
  .feat-heading{
    font-size: 0.984rem;
    font-weight: 700;
    color: var(--night-blue);
    margin-bottom: 14px;	  
}
  .feat-group{
	      font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #9ca3af;
    margin: 0px 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
	  }
  .feat-group::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--purple);flex:none;}
  ul.feats{list-style:none;margin:0 0 4px;padding:0;}
  ul.feats li{
    position:relative;padding-left:24px;
	     font-size: 0.85rem;
    color: #374151;
    margin-bottom: 9px;
    line-height: 1.45;
  }
  ul.feats li::before{
    content:"✓";position:absolute;left:0;top:0;color:var(--purple);font-weight:700;font-size:13px;
  }

.stages .toggle-wrap {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.stages .center .toggle-wrap{
	justify-content:center;
} 

.stages .toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.stages  .toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-text);
}

.stages  .toggle-label.active {
    color: var(--night-blue);
}

.stages .save-badge {
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.stages .slider:before {
    content: '';
    position: absolute;
    width: 19px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: .3s;
}

.stages  .toggle {
    position: relative;
    width: 50px;
    height: 24px;
}
 .stages .deskt {
    display: block;
}
.stages .mobil {
        display: none;
    }
.bcl-mobile {
    display: none;
}
.stages .nav-row{
	display:none;
}
  @media (max-width:900px){
    .stages{grid-template-columns:1fr;}
    .stage:last-child{border-left:none;border-top:1px solid var(--line);}
  
}
@media (max-width:768px){
	
.stages .nav-row{
	        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 14px;
}
	
.stages .nav-btn {
        background: white;
        border: 1px solid var(--gray-border);
        border-radius: 8px;
        padding: 8px 18px;
        font-size: 0.96rem;
        font-weight: 700;
        color: var(--purple);
        cursor: pointer;
        transition: .2s;
    }	

.stages .nav-btn:disabled {
        opacity: .3;
        cursor: default;
        background: white;
    }
	
.stages .nav-dots {
        display: flex;
        gap: 6px;
    }
	
.stages .nav-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gray-border);
        cursor: pointer;
        transition: .2s;
    }	
	
.stages .nav-dot.active {
        background: var(--purple);
        width: 20px;
        border-radius: 4px;
    }
	
	.stages.stag-two-third{
	grid-template-columns:1fr;
}
.stages.stag-one-half{
	grid-template-columns:1fr;
}
.stages.stag-full{
	grid-template-columns:1fr;
}
	.stages  .deskt {
        display: none !important;
    }
	
.stages .toggle {
        width: 43px !important;
    }
.stages 	.mobil {
        display: block;
    }
	.stages .slider:before {
        top: 3px;
        height: 18px !important;
        width: 18px !important;
    }
	.stage{
		    padding: 36px 10px;
	}
	.bcl-mobile {
        display: block;
    }
	.stages .plan-tabs {
        display: flex;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid var(--gray-border);
        background: white;
        margin-bottom: 16px;
    }
	.stages .tab {
        flex: 1;
        padding: 10px 4px;
        text-align: center;
        font-size: 0.95rem;
        font-weight: 700;
        text-transform: normal;
        letter-spacing: 0px;
        color: var(--gray-text);
        cursor: pointer;
        border-right: 1px solid var(--gray-border);
        transition: .2s;
        background: white;
        border-top: 3px solid transparent;
		border-bottom: 0px solid transparent;
    }
	.stages .tab.active {
        color: var(--purple);
        border-top: 3px solid var(--purple);
        background: var(--purple-light);
    }
	.cards.two{grid-template-columns:1fr;}
	.cards.three{grid-template-columns:1fr;}
	.cards.four{grid-template-columns:1fr;}
	.stags-tabs-active .card:not(.active) {
    display: none;
}
}
  @media (max-width:560px){
    
  }