/* ==========================
   GrowNext Onboarding CSS
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f4f4f4;
    color:#111;
    padding:0;
}

.onboarding-container{
    max-width:900px;
    margin:auto;
    background:#fff;
    border-radius:22px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.onboarding-header{
    background:#000;
    color:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    margin-bottom:30px;
}

.onboarding-header h1{
    font-size:34px;
    margin-bottom:10px;
}

.onboarding-header p{
    color:#d5d5d5;
    font-size:15px;
}

.onboarding-section{
    margin-bottom:30px;
}

.onboarding-section h2{
    font-size:23px;
    border-left:5px solid #000;
    padding-left:12px;
    margin-bottom:18px;
}

.onboarding-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:bold;
}

input,
select,
textarea{
    width:100%;
    padding:14px;
    border:1px solid #d0d0d0;
    border-radius:12px;
    font-size:15px;
    margin-bottom:16px;
    transition:.3s;
}

input:focus,
select:focus,
textarea:focus{
    outline:none;
    border-color:#000;
    box-shadow:0 0 0 3px rgba(0,0,0,.08);
}

textarea{
    min-height:100px;
    resize:vertical;
}

.goals{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.goals label{
    background:#f6f6f6;
    border-radius:12px;
    padding:12px;
    cursor:pointer;
}

.goals input{
    width:auto;
    margin-right:8px;
}

.paymentBox{
    background:#111;
    color:#fff;
    padding:22px;
    border-radius:18px;
}

.paymentBox p{
    margin-bottom:10px;
    color:#ddd;
}

.note{
    background:#fff7cc;
    color:#6a5200;
    padding:15px;
    border-radius:12px;
    margin-top:15px;
}

.onboarding-btn-old{
    width:100%;
    border:none;
    border-radius:14px;
    padding:17px;
    font-size:17px;
    font-weight:bold;
    cursor:pointer;
    margin-top:12px;
    transition:.3s;
}

.whatsapp{
    background:#25D366;
    color:#fff;
}

.whatsapp:hover{
    background:#20ba5a;
}

.pay{
    background:#000;
    color:#fff;
}

.pay:hover{
    background:#333;
}

.onboarding-card-footer {
    margin-top: 35px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

@media(max-width:768px){

.onboarding-row{
grid-template-columns:1fr;
}

.goals{
grid-template-columns:1fr;
}

.onboarding-container{
margin:120px 15px 30px 15px !important;
padding:22px;
}

.onboarding-header{
padding:25px;
}

.onboarding-header h1{
font-size:28px;
}

}
















/* ==========================
   GrowNext Index CSS
========================== */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  background: linear-gradient(135deg, #f7f7f7, #ffffff);
  color: #111;
  padding: 22px;
}

.wrapper {
  max-width: 1250px;
  margin: auto;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 42px;
  font-weight: 900;
}

.header span {
  background: #000;
  color: #fff;
  padding: 3px 12px;
  border-radius: 50px;
}

.header p {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
}

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  background: #fff;
  border: 2px solid #111;
  border-radius: 22px;
  padding: 24px 22px;
  overflow: hidden;
  transition: .3s;
}

.card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 170px;
  height: 170px;
  background: #000;
  border-radius: 50%;
  opacity: .05;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.popular {
  background: #000;
  color: #fff;
  position: absolute;
  top: 14px;
  right: -42px;
  transform: rotate(45deg);
  padding: 7px 44px;
  font-size: 11px;
  font-weight: 800;
}

.price {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 16px;
}

.plan {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 6px;
}

.tagline {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.features {
  list-style: none;
}

.features li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 13.5px;
}

.features li::before {
  content: "✓";
  background: #000;
  color: #fff;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 10px;
}

.bonus {
  margin-top: 16px;
  background: #f4f4f4;
  border: 1.5px dashed #000;
  border-radius: 16px;
  padding: 14px;
}

.bonus h3 {
  font-size: 15px;
  margin-bottom: 7px;
}

.bonus p {
  margin: 4px 0;
  font-size: 13px;
  font-weight: 600;
}

.get-started-btn {
  width: 100%;
  margin-top: 13px;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 11px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

.get-started-btn:hover {
  background: #fff;
  color: #000;
}

a {
  text-decoration: none;
}

.why {
  margin-top: 45px;
  background: #111;
  color: #fff;
  border-radius: 22px;
  padding: 28px;
  text-align: center;
}

.why h2 {
  font-size: 32px;
  margin-bottom: 22px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.why-box {
  background: #fff;
  color: #000;
  padding: 16px;
  border-radius: 16px;
  font-weight: 700;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
}

.mission {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  background: #f6f6f6;
  border-radius: 22px;
  padding: 28px;
}

.mission h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.mission p {
  color: #444;
  line-height: 1.6;
  font-size: 15.5px;
}

.chart {
  height: 180px;
  display: flex;
  align-items: end;
  gap: 14px;
  justify-content: center;
}

.bar {
  width: 38px;
  background: #000;
  border-radius: 10px 10px 0 0;
}

.bar:nth-child(1) { height: 40px; }
.bar:nth-child(2) { height: 70px; }
.bar:nth-child(3) { height: 100px; }
.bar:nth-child(4) { height: 135px; }
.bar:nth-child(5) { height: 170px; }

.onboarding-footer-old {
  margin-top: 24px;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-size: 13px;
}

@media(max-width:768px) {
  body {
    padding: 14px;
  }

  .wrapper {
    padding: 20px;
  }

  .header h1 {
    font-size: 32px;
  }

  .packages {
    grid-template-columns: 1fr;
  }

  .mission {
    grid-template-columns: 1fr;
  }
}





.premium-pay-btn{
  width:100%;
  margin-top:20px;
  padding:6px;
  border:none;
  border-radius:18px;
  background:#000;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  transition:.3s ease;
}

.premium-pay-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 55px rgba(0,0,0,.28);
}

.pay-left{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  text-align:left;
}

.pay-icon{
  width:48px;
  height:48px;
  border-radius:14px;
  background:#fff;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.pay-left strong{
  display:block;
  font-size:17px;
  font-weight:800;
  letter-spacing:.2px;
}

.pay-left small{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:#bdbdbd;
  font-weight:500;
}

.pay-right{
  height:62px;
  padding:0 26px;
  border-radius:14px;
  background:#fff;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:16px;
  font-weight:800;
  white-space:nowrap;
  transition:.3s ease;
}

.premium-pay-btn:hover .pay-right{
  background:#f1f1f1;
  padding-right:34px;
}

@media(max-width:600px){
  .premium-pay-btn{
    flex-direction:column;
    align-items:stretch;
  }

  .pay-right{
    width:100%;
  }

  .pay-left strong{
    font-size:15px;
  }
}


.onboarding-logo-old{
    width:190px;
    display:block;
    margin:0 auto 10px;
    filter:drop-shadow(0 10px 25px rgba(0,0,0,.15));
    transition:.3s;
}

.onboarding-logo-old:hover{
    transform:scale(1.05);
}


.header{
    text-align:center;
    margin-bottom:50px;
}

.onboarding-logo-old{
    width:300px;
    max-width:90%;
    display:block;
    margin:0 auto 20px;
    object-fit:contain;
    transition:.3s ease;
    filter:drop-shadow(0 10px 20px rgba(0,0,0,.08));
}

.onboarding-logo-old:hover{
    transform:scale(1.03);
}

.header h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:12px;
}

.header p{
    font-size:17px;
    color:#666;
}

/* Premium Step-by-Step Checkout Process Grid */
.checkout-process-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 18px;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: #18181b;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(4px);
}

.step-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h4 {
  margin: 0 0 3px 0;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.step-content p {
  margin: 0;
  font-size: 13px;
  color: #a1a1aa;
  line-height: 1.4;
}


