.erp-hero {
  background: #ffffff;
  padding: 90px 20px;
  overflow: hidden;
}

.erp-hero-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* CONTENT */
.erp-hero-content {
  flex: 1;
}

.erp-hero-content h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  color: #111;
}

.erp-hero-content p {
  margin: 22px 0 36px;
  font-size: 18px;
  color: #444;
}

/* CTA BUTTONS */
.erp-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.erp-btn {
  padding: 15px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Primary */
.erp-btn.primary {
  background: #add100;
  color: #ffffff;
}

/* Secondary */
.erp-btn.secondary {
  border: 2px solid #add100;
  color: #add100;
  background: transparent;
}

.erp-btn:hover {
  transform: translateY(-3px);
}

/* VISUAL */
.erp-hero-visual {
  flex: 1;
  position: relative;
  text-align: center;
}

.erp-laptop {
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  /* box-shadow: 0 25px 50px rgba(0,0,0,0.18); */
}

.erp-mobile {
  position: absolute;
  width: 180px;
  right: -20px;
  bottom: -20px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* TABLET */
@media (max-width: 992px) {
  .erp-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .erp-hero-actions {
    justify-content: center;
  }

  .erp-hero-content h1 {
    font-size: 36px;
  }

  .erp-mobile {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 20px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .erp-hero {
    padding: 60px 16px;
  }

  .erp-hero-content h1 {
    font-size: 28px;
  }

  .erp-hero-content p {
    font-size: 16px;
  }

  .erp-mobile {
    width: 140px;
  }
}


.erp-modules {
  padding: 90px 20px;
  background: #ffffff;
}

.erp-container {
  max-width: 1250px;
  margin: auto;
}

.erp-section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 60px;
}

/* GRID */
.erp-modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* CARD */
.erp-module-card {
  background: #f9f9f9;
  padding: 30px 26px;
  border-radius: 18px;
  position: relative;
  transition: 0.35s ease;
}

.erp-module-card:hover {
  transform: translateY(-6px);
}

/* Accent dot */
/* .erp-module-dot {
  width: 14px;
  height: 14px;
  background: #add100;
  border-radius: 50%;
  display: block;
  margin-bottom: -19px;
  margin-right: auto;
} */

/* Text */
.erp-module-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.erp-module-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* TABLET */
@media (max-width: 992px) {
  .erp-modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .erp-section-title {
    font-size: 26px;
  }

  .erp-modules-grid {
    grid-template-columns: 1fr;
  }

  .erp-module-card {
    max-width: 380px;
    margin: auto;
  }
}

.erp-workflow {
  padding: 100px 20px;
  background: #ffffff;
}

.erp-workflow-layout {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-top: 60px;
}

/* STEPS */
.erp-workflow-steps {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.erp-flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f9f9f9;
  padding: 20px 22px;
  border-radius: 14px;
  transition: 0.3s ease;
}

.erp-flow-step:hover {
  transform: translateX(6px);
}

.erp-flow-step span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #add100;
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erp-flow-step p {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

/* IMAGE */
.erp-workflow-image {
  flex: 1;
  text-align: center;
}

.erp-workflow-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

/* TABLET */
@media (max-width: 992px) {
  .erp-workflow-layout {
    flex-direction: column;
  }

  .erp-workflow-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .erp-workflow-steps {
    grid-template-columns: 1fr;
  }

  .erp-flow-step:hover {
    transform: none;
  }
}
.erp-industries {
  padding: 90px 20px;
  background: #ffffff;
}

.erp-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

/* CARD */
.erp-industry-card {
  background: #f9f9f9;
  padding: 34px 26px;
  border-radius: 18px;
  text-align: center;
  transition: 0.35s ease;
  position: relative;
}

.erp-industry-card::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #add100;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.erp-industry-card:hover {
  transform: translateY(-6px);
}

/* ICON */
.erp-industry-icon {
  font-size: 38px;
  margin-bottom: 16px;
  display: inline-block;
}

/* TEXT */
.erp-industry-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.erp-industry-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* TABLET */
@media (max-width: 992px) {
  .erp-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .erp-section-title {
    font-size: 26px;
  }

  .erp-industry-grid {
    grid-template-columns: 1fr;
  }

  .erp-industry-card {
    max-width: 380px;
    margin: auto;
  }
}

.erp-tree-radial {
  padding: 110px 20px;
  background: #ffffff;
}

.erp-radial-tree {
  position: relative;
  max-width: 900px;
  height: 520px;
  margin: 80px auto 0;
}

/* ROOT */
.erp-root {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  background: #add100;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-align: center;
  color: #000;
  box-shadow: 0 0 0 12px rgba(173,209,0,0.15);
}

/* NODES */
.erp-node {
  position: absolute;
  width: 240px;
  background: #f9f9f9;
  padding: 18px 20px;
  border-radius: 16px;
}

/* CONNECTOR */
.erp-node::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 2px;
  background: #add100;
  top: 50%;
}

/* POSITIONS */
.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.node-1::before { left: 50%; top: 100%; transform: rotate(90deg); }

.node-2 { top: 120px; right: 0; }
.node-2::before { left: -70px; }

.node-3 { bottom: 120px; right: 0; }
.node-3::before { left: -70px; }

.node-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.node-4::before { left: 50%; top: -20px; transform: rotate(90deg); }

.node-5 { top: 120px; left: 0; }
.node-5::before { right: -70px; }

/* TEXT */
.erp-node h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #111;
}

.erp-node p {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}

/* MOBILE – STACK */
@media (max-width: 768px) {
  .erp-radial-tree {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .erp-root {
    position: relative;
    transform: none;
    margin: auto;
  }

  .erp-node {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: auto;
  }

  .erp-node::before {
    display: none;
  }
}
.erp-integrations {
  padding: 100px 20px;
  background: #ffffff;
}

.erp-integration-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 60px auto 0;
}

/* BOXES */
.erp-integrations-box,
.erp-automation-box {
  background: #f9f9f9;
  padding: 32px 30px;
  border-radius: 20px;
}

/* HEADINGS */
.erp-integrations-box h3,
.erp-automation-box h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #111;
}

/* INTEGRATION LIST */
.erp-integration-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.erp-integration-list li {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #222;
}

.erp-integration-list li span {
  width: 10px;
  height: 10px;
  background: #add100;
  border-radius: 50%;
}

/* AUTOMATION */
.erp-automation-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.erp-auto-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
}

.erp-auto-item span {
  width: 14px;
  height: 14px;
  background: #add100;
  border-radius: 50%;
}

.erp-auto-item p {
  font-size: 14px;
  color: #333;
}

/* MOBILE */
@media (max-width: 768px) {
  .erp-integration-layout {
    grid-template-columns: 1fr;
  }
}

.erp-security-stack {
  padding: 110px 20px;
  background: #ffffff;
}

.erp-security-wrapper {
  max-width: 950px;
  margin: 80px auto 0;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* SHIELD */
.erp-security-shield {
  width: 180px;
  height: 320px;
  background: #add100;
  border-radius: 90px 90px 120px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #000;
  text-align: center;
  position: sticky;
  top: 120px;
}

/* STACK LIST */
.erp-security-stack-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* ROW */
.erp-sec-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* BAR */
.erp-sec-bar {
  width: 6px;
  height: 100%;
  background: #add100;
  border-radius: 10px;
  flex-shrink: 0;
}

/* CONTENT */
.erp-sec-content {
  background: #f9f9f9;
  padding: 22px 24px;
  border-radius: 16px;
}

.erp-sec-content h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #111;
}

.erp-sec-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .erp-security-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .erp-security-shield {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }

  .erp-sec-row {
    flex-direction: column;
    gap: 10px;
  }

  .erp-sec-bar {
    width: 100%;
    height: 4px;
  }
}

.erp-faq {
  padding: 100px 20px;
  background: #ffffff;
}

.erp-faq-list {
  max-width: 850px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ ITEM */
.erp-faq-item {
  background: #f9f9f9;
  padding: 20px 24px;
  border-radius: 16px;
  border-left: 4px solid #add100;
}

/* QUESTION */
.erp-faq-item summary {
  font-size: 16px;
  font-weight: 800;
  color: #111;
  list-style: none;
  cursor: pointer;
  position: relative;
}

/* PLUS ICON */
.erp-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  color: #add100;
  transition: 0.3s ease;
}

.erp-faq-item[open] summary::after {
  content: "–";
}

/* ANSWER */
.erp-faq-item p {
  margin-top: 12px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 480px) {
  .erp-faq-item {
    padding: 18px;
  }

  .erp-faq-item summary {
    font-size: 15px;
  }
}
