* {
  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: var(--bg);
  background-image: url(../images/indusrty-main-hero-bg.png);
  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-40), 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: linear-gradient(45deg, #fff, #fff, #fff, #fff, #0065f240);
  border-radius: 28px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
  animation: fadeUp .7s .18s ease both;
  position: relative;
  overflow: hidden;
  max-width: 700px;

}

.card-head {
  font-size: 24px;
  font-family: var(--heading-font-family);
  font-weight: var(--font-700);
  line-height: 140%;
  padding: 24px 24px 8px 24px;
  color: var(--bg-main);
  background-color: var(--text-primary);
  margin-bottom: var(--space-24);
}

.card-head h2 {
  font-size: var(--h3-size-24);
  font-family: var(--heading-bold-font-family);
  line-height: 160%;
}

.card-head p {
  font-size: var(--p-size-16);
  font-family: var(--para-font-family);
  font-weight: var(--font-400);
}


.hero-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(26, 86, 255, .08) 0%, transparent 70%);
  pointer-events: none;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 0;
  border: 1px solid #E2E2E2;
  border-radius: 16px;
  margin-left: 32px;
  margin-right: 32px;
  margin-bottom: 12px;
  padding: 18px;
  transition: transform .2s;
  gap: var(--space-24);
}

.feature-item:last-child {
  margin-bottom: 32px;
}

.feature-item .detail {
  font-family: 'Poppins-Regular';
  font-size: var(--p-size-16);
  font-weight: var(--font-500);
  line-height: 110.00000000000001%;
  color: var(--text-primary);
}

.feature-item .detail h3 {
  font-size: var(--p-size-18);
  font-family: var(--para-font-family);
  margin-bottom: var(--space-8);
}

.feature-item .detail p {
  font-size: var(--p-size-14);
}

.feature-item .detail-tag {
  font-family: var(--para-font-family);
  font-size: var(--p-size-14);
  font-weight: var(--font-400);
  line-height: 110%;
  color: rgb(255, 136, 0);
  border: 1px solid #ff6a00;
  padding: 4px 10px;
  border-radius: var(--space-32);
}

.feature-item .detail-tag.done {
  color: rgb(8, 143, 13);
  border: 1px solid rgb(8, 143, 13);
}

.feature-item .detail-tag.ready {
  color: var(--danger-color);
  border: 1px solid #ff4400;
}

.feature-item:hover {
  transform: translateX(4px);
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 30px;
  background: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 22, 35, .25);
}

.feat-icon svg {
  width: 24px;
  height: 24px;
}

.feat-text h3 {
  font-size: var(--p-size-18);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.feat-text p {
  font-size: .875rem;
  line-height: 1.6;
  color: var(--text-body);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 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(auto-fit, minmax(330px, 1fr));
  gap: 1px;
  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:hover {
  background: var(--bg-light);
}

.feat-card-top {
  display: flex;
  flex-direction: column;
  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);
}


.feat-title {
  font-family: var(--heading-font-family);
  font-size: var(--p-size-18);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.feat-desc {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.65;
}

.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.feat-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--primary-color);
  background: #eef7ff;
  border: 1px solid var(--primary-color);
  border-radius: var(--radius-6);
  padding: 3px 10px;
}


@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);
  }
}


@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:600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Very Small Mobile: 380px ── */
@media (max-width: 380px) {
  .hero-left h1 {
    font-size: 22px;
  }

  .card-head {
    font-size: 18px;
    padding: 18px 16px 8px;
  }

  .hero-card p {
    padding: 0 16px 18px;
    font-size: var(--p-size-14);
  }
}




/* 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(220px, 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-20);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  transition: background .2s ease;
}

.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;
  }
}

/* ── 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;
}