.hero-wrapper{
    background-color: #14553E;
}

    /* --- SIMPLE HERO STYLES (minimal) --- */
.simple-hero {
  color: #e1fbe8;
  position: relative;
  overflow: hidden;
  padding:  60px 0;
}

/* faint decorative mark behind the title */
.simple-hero .hero-backmark {
    position: absolute;
    left: 32%;
    top: -15%;
    transform: translate(-50%, -30%);
    width: 260px;
    max-width: 35%;
    opacity: 1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* title */
.simple-hero .hero-title {
  position: relative;
  z-index: 2;
  font-family: "CooperBTLight", serif; /* optional - keep if available */
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 500;
  color: #c8f6d0;         /* pale green text like reference */
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 0 rgba(0,0,0,0.12);
}

/* CTA button */
.simple-hero .hero-cta {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: linear-gradient(90deg,#15a34a,#059669);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(2,86,36,0.18);
  border: none;
}


/* small screens: slightly smaller backmark and title spacing */
@media (max-width: 576px) {
  .simple-hero .hero-backmark {
    width: 180px;
    top: 28%;
  }
  .simple-hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}


/* NEW NETSUITE INTRO SECTION */
.netsuite-intro-section {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.netsuite-intro-text {
  font-size: 18px;
  line-height: 30px;
  color: #000;
}

.netsuite-intro-text a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

.netsuite-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.intro-logo {
  max-height: 55px;
  width: auto;
}

.intro-divider {
  margin: 35px 0;
  border-top: 1px solid #ccc;
}

@media (max-width: 768px) {
  .netsuite-logo-wrap {
    flex-direction: column;
    gap: 15px;
  }
  .intro-logo {
    max-height: 50px;
  }
}



/* FEATURE CARDS */
.feature-card {
  background: linear-gradient(90deg, #022213, #155C3A);
  padding: 40px 25px 30px;
  border-radius: 18px;
  color: #fff;
  height: 100%;
  position: relative;
  text-align: left;
}

.feature-card p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #e8fcef;
}

/* ICON CIRCLE */
.feature-icon {
    width: 65px;
    height: 65px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -25px;
    left: -5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 1px solid #022213;
}

.feature-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* ICON POSITION FIX FOR MOBILE */
@media (max-width: 768px) {
  .feature-icon {
    left: 15px;
    top: -22px;
    width: 55px;
    height: 55px;
  }
}



/* POPULAR INTEGRATIONS SECTION */
.popular-integrations-section {
  background: linear-gradient(to bottom, #ddf7e5 0%, #b5e3b7 100%);
  padding: 60px 20px;
}

.popular-integrations-text {
  font-size:35px ;
 
  line-height: 1.4;
  color: #000;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .popular-integrations-text {
    font-size: 22px;
    padding: 0 10px;
  }
}





    


      
