@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Inter Tight", "Inter Tight Fallback";
}

body{
  /* background:#f4f4f4; */
    font-family: "Inter Tight", "Inter Tight Fallback";
  /* padding:40px 20px; */
}

.calculator-wrapper{
  max-width: 700px;
  margin:auto;
  width: 100%;
}

.calculator-card{
  background:#fff;
  border-radius:24px;
  padding:40px;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.top-bar{
  display:flex;
  justify-content:flex-end;
  margin-bottom:20px;
}

.badge{
  color:#3157d5;
  font-size:13px;
  font-weight:700;
}

h1{
  font-size:42px;
  margin-bottom:40px;
}

.section{
  margin-bottom:35px;
}

.section-label{
  display:block;
  font-size:13px;
  font-weight:700;
  color:#8b8b8b;
  margin-bottom:18px;
  letter-spacing:1px;
}

.option-grid{
  display:grid;
  gap:15px;
}

.option-grid.two{
  grid-template-columns: 1fr;
}

.option-grid.three{
  /* grid-template-columns: 1fr 1fr 1fr; */
}

.option-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  /* flex-direction: row; */
  flex-wrap: wrap;
  justify-content: center;
}

.option-btn{
  border:2px solid #d9d9d9;
  background:#fff;
  border-radius:16px;
  padding:15px;
  font-size:16px;
  cursor:pointer;
  transition:0.2s;
  text-align: center;
}

.option-btn span{
  display:block;
  margin-top:6px;
  font-size:13px;
  color:#6c6c6c;
  margin-bottom: 6px;
}

.option-btn.active{
  border-color:#3157d5;
  background:#f3f6ff;
}

.option-btn:hover{
  border-color:#3157d5;
}

.hidden{
  display:none;
}

.estimate-box{
  margin-top: 20px;
  padding-top: 20px;
  border-top:1px solid #e3e3e3;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.estimate-left{
  font-size:24px;
  font-weight:700;
}

.estimate-right{
  font-size: 40px;
  font-weight:800;
}

.disclaimer{
  margin-top:20px;
  color:#777;
  line-height:1.5;
  font-size:14px;
}

.submit-btn{
  margin-top:35px;
  width:100%;
  background:#111;
  color:#fff;
  border:none;
  border-radius:14px;
  padding:20px;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}

.submit-btn:hover{
  opacity:0.9;
}
/* =========================
   HEADER
========================= */

.calculator-header {
  margin-bottom: 38px;
}

.calculator-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2d5bff;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.calculator-header h1 {
  font-size: 36px;
  line-height: 1.08;
  font-weight: 800;
  color: #111;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.calculator-subheading {
  font-size: 17px;
  line-height: 1.7;
  color: #666;
  max-width: 540px;
}


/* =========================
   SECTION HEADINGS
========================= */

.section-heading {
  margin-bottom: 18px;
}

.section-heading h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.section-heading p {
  font-size: 16px;
  line-height: 1.6;
  color: #777;
}


/* =========================
   CARD SPACING
========================= */

.calculator-card {
  padding: 48px;
  border-radius: 28px;
}


/* =========================
   BUTTONS
========================= */

.option-btn {
  transition: all 0.25s ease;
  border: 1px solid #d8d8d8;
  background: #f9fafb;
  color: #0a3270;
  border: 1px solid #ddd;
  border-radius: 60px;
  transition: 0.3s all ease;
}

.option-btn:hover {
  border-color: #2d5bff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 91, 255, 0.08);
  background: #1e4e8c;
  color: #fff;
  transition: 0.3s all ease;
}

.option-btn.active {
  background: #f4f7ff;
  border-color: #2d5bff;
  box-shadow: 0 8px 20px rgba(45, 91, 255, 0.10);
}


/* =========================
   ESTIMATE SECTION
========================= */

.estimate-section {
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid #e8e8e8;
}

.estimate-left {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.estimate-price {
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: #111;
}

.disclaimer {
  margin-top: 9px;
  font-size: 16px;
  line-height: 1.7;
  color: #777;
}


/* =========================
   CTA BUTTON
========================= */

.submit-btn {
  margin-top: 18px;
  height: 64px;
  border-radius: 36px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}


/* =========================
   OPTION GROUP SPACING
========================= */

.option-group {
  margin-bottom: 34px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .calculator-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .calculator-header {
    margin-bottom: 20px;
  }

  .calculator-header h1 {
    font-size: 34px;
    line-height: 1.12;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
  }

  .calculator-subheading {
    font-size: 15px;
    line-height: 1.6;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .section-heading h3 {
    font-size: 17px;
  }

  .section-heading p {
    font-size: 13px;
  }

  .estimate-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .estimate-price {
    font-size: 54px;
  }

  .submit-btn {
    height: 58px;
    font-size: 16px;
  }

  .option-group {
    margin-bottom: 28px;
  }

}
@media(max-width:768px){

  .calculator-card{
    padding:25px;
  }

  h1{
    font-size:32px;
  }

  .option-grid.two button.option-btn {
    width: 100%;
  }
  .option-list {
    flex-direction: column;
  }
  .option-grid.three button.option-btn span {
    margin-bottom: 0;
  }
  .option-btn {
    width: 100%;
  }
  .option-grid.three button.option-btn {
      width: 100%;
  }
  .estimate-box{
    flex-direction:column;
    align-items:flex-start;
    gap: 5px;
  }
    .option-grid.three.steep-ques {
        grid-template-columns: auto;
    }
    .option-grid.three.steep-ques button.option-btn span {
        margin-bottom: 5px;
    }
    .option-grid.three.steep-ques button.option-btn span br {
        display: none;
    }
  .estimate-right{
    font-size: 32px;
  }

}
/* =========================
   ANNUAL PLAN
========================= */

.annual-extras {
  margin-top: 28px;
}

.compare-box {
  margin-top: 24px;
}

.compare-label {
  font-size: 14px;
  color: #777;
  margin-bottom: 6px;
}

.compare-price {
  font-size: 28px;
  font-weight: 700;
  color: #999;
  text-decoration: line-through;
}

.savings-box {
  margin-top: 5px;
  background: #eefbf3;
  border: 1px solid #bfe8cc;
  color: #127a3d;
  padding: 18px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
}

.savings-box span {
  font-weight: 800;
}

.benefits-box {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #ececec;
}

.benefit-item {
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
}
.benefits-heading {
  margin-top: 28px;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}
/* LEAD FLOW */

.step {

  width: 100%;

  animation: fadeUp .35s ease;

}

.progress-bar {

  width: 100%;
  height: 4px;
  background: #e6e6e6;
  border-radius: 30px;
  margin-bottom: 35px;
  overflow: hidden;

}

.progress-fill {

  height: 100%;
  background: #3b4fc4;
  border-radius: 30px;
  transition: width .35s ease;

}

.question {font-size: 34px;font-weight: 700;line-height: 1.2;text-align: center;margin-bottom: 15px;color: #111;}
.step.fade-in p#calculatorSubheading {
    text-align: center;
    margin-bottom: 15px;
}
.inputs {

  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 35px;

}

.inputs input {

  width: 100%;
  height: 68px;
  padding: 0 24px;
  border: 2px solid #d9d9d9;
  border-radius: 40px;
  background: #fff;
  font-size: 18px;
  outline: none;
  transition: .25s ease;

}

.inputs input:focus {

  border-color: #3b4fc4;
  box-shadow:
    0 0 0 4px
    rgba(59,79,196,.12);

}

.btn-box {display: flex;justify-content: space-between;align-items: center;gap: 15px;margin-top: 15px;}

.ok-btn {background: #111;color: #fff;border: none;border-radius: 32px;padding: 18px 42px;font-size: 17px;font-weight: 700;cursor: pointer;transition: .25s ease;}

.ok-btn:hover {

  transform: translateY(-2px);

  box-shadow:
    0 14px 28px
    rgba(0,0,0,.14);

}

.nav {display: flex;gap: 12px;margin-top: 0rem;}

.nav-btn {width: 36px;height: 36px;border: none;border-radius: 8px;background: #1e3a8a;color: #fff;font-size: 14px;cursor: pointer;transition: .25s ease;}

.nav-btn:hover {

  transform: translateY(-2px);

}

.fade-in {

  animation: fadeUp .35s ease;

}

@keyframes fadeUp {

  from {

    opacity: 0;
    transform: translateY(10px);

  }

  to {

    opacity: 1;
    transform: translateY(0);

  }

}


/* MOBILE */

@media (max-width:768px) {

  .question {

    font-size: 28px;
    margin-bottom: 25px;

  }

  .inputs input {height: 50px;font-size: 16px;width: 100%;} 
  .inputs input#company {
    width: 100%;
  }
  .inputs {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .btn-box {flex-direction: column-reverse;align-items: stretch;margin-top: 1rem;}

  .ok-btn {

    width: 100%;

  }

}
/* SUCCESS */

.success-step {

  text-align: center;
  padding: 40px 10px;

}

.success-icon {

  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #eef8f0;
  color: #1d9c49;
  font-size: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;

}

.success-step h2 {

  font-size: 34px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;

}

.success-step p {

  font-size: 18px;
  line-height: 1.7;
  color: #666;
  max-width: 620px;
  margin:
    0 auto
    35px;

}

@media(max-width:768px){

  .success-step h2 {

    font-size: 28px;

  }

  .success-step p {

    font-size: 16px;

  }

}
/* STEP FLOW */

.hidden-step {

  display:none;

}

.fade-step {

  animation:
    fadeStep .45s ease;

}

@keyframes fadeStep {

  from {

    opacity:0;
    transform:
      translateY(18px);

  }

  to {

    opacity:1;
    transform:
      translateY(0);

  }

}
.compare-box,.benefits-box,span.calculator-badge {
    display: none;
}
.option-btn:hover span {
    color: #fff;
    opacity: 70%;
}
.option-grid.three.steep-ques button.option-btn {
    border-radius: 10px;
}