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

h2 {
  font-size: clamp(var(--h2-size-28), 4.5vw, var(--h2-size-40));
}



/* HERO SECTION */
.hero-sec {
  background: linear-gradient(135deg, var(--bg-main) 50%, #c2dcff 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: var(--space-60) 0;
  height: calc(100vh - 80px);
}

.hero-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 20px;
  align-items: center;
  position: relative;


}

.hero::before {
  content: '';
  position: absolute;
  left: -120px;
  top: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 86, 255, .10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  animation: fadeUp .7s ease both;
}

.hero-left h1 {
  font-family: var(--heading-bold-font-family);
  font-size: clamp(var(--h2-size-32), 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.hero-left p {
  font-size: var(--p-size-18);
  font-weight: var(--font-400);
  line-height: 28px;
  letter-spacing: 5%;
  color: var(--text-primary);
  max-width: 630px;
  margin-bottom: 24px;
}

.hero-left .tagline {
  font-size: var(--p-size-16);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 36px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}


.hero-left .trust {
  font-family: 'Poppins-Regular';
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 5%;
  font-weight: var(--font-400);
  color: var(--text-primary);
  max-width: 700px;
}

.hero-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  max-width: 700px;
}

.card-head {
  background: var(--color-muted);
  color: #fff;
  padding: 10px 10px 10px 32px;
  text-align: left;
}

.card-head h2 {
  margin: 0 0 8px;
  font-size: var(--h2-size-28);
  font-weight: 700;
}

.card-head p {
  margin: 0;
  opacity: .9;
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding: 20px;
}

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #eef5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 1px solid #d7e6ff;
}

.timeline-icon.payment {
  background: #fff6ec;
  border-color: #ffd9b0;
}

.timeline-icon.report {
  background: #fff1f3;
  border-color: #ffc5cf;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: #d9d9d9;
  margin-top: 12px;
}

/* 
.timeline-content{
    flex:1;
    padding-top:8px;
} */

.timeline-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 20px;
}

.timeline-top h3 {
  margin: 0;
  font-size: var(--p-size-18);
  font-weight: 700;
  color: #0f172a;
}

.timeline-content p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
  font-size: 16px;
}

.status {
  padding: 4px 18px;
  border-radius: 50px;
  font-size: var(--p-size-14);
  white-space: nowrap;
}

.status.done {
  color: #16a34a;
  border: 1px solid #16a34a;
}

.status.active {
  color: #f97316;
  border: 1px solid #f97316;
}

.status.ready {
  color: #ef4444;
  border: 1px solid #ef4444;
}



@media (max-width:1280px) {
  .card-head {
    font-size: var(--p-size-18);
  }

  .hero-card p {
    font-size: var(--p-size-14);
  }

  .hero-card p {
    margin-bottom: 6px;
  }

  .hero-sec {
    height: calc(100vh - 16px);
    padding: var(--space-48) 0;
  }

}


@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    gap: 32px;
  }

  .hero::before {
    display: none;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left p {
    margin: 0 auto 18px;
  }

  .hero-left .trust {
    min-width: unset;
  }

  .btn-group {
    justify-content: center;
  }

  .hero-sec {
    height: auto;

  }

  .hero-card {
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .section-header {
    flex-direction: column;
    gap: var(--space-16);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 786px) {

  .timeline-item {
    padding: 20px;
    gap: 16px;
  }

  .timeline-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }


}

@media (max-width:400px) {
  .timeline-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-head h2{
    font-size: var(--p-size-18);
  }

}

@media (max-width: 380px) {
  .hero-left h1 {
    font-size: 28px;
  }

  .card-head {
    font-size: 18px;
    padding: 18px 16px 8px;
  }

  .hero-card p {
    font-size: var(--p-size-14);
  }
}






/* 2. KEY POS FEATURES*/
.features-sec {
  padding: var(--space-85) 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-64);
  gap: var(--space-48);
}

.section-header-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-family: var(--para-font-family);
  font-size: var(--p-size-14);
  font-weight: var(--font-600);
  color: var(--primary-color);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-eyebrow .dash {
  width: 18px;
  height: 2px;
  background: var(--primary-color);
  border-radius: var(--radius-6);
  display: inline-block;
}

.section-title {
  font-family: var(--heading-bold-font-family);
  font-size: clamp(var(--h2-size-28), 5vw, var(--h2-size-40));
  font-weight: var(--font-700);
  color: var(--text-primary);
  line-height: var(--leading-tight);
}

.section-header span {
  color: var(--primary-color);
}

.section-desc {
  font-family: var(--para-font-family);
  font-size: var(--p-size-18);
  font-weight: var(--font-400);
  color: var(--text-primary);
  line-height: var(--leading-normal);
  margin-top: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  background: var(--color-border);
  overflow: hidden;
}

.feat-card {
  background: var(--bg-main);
  padding: var(--space-32);
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  transition: background .2s ease;
  position: relative;
}

.feat-card:nth-child(odd) {
  border-right: 1px solid rgba(209, 209, 209, 0.792);
}

.feat-card:hover {
  background: var(--bg-light);
}

.feat-card-top {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: var(--space-16);
}

.feat-num {
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: .08em;
  flex-shrink: 0;
  margin-top: 3px;
}

.feat-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--bg-dark);
  background: var(--bg-dark);
}

.feat-icon-box svg {
  color: var(--bg-main);
  color: var(--bg-main);
  stroke-width: 2px;
  stroke: var(--bg-main);
  width: 30px;
  height: 30px;
}



.feat-title {
  font-family: var(--heading-font-family);
  font-size: var(--h3-size-24);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.feat-desc {
  font-size: var(--p-size-16);
  color: var(--text-primary);
  line-height: 1.65;
  padding-left: 55px;
}

.feat-tags {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--space-8);
  padding-left: 55px;
}

.feat-tag {
  position: relative;
  font-size: var(--p-size-16);
  font-weight: 500;
  padding: 3px 32px;
}

.feat-tag:before {
  position: absolute;
  background: var(--primary-dark);
  content: "";
  width: 8px;
  height: 8px;
  left: 3.5px;
  top: 11px;
  border-radius: 100%;
}

.feat-tag:after {
  position: absolute;
  background: transparent;
  content: "";
  width: 14px;
  height: 14px;
  left: 0;
  top: 7px;
  border-radius: 100%;
  border: 1px solid var(--primary-dark);
}


@media (max-width:786px) {
  
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feat-card:nth-child(odd) {
    border-right: none;
  }
  
}


@media (max-width:600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feat-card {
    padding: var(--space-32) 10px;
  }

  .feat-title{
    font-size: var(--p-size-20);
  }
}


/* WHY POS MATTERS*/
.why-sec {
  background: var(--bg-light);
  padding: var(--space-85) 0;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-48);
  align-items: start;
}

.why-left {
  position: sticky;
  top: var(--space-85);
}

.why-problems {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.why-problem-card {
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-16);
  padding: var(--space-20) var(--space-24);
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
  transition: transform .2s ease, box-shadow .2s ease;
}

.why-problem-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-panel);
  background: #fffcf6b0;
}

.wp-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-8);
  background: #e2eaf0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--p-size-20);
}

.wp-body {}

.wp-title {
  font-size: var(--p-size-18);
  font-weight: 700;
  color: var(--text-nav);
  margin-bottom: 3px;
}

.wp-desc {
  font-size: var(--p-size-14);
  color: var(--text-primary);
  line-height: 1.6;
}

/*BUSINESS BENEFITS*/
.benefits-sec {
  background: var(--bg-main);
  padding: var(--space-85) 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 1px;
  /* background: var(--color-border); */
  /* border: 1px solid var(--color-border); */
  /* border-radius: var(--radius-24); */
  overflow: hidden;
  margin-top: var(--space-48);
}

.benefit-tile {
  background: var(--bg-main);
  padding: var(--space-24) var(--space-16);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  transition: background .2s ease;
  border-right: 1px solid var(--color-border);
}

.benefit-tile:last-child{
  border-right: none;
}

.benefit-tile:hover {
  background: var(--bg-light);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-8);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  color: var(--bg-main);
}

.benefit-num {
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: .1em;
}

.benefit-title {
  font-family: var(--para-font-family);
  font-size: var(--p-size-18);
  font-weight: 700;
  color: var(--text-nav);
  line-height: 1.3;
}

.benefit-desc {
  font-size: var(--p-size-14);
  color: var(--text-primary);
  line-height: 1.65;
}

@media (max-width:786px) {
  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-left {
    position: static;
  }
}

@media (max-width:480px) {
  .benefit-tile{
    border-right: none;
  }
}

/* -- FAQ SECTION -- */
.faq-section {
  padding: var(--space-85) 0;
  background: var(--bg-main);
}

.faq-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-24);
  margin-bottom: var(--space-48);
  flex-wrap: wrap;
}

.section-heading {
  font-family: var(--heading-bold-font-family);
  font-size: clamp(var(--h2-size-28), 5vw, var(--h2-size-40));
  font-weight: var(--font-800);
  color: var(--text-nav);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-8);
}

.faq-header__left {
  flex: 1;
}

.section-eyebrow__line {
  width: 24px;
  height: 1.5px;
  background: var(--primary-color);
}

.section-eyebrow__text {
  font-size: var(--p-size-12);
  font-weight: var(--font-600);
  color: var(--primary-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collapse-all-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  cursor: pointer;
  color: var(--primary-color);
  font-family: var(--para-font-family);
  font-size: var(--p-size-14);
  font-weight: var(--font-600);
  padding: 8px 14px;
  border-radius: var(--radius-9999);
  border: 1.5px solid var(--color-border);
  background: var(--bg-main);
  user-select: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
  margin-top: 6px;
}

.collapse-all-btn:hover {
  background: #eaf0ff;
}

.collapse-all-btn .btn-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: var(--font-700);
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item {
  background: var(--bg-main);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-12);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 101, 242, 0.08);
}

.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  padding: var(--space-20) var(--space-24);
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: var(--para-font-family);
  font-size: clamp(var(--p-size-18), 2.5vw, 22px);
  font-weight: var(--font-500);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  letter-spacing: -0.38px;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-grey);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 var(--space-24);
}

.faq-answer p {
  font-size: var(--p-size-16);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
  padding-bottom: var(--space-20);
  max-width: 1000px;
}

.faq-item input[type="checkbox"]:checked~.faq-label .faq-icon {
  transform: rotate(180deg);
}

.faq-item input[type="checkbox"]:checked~.faq-label .faq-icon svg {
  stroke: var(--primary-color);
}

.faq-item input[type="checkbox"]:checked~.faq-answer {
  max-height: 300px;
  padding-top: 0;
}

#faq1:checked~.faq-label .faq-icon {
  transform: rotate(180deg);
}

#faq1:checked~.faq-answer {
  max-height: 300px;
}



@media (max-width: 767px) {
  .faq-section {
    padding: var(--space-48) var(--space-16);
  }


  .faq-label {
    padding: var(--space-16);
    gap: var(--space-12);
  }

  .faq-answer {
    padding: 0 var(--space-16);
  }

  .faq-item input[type="checkbox"]:checked~.faq-answer {
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .faq-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-16);
  }
}

/* FINAL CTA*/
.cta-sec {
  background: var(--bg-light);
  padding: 0 0 var(--space-64);
}

.cta-banner {
  background: var(--bg-dark);
  border-radius: var(--radius-24);
  padding: 72px var(--space-64);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-48);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-glow-r {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 101, 242, .2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-glow-l {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(101, 0, 242, .09) 0%, transparent 60%);
  pointer-events: none;
}

.cta-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.cta-eyebrow {
  color: rgba(255, 255, 255, .4);
}

.cta-eyebrow .eyebrow-dash {
  background: rgba(255, 255, 255, .3);
}

.cta-title {
  font-family: var(--heading-font);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.022em;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.75;
  max-width: 520px;
}

.cta-btns {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}