/* SECTION */
.saasprob-v2-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

/* CONTAINER */
.saasprob-v2-container {
  max-width: 1100px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

/* TITLE */
.saasprob-v2-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
}

/* GRID */
.saasprob-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CARD */
.saasprob-v2-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.saasprob-v2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: #ff6a00;
}

/* TOP ACCENT LINE */
.saasprob-v2-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #ff6a00, #ffb347);
  transition: width 0.4s ease;
}

.saasprob-v2-card:hover::before {
  width: 100%;
}

/* TEXT */
.saasprob-v2-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.saasprob-v2-card p {
  color: #555;
  line-height: 1.6;
}

/* FOOTER CTA */
.saasprob-v2-footer {
  margin-top: 40px;
  padding: 18px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  background: #fb6e29;
  border: 1px solid #ffddb5;
  color: #fff;
}

/* ANIMATION BASE */
.saasprob-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.saasprob-animate.saasprob-show {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER EFFECT */
.saasprob-v2-card:nth-child(1) { transition-delay: 0.1s; }
.saasprob-v2-card:nth-child(2) { transition-delay: 0.2s; }
.saasprob-v2-card:nth-child(3) { transition-delay: 0.3s; }
.saasprob-v2-card:nth-child(4) { transition-delay: 0.4s; }

/* MOBILE */
@media (max-width: 768px) {
  .saasprob-v2-grid {
    grid-template-columns: 1fr;
  }

  .saasprob-v2-title {
    text-align: center;
  }
}
.isfor-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.isfor-container {
  max-width: 1100px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.isfor-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.isfor-subtext {
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
}

/* GRID */
.isfor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* CARDS */
.isfor-card {
  padding: 30px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* GREEN CARD */
.isfor-yes {
  background: linear-gradient(135deg, #e6f4ea, #d4edda);
  border: 1px solid #b7e1c1;
}

/* RED CARD */
.isfor-no {
  background: linear-gradient(135deg, #fde8e8, #f8d7da);
  border: 1px solid #f1b0b7;
}

/* HEADINGS */
.isfor-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

/* LIST */
.isfor-card ul {
  list-style: none;
  padding: 0;
}

.isfor-card li {
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

/* ICONS */
.isfor-yes li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

.isfor-no li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: bold;
}

/* HOVER EFFECT */
.isfor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ANIMATION */
.isfor-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.isfor-show {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER */
.isfor-card:nth-child(1) { transition-delay: 0.2s; }
.isfor-card:nth-child(2) { transition-delay: 0.4s; }

/* MOBILE */
@media (max-width: 768px) {
  .isfor-grid {
    grid-template-columns: 1fr;
  }

  .isfor-title {
    text-align: center;
  }

  .isfor-subtext {
    text-align: center;
  }
}
/* SECTION */
.engage-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

/* CONTAINER */
.engage-container {
  max-width: 1100px;
  margin: auto;
  font-family: Arial, sans-serif;
}

/* TITLE */
.engage-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* SUBTEXT */
.engage-subtext {
  color: #666;
  margin-bottom: 40px;
  max-width: 750px;
  line-height: 1.6;
}

/* GRID */
.engage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CARD */
.engage-card {
  background: #ffffff;
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.engage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: #fb6e29;
}

/* TOP ACCENT */
.engage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #fb6e29;
  transition: width 0.4s ease;
}

.engage-card:hover::before {
  width: 100%;
}

/* TEXT */
.engage-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.engage-card p {
  color: #555;
  line-height: 1.6;
}

/* ANIMATION */
.engage-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.engage-show {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER */
.engage-card:nth-child(1) { transition-delay: 0.1s; }
.engage-card:nth-child(2) { transition-delay: 0.2s; }
.engage-card:nth-child(3) { transition-delay: 0.3s; }
.engage-card:nth-child(4) { transition-delay: 0.4s; }

/* MOBILE */
@media (max-width: 768px) {
  .engage-grid {
    grid-template-columns: 1fr;
  }

  .engage-title,
  .engage-subtext {
    text-align: center;
  }
}
/* SECTION */
.whyexact-section {
  padding: 80px 20px;
  background: #ffffff; /* PURE WHITE */
}

/* CONTAINER */
.whyexact-container {
  max-width: 1100px;
  margin: auto;
  font-family: Arial, sans-serif;
}

/* TITLE */
.whyexact-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* INTRO */
.whyexact-intro {
  color: #444;
  margin-bottom: 40px;
  max-width: 850px;
  line-height: 1.7;
}

/* GRID */
.whyexact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CARD */
.whyexact-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

/* HOVER */
.whyexact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* TEXT */
.whyexact-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.whyexact-card p {
  color: #555;
  line-height: 1.6;
}

/* FOOTER */
.whyexact-footer {
  margin-top: 40px;
  font-weight: 600;
  font-size: 16px;
}

/* ANIMATION */
.whyexact-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.whyexact-show {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER */
.whyexact-card:nth-child(1) { transition-delay: 0.1s; }
.whyexact-card:nth-child(2) { transition-delay: 0.2s; }
.whyexact-card:nth-child(3) { transition-delay: 0.3s; }
.whyexact-card:nth-child(4) { transition-delay: 0.4s; }

/* MOBILE */
@media (max-width: 768px) {
  .whyexact-grid {
    grid-template-columns: 1fr;
  }

  .whyexact-title,
  .whyexact-intro {
    text-align: center;
  }
}
/* SECTION */
.roiPro-section {
  padding: 80px 20px;
  background: #f5f7fa;
}

/* CONTAINER */
.roiPro-container {
  max-width: 1100px;
  margin: auto;
  font-family: Arial, sans-serif;
}

/* TITLE */
.roiPro-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
}

.roiPro-subtext {
  text-align: center;
  color: #6b7280;
  margin-bottom: 20px;
}

/* FORMULA */
.roiPro-formula {
  text-align: center;
  background: #f3e8d9;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 20px auto 40px;
  display: inline-block;
}

/* WRAPPER (MAIN GRID FIX) */
.roiPro-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #d9dde2;
  padding: 30px;
  border-radius: 14px;
  align-items: stretch;
}

/* LEFT */
.roiPro-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.roiPro-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.roiPro-field input,
.roiPro-field select {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

/* RIGHT */
.roiPro-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

/* CARDS */
.roiPro-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roiPro-card span {
  color: #6b7280;
  font-size: 14px;
}

.roiPro-card h3 {
  font-size: 26px;
  margin-top: 5px;
}

/* HIGHLIGHT */
.roiPro-highlight {
  background: #ff6a00;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roiPro-highlight span {
  font-size: 14px;
}

.roiPro-highlight h2 {
  font-size: 30px;
  margin-top: 8px;
}

/* HOVER */
.roiPro-card:hover,
.roiPro-highlight:hover {
  transform: translateY(-4px);
  transition: 0.3s;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .roiPro-wrapper {
    grid-template-columns: 1fr;
  }
}
.whatget-section {
  padding: 80px 20px;
  background: #ffffff;
}

.whatget-container {
  max-width: 1000px;
  margin: auto;
  font-family: Arial, sans-serif;
}

/* TITLE */
.whatget-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.whatget-subtext {
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.whatget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 40px;
}

/* ITEM */
.whatget-item {
  padding: 14px 18px;
  border-radius: 8px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 40px;
}

/* ICON */
.whatget-item::before {
  content: "✔";
  position: absolute;
  left: 15px;
  color: #07617e;
  font-weight: bold;
}

/* HOVER */
.whatget-item:hover {
  transform: translateX(5px);
  border-color: #ff6a00;
}

/* ANIMATION */
.whatget-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.whatget-show {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER */
.whatget-item:nth-child(1) { transition-delay: 0.1s; }
.whatget-item:nth-child(2) { transition-delay: 0.2s; }
.whatget-item:nth-child(3) { transition-delay: 0.3s; }
.whatget-item:nth-child(4) { transition-delay: 0.4s; }
.whatget-item:nth-child(5) { transition-delay: 0.5s; }
.whatget-item:nth-child(6) { transition-delay: 0.6s; }
.whatget-item:nth-child(7) { transition-delay: 0.7s; }
.whatget-item:nth-child(8) { transition-delay: 0.8s; }

/* MOBILE */
@media (max-width: 768px) {
  .whatget-grid {
    grid-template-columns: 1fr;
  }

  .whatget-title,
  .whatget-subtext {
    text-align: center;
  }
}